From c2a6232f7b457ad43b065925b87636637b9f59f7 Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Fri, 23 May 2025 14:46:06 +0000 Subject: [PATCH] =?UTF-8?q?Se=20crearon=20las=20pol=C3=ADticas=20de=20acce?= =?UTF-8?q?so?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ❌ Deshabilita Lock Workstation (Win + L). --- Políticas_Acceso.ps1 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Políticas_Acceso.ps1 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