commit c2a6232f7b457ad43b065925b87636637b9f59f7 Author: Alejandro Rosales Date: Fri May 23 14:46:06 2025 +0000 Se crearon las políticas de acceso ❌ Deshabilita Lock Workstation (Win + L). diff --git a/Políticas_Acceso.ps1 b/Políticas_Acceso.ps1 new file mode 100644 index 0000000..eb9f0d9 --- /dev/null +++ b/Políticas_Acceso.ps1 @@ -0,0 +1,3 @@ +# 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