Sometimes you need to edit the registry for a certain user and you can’t locate it in HKEY_USERS because you don’t know the SID for the user.
I found this useful script which creates you a list of all users in the domain with their SID:
http://windowsxp.mvps.org/reg/sidlist.vbs
Credits to the author Ramesh Srinivasan of this useful script.
admin on September 30th 2010 in IT, Windows
I don’t know if it is a default setting of windows 7 but on our domain you can’t access all computers registry because a service is set to manual and not started. Of course you need to be Domain Admin to be able to run this steps.
First of all you need to start the RemoteRegistry service on the computer:
sc \\COMPUTERNAME start RemoteRegistry
After that you can access it like usually in regedit:
File->Connect to Network etc.
To be on the save side you can disable it again:
sc \\COMPUTERNAME stop RemoteRegistry
admin on September 30th 2010 in IT, Windows
If you believe or not I we still use Windows 2000 Server in our environment and today I faced the famous 128 GByte problem. Windows 2000 until Service Pack 2 just detects maximal 128 Gbyte HD Space. To solve this you need to make changes to the registry.
Go to:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Atapi\Parameters
Create a DWORD key:
EnableBigLba
Set value to:
1
admin on October 23rd 2009 in Windows Server
The folder auto-detection in Windows Vista drove me crazy. I like to have the details view for all folders as my default setting.
Important: Before you make any changes in the registry create a System Restore Point.
The following changes in the registry will fix the problem:
|
Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags] [-HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU] [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags] [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders] [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell] "FolderType"="NotSpecified" [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell] "BagMRU Size"=dword:00007530 |
FixFolderViewVista.reg
admin on February 2nd 2009 in IT, Windows