In this scenario, presumably, an administrator prepared the machine by installing Windows, or purchased a device that is preinstalled. Depending on the OS level/Edition, the admin has 2 choices on how to configure this settings.
- Windows Home: does not come preloaded with GPEDIT.MSC - so the only choice for setting the value is by Regedit.There is a way that can be used to get GPEdit to run on a home edition: Fix Gpedit.msc Not Found In Windows 10/Windows 11 As the article describes, there are many reasons why this isn't functional, however, given the Home edition problem, the feature must be enabled under the heading "Install gpedit.msc in Windows Home Edition" - which provides command line instructions for installing the tool from Microsoft via an elevated command line prompt.
- Run the following commands:
i. FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
ii. FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F")
- The alternative choice is to directly set the value via
regedit.exe
- Run the following commands:
- Windows Pro or above: - GPEDIT.MSC can be directly executed
- in the search bar, type "edit group policy" and start the application (Windows 10/11) - select the best match as as shown here to start the application:
- alternatively, press
windows key + rkey combination which will bring up the run command box - type
gpedit.mscand hit enter to start the group policy editor - Alternatively, or use the search bar and select the best match as as shown here to start the application:
- Navigate to
Local Computer Policy→Computer Configuration→Administrative Templates→System→Logonin the left navigation bar, then in the right side window, Select Hide entry points for Fast User Switching - adjust this value as desired. When ready, restart the PC for the policy to apply.