Windows Konfigurationen (Snippets): Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
K
K
 
Zeile 1: Zeile 1:
 
== Windows User Account Control (UAC) deaktivieren (Benutzerkontensteuerung) ==
 
== Windows User Account Control (UAC) deaktivieren (Benutzerkontensteuerung) ==
 
<source lang="powershell">New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force </source>
 
<source lang="powershell">New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force </source>
''Zum aktivieren des UAC, einfach bei "Value" eine "0" setzen.''
+
''Zum aktivieren des UAC, einfach bei "Value" eine "1" setzen.''
  
  

Aktuelle Version vom 20. April 2017, 15:06 Uhr

Windows User Account Control (UAC) deaktivieren (Benutzerkontensteuerung)

New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force

Zum aktivieren des UAC, einfach bei "Value" eine "1" setzen.