Will end a given session.
Remove-CWCSession -Server <String> -GUID <Guid[]> -User <String> -Password <String> -Type <Object> [<CommonParameters>]
Remove-CWCSession -Server <String> -GUID <Guid[]> -Type <Object> -Credentials <PSCredential> [<CommonParameters>]Will end a given access or support session.
The address to your Control server. Example 'https://control.labtechconsulting.com' or 'http://control.secure.me:8040'
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
The GUID identifier for the session you wish to end. Accepts an array of GUIDs.
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
User to authenticate against the Control server.
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
Password to authenticate against the Control server.
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
The type of session Support/Access
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
[PSCredential] object used to authenticate against Control.
Required true
Position named
Default value
Accept pipeline input false
Accept wildcard characters false
PS C:\>Remove-CWCAccessSession -Server $Server -GUID $GUID -User $User -Password $Password
Will remove the given access sessionVersion: 1.0
Author: Chris Taylor
Creation Date: 10/10/2018
Purpose/Change: Initial script development