Windows/GPO: Unterschied zwischen den Versionen

Aus SchnallIchNet
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „ == Change GPO ADMX Registry settings == If you don't have the corresponding ADMX file use powershell: Set-GPRegistryValue -Name "U_WS_Office_SecurityBaseli…“)
 
 
Zeile 1: Zeile 1:
 +
 +
== Powershell GPO commands ==
 +
 +
import-module -name GroupPolicy
 +
 +
Get-GPRegistryValue
 +
 +
Remove-GPRegistryValue
 +
 +
Set-GPRegistryValue
 +
  
 
== Change GPO ADMX Registry settings ==
 
== Change GPO ADMX Registry settings ==

Aktuelle Version vom 24. Oktober 2018, 12:26 Uhr

Powershell GPO commands

import-module -name GroupPolicy
Get-GPRegistryValue
Remove-GPRegistryValue
Set-GPRegistryValue


Change GPO ADMX Registry settings

If you don't have the corresponding ADMX file use powershell:

Set-GPRegistryValue -Name "U_WS_Office_SecurityBaseline_v1.0_W10_TEST" -Key "HKCU\Software\Policies\Microsoft\Office\16.0\outlook\cached mode" -type dword -valuename enable -value 0


Delete GPO ADMX Registry settings

remove-GPRegistryValue -Name "U_WS_Office_SecurityBaseline_v1.0_W10_TEST" -Key "HKCU\Software\Policies\Microsoft\Office\16.0\outlook\cached mode" -valuename enable