Windows Konfigurationen (Snippets): Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Windows User Account Control (UAC) deaktivieren (Benutzerkontensteuerung) == <source lang="powershell">New-ItemProperty -Path HKLM:Software\Microsoft\Window…“) |
Admin (Diskussion | Beiträge) 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.'' | |
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 "0" setzen.