简体   繁体   中英

Disable "change account settings" in start menu option of Windows 10

Is there any way to disable "change account settings" in start menu options other than using the registry key "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" registry hive with key name "NocontrolPanel" and value is "1". If the above key is enabled entire control panel doesnt show up along with the disable of change account settings which is not required.I only need to disable change account settings.

I tried using gpo which gives total disablement of control panel. Is there any solution to disable change account settings only?

It can be also done in group policy settings. Please follow the below steps,

  1. Press Windows + R key and type gpedit.msc .
  2. Goto Local Computer Policy > Computer Configuration>Administrative Templates>Control Panel>User Accounts
  3. Double click on " Apply the default account picture to all users. "
  4. And select the Option Enabled and click Ok .

This will hide the change account settings option. And also you can access the control panel

Please accept the answer if it solved your issue! Have a great day!

This change can be made via the Registry. Please run the following from a command prompt.

CMD.exe :

reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\default\Start\HideChangeAccountSettings" /t "REG_DWORD" /v "value" /d "1" /f

PowerShell :

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\PolicyManager\default\Start\HideChangeAccountSettings" -Type "DWord" -Name "value" -Value "1" -Force

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM