SutherlandAndrew Posted October 26, 2006 Posted October 26, 2006 I have found this information very valuable from time to time, especially when you (as a system admin) are logged into a PC as one of your restricted users, and have to do something as them. (ie. edit the registry, install a program - something that relies on the HKCU etc)As you probably know, group policies are set by changing keys and values in the registry. Machine specific GPs are in the HKLM and user specific GPs are in the HKCU. I've attached an excel document from Microsoft, detailing what reg key reflects what GP, with a description. (very handy)As well, I custom wrote an INF file to temperarily remove group policy effects. Copy the below text to a txt file, and save it as <whatever>.inf Because it is an INF file and not a REG file, when you right-click and choose Install, it will bypass any "disallow registry editing tools" policy, (whereas a .reg file will not) and also immediately refresh the explorer after its done. (so you dont even have to log off and back on). **note, you WILL need admin access wherever you run this INF.These are the most common GP's that I find I come across. Such items like getting back your MANAGE context menu item, your RUN command, access to all the CPLs (control panel items), access to the registry, access to the CMD prompt, access to the MMCs.....etc-------------copy here---------------[Version]Signature= "$Windows NT$"[DefaultInstall]DelReg=DelValues[DelValues]HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\RestrictCpl"HKCU, "software\microsoft\windows\currentversion\policies\system","DisableRegistryTools"HKCU, "Software\Policies\Microsoft\MMC","RestrictAuthorMode"HKCU, "Software\Policies\Microsoft\MMC","RestrictToPermittedSnapins"HKCU, "Software\Policies\Microsoft\Windows\System","DisableCMD"HKCU, "Software\Policies\Microsoft\Internet Explorer\Control Panel"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoRun"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoWindowsUpdate"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","ConfirmFileDelete"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoSMConfigurePrograms"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoWebServices"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoManageMyComputerVerb"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","RestrictCpl"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\Advanced","Hidden"---------end copy here----------**** note, once you log off and back on, the group policy will refresh itself and any of these changes are lost. To make them permanent, all you have to do is: edit the registry, right click the key that contains the value(s) above, right-click and go to "Permissions", and remove ALL user/groups from there EXCEPT your own account. That way, when GP attempts to write the values back in next time, it won't have permission to and will just skip them. Neat huh? I hope this post is valuable to someone - I know it would have been for me. That's my first contribution to the site -if this is the wrong forum location, can someone pls move it for me. thanks!Andrew
swammer Posted October 27, 2006 Posted October 27, 2006 nice tip. Where is the excel file? I'd like to see what the other policies are and where they are in the registry.
r3incarnat0r Posted October 27, 2006 Posted October 27, 2006 Download the file here. It is too big to attach.
Plamdi Posted October 29, 2006 Posted October 29, 2006 I hope this post is valuable to someone - I know it would have been for me. That's my first contribution to the site -if this is the wrong forum location, can someone pls move it for me. thanks!AndrewNice contribution.
swammer Posted October 30, 2006 Posted October 30, 2006 does anyone know where the policy is to disable creation of local users on a workstation?
SutherlandAndrew Posted November 29, 2006 Author Posted November 29, 2006 does anyone know where the policy is to disable creation of local users on a workstation?http://www.microsoft.com/technet/prodtechn...9.mspx?mfr=true
Idontwantspam Posted March 21, 2007 Posted March 21, 2007 (edited) Help me!!I am using this information to disable the task manager, lock computer and change password from certain user accounts. I read in the excel document that I should go to:HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System!DisableTaskMgrHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System!DisableLockWorkstationHKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System!DisableChangePasswordI go as far as "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\", but then I don't know what to do next. What do I need to create to do this? The options I see under the Policies "folder" are "(Default)" and a folder called "Explorer" which has only "(Default)" and "NoDriveTypeAutoRun". So what do I need to add here? Help me please, someone!UPDATE:OK, I have everything there, but nothing seems to be happening. I used DWORD values - was that right? Do I need to set their values to 1 or someting like that? Not seeing any effect... Edited March 22, 2007 by Idontwantspam
Idontwantspam Posted March 22, 2007 Posted March 22, 2007 OK, I've got it down now. I had to create new keys, DWORD values, and set them to "1" (I had them on "0") Now it's all working.
ShesABMJ Posted October 22, 2010 Posted October 22, 2010 This info is the truth! This saved the remainder of my day. SO grateful to you... I have found this information very valuable from time to time, especially when you (as a system admin) are logged into a PC as one of your restricted users, and have to do something as them. (ie. edit the registry, install a program - something that relies on the HKCU etc)As you probably know, group policies are set by changing keys and values in the registry. Machine specific GPs are in the HKLM and user specific GPs are in the HKCU. I've attached an excel document from Microsoft, detailing what reg key reflects what GP, with a description. (very handy)As well, I custom wrote an INF file to temperarily remove group policy effects. Copy the below text to a txt file, and save it as <whatever>.inf Because it is an INF file and not a REG file, when you right-click and choose Install, it will bypass any "disallow registry editing tools" policy, (whereas a .reg file will not) and also immediately refresh the explorer after its done. (so you dont even have to log off and back on). **note, you WILL need admin access wherever you run this INF.These are the most common GP's that I find I come across. Such items like getting back your MANAGE context menu item, your RUN command, access to all the CPLs (control panel items), access to the registry, access to the CMD prompt, access to the MMCs.....etc-------------copy here---------------[Version]Signature= "$Windows NT$"[DefaultInstall]DelReg=DelValues[DelValues]HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\RestrictCpl"HKCU, "software\microsoft\windows\currentversion\policies\system","DisableRegistryTools"HKCU, "Software\Policies\Microsoft\MMC","RestrictAuthorMode"HKCU, "Software\Policies\Microsoft\MMC","RestrictToPermittedSnapins"HKCU, "Software\Policies\Microsoft\Windows\System","DisableCMD"HKCU, "Software\Policies\Microsoft\Internet Explorer\Control Panel"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoRun"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoWindowsUpdate"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","ConfirmFileDelete"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoSMConfigurePrograms"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoWebServices"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","NoManageMyComputerVerb"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer","RestrictCpl"HKCU, "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\Advanced","Hidden"---------end copy here----------**** note, once you log off and back on, the group policy will refresh itself and any of these changes are lost. To make them permanent, all you have to do is: edit the registry, right click the key that contains the value(s) above, right-click and go to "Permissions", and remove ALL user/groups from there EXCEPT your own account. That way, when GP attempts to write the values back in next time, it won't have permission to and will just skip them. Neat huh? I hope this post is valuable to someone - I know it would have been for me. That's my first contribution to the site -if this is the wrong forum location, can someone pls move it for me. thanks!Andrew
SutherlandAndrew Posted October 22, 2010 Author Posted October 22, 2010 This info is the truth! This saved the remainder of my day. SO grateful to you... Wow, this is an old post! Brings back memories. Glad you found it useful!Andrew
pat2 Posted May 12, 2013 Posted May 12, 2013 (edited) Andrew Sutherland, this is Michele from Italy!YOU ARE GREAT!! WONDERFULL TWEAK!!! I WAS SEARCHING ON INTERNET SURE IT WAS AN ANGEL WITH THE RIGHT ANSWER. iT'S YOU!ciaoNote: where do i could download the excel file you are mentioning in the post?Please, if you want you could send me to -removed-thaaaaaaaaaaanks Edited May 13, 2013 by pat2
submix8c Posted May 12, 2013 Posted May 12, 2013 Googlexp "group policies" xlsPlease remove your email address...A Group Policy Primer -http://www.dedoimedo.com/computers/policies.htmlMore Info -http://support.microsoft.com/kb/307882Side note - GPEDIT.MSC is not on XP Home Edition. Can be "transplanted" onto XP Home.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now