Thursday, April 17, 2014

How do You Prevent ‘Secondary’ Accounts from Shutting Windows 8 Down?

prevent-secondary-accounts-from-shutting-windows-eight-down-00
Sharing of a family computer works out well most of the time, but what happens if someone shuts the computer down via their account while you still have work documents open in yours? Is there a way to prevent other accounts from shutting the computer down?


There are different ways to shut down the system, so you have to take that into account in order to avoid the issue entirely.
Preliminary steps
1. Make sure the user accounts you want to restrict are logged off.
2. Log on with an administrator account, and open an elevated command prompt.
Disable all shut down buttons and menus for a specific user
1. Type or paste the following command in the command prompt by replacing <User> with the actual folder, then press Enter:
  • reg load “HKU\User” “%SystemDrive%\Users\<User>\NTUSER.DAT”
2. Execute the commands below:
  • reg add “HKU\User\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer” /v “NoClose” /t REG_DWORD /d 1 /f
  • reg unload “HKU\User”
3. Repeat steps 1-2 for any other user you want to limit.
Revoke shut down privileges assigned to standard users
1. Download the Windows Server 2003 Resource Kit Tools.
2. Extract the downloaded rktools.exe file using 7-Zip.
3. Open the folder containing the extracted files, and extract the rktools.msi using 7-Zip. Among all the files there is one called ntrights.exe.
4. Navigate to the folder containing ntrights.exe by running the commands below (after replacing the folder path inside quotes):
  • cd /d “X:\Some\folder”
  • ntrights.exe -u Users -r SeShutdownPrivilege
  • ntrights.exe -u Users -r SeRemoteShutdownPrivilege
Remove the shut down button on the logon screen
Execute this command:
  • reg add “HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System” /v “ShutdownWithoutLogon” /t REG_DWORD /d 0 /f

No comments: