Forum Discussion
jorgeglez
Oct 01, 2020Copper Contributor
configure a local policy with powershell
Hello, good morning community, Is there a way to own 10? I want to automate the process of setting the policy "Computer Configuration / Administrative Templates / Control Panel / Configuration ...
- Oct 01, 2020
This is an example of SettingsPageVisibility script with Powershell.
#Registry settings - HKLM
# Enable SettingsPageVisibility
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v SettingsPageVisibility /t REG_SZ /d "showonly:dateandtime;printers;regionlanguage;yourinfo;WindowsUpdate" /f
alexandertuvstrom
Oct 01, 2020Brass Contributor
This is an example of SettingsPageVisibility script with Powershell.
#Registry settings - HKLM
# Enable SettingsPageVisibility
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v SettingsPageVisibility /t REG_SZ /d "showonly:dateandtime;printers;regionlanguage;yourinfo;WindowsUpdate" /f
- jorgeglezOct 02, 2020Copper Contributor
alexandertuvstromthanks for all, it is working 😉