February 2019
Intermediate to advanced
626 pages
15h 51m
English
User Account Control (UAC) restricts local (not domain) user accounts that log on using a remote connection. By default, the remote connection will be made as a standard user account, that is, a user without administrative privileges.
The Enable-PSRemoting command disables UAC remote restrictions. If another method has been used to enable remoting, and a local account is being used to connect, it is possible that remote restrictions are still in place.
The current value can be viewed using the following:
$params = @{ Path = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System' Name = 'LocalAccountTokenFilterPolicy'}Get-ItemPropertyValue @params
If the key or value is missing, an error will be thrown. UAC remote ...
Read now
Unlock full access