4 lines
270 B
PowerShell
4 lines
270 B
PowerShell
# Deshabilitar Lock Workstation
|
|
New-Item -Path "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Force | Out-Null
|
|
Set-ItemProperty -Path "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableLockWorkstation" -Value 1 -Type DWord
|