Revokes a SystoLOCK token.
Remove-SystoLockAssignment [-Identifier] <String[]> [-Address <ServiceAddress>] [-AuthType <NtdsAuthType>]
[-DomainController <String>] [-Timeout <Int32>] [-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm]
[<CommonParameters>]
Remove-SystoLockAssignment [-User] <Object[]> [-Address <ServiceAddress>] [-AuthType <NtdsAuthType>]
[-DomainController <String>] [-Timeout <Int32>] [-ProgressAction <ActionPreference>] [-WhatIf] [-Confirm]
[<CommonParameters>]
The Remove-SystoLockAssignment cmdlet revokes a SystoLOCK token from an Active Directory user.
In the case of by-user call all tokens assigned to the user are revoked.
All cmdlets interacting with SystoLock service have -Address and -Timeout parameters to adjust their behavior.
You can also set $SystoLockAddress and $SystoLockTimeout PowerShell variables or $SystoLockAddress and $SystoLockTimeout environment variables which let you specify these parameters as defaults.
If no parameters or environment variables are specified, the timeout defaults to 3 seconds and the address is obtained from DNS for current domain and site.
Remove-SystoLockAssignment -Identifier GAKT000168DE
Revokes a single token.
Remove-SystoLockAssignment -Identifier GAKT000168DD, GAKT000168DE, GAKT000168DF
Revokes a group of tokens.
Remove-SystoLockAssignment -User 'CN=Alice,CN=Users,DC=company,DC=com'
Revokes all tokens from a user by user distinguished name.
Remove-SystoLockAssignment -User Alice
Revokes all tokens from a user by user name.
Remove-SystoLockAssignment -User 'company.com\Alice'
Revokes all tokens from a user by user SAM account name.
Remove-SystoLockAssignment -User 'Alice@company.com'
Revokes all tokens from a user by user principal name.
Remove-SystoLockAssignment -User (Get-ADUser -Identity Alice).ObjectGuid
Revokes all tokens from a user by user GUID.
Remove-SystoLockAssignment -User (Get-ADUser -Identity Alice).SID
Revokes all tokens from a user by user SID.
Remove-SystoLockAssignment -User (Get-ADUser -Identity Alice)
Revokes all tokens from a user by ADUser object.
Remove-SystoLockAssignment -User 'John@company.com', 'company.com\Paul'
Revokes all tokens from a group of users.
Get-ADUser -Filter {Surname -eq 'Smith'} | Remove-SystoLockAssignment
Pipeline processing.
Specifies service address (optional).
Accepts an URL, a host name or a Service structure returned by previous Get-SystoLockService call.
Type: ServiceAddress
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies authentication method to use with domain controller (optional).
The acceptable values for this parameter are: Kerberos and Negotiate.
The default method is Kerberos.
Possible values: Kerberos, Negotiate
Type: NtdsAuthType
Parameter Sets: (All)
Aliases:
Accepted values: Kerberos, Negotiate
Required: False
Position: Named
Default value: Kerberos
Accept pipeline input: False
Accept wildcard characters: False
Specifies domain controller name (optional).
Accepts a domain name, a fully qualified domain name or an IP address of the domain controller.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies token identifier or URL.
Type: String[]
Parameter Sets: Identifier
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies timeout (range: 1 - 30 seconds, default: 3 seconds).
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Accepts user name, distinguished name, principal name, SAM account name, GUID, SID or ADUser object array.
Type: Object[]
Parameter Sets: User
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Specifies token identifier or URL.
Accepts user name, distinguished name, principal name, SAM account name, GUID, SID or ADUser object array.
This operation requires your confirmation.
See <CommonParameters> manual (http://go.microsoft.com/fwlink/?LinkID=113216) for more details.
Accepts a user name, distinguished name, principal name, SAM account name, GUID, SID or ADUser object to associate the user with a token.