SdS wrote:
> tried to install Sp3.. same situation at reboot. Someone can help me?
solved. I write the solution here, hoping that can be useful for someone
in the future.
The problems seems to be that there's a lot of poorly written software
(including device drivers) out there. Probably the problem is the key
type for the PATH statement being changed mysteriously. The reason:
probably the badly written installation program reads the original path
data from registry, adds it's own entry to the path string, and then
writes the updated path string back to registry as type "REG_SZ" instead
of "REG_EXPAND_SZ". That cause a permission problem on the registry
THE SOLUTION: Reset original permissions on your windows registry. To do
that:
1. Download and install SubInACL
http://www.microsoft.com/downloads/d...displaylang=en
2. Create a blank file named reset.cmd in C:\Program Files\Windows
Resource Kits\Tools folder.
3. Edit the reset.cmd file with the following content.
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f
subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f
subinacl /subdirectories %SystemDrive% /grant=administrators=f
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=system=f
subinacl /subkeyreg HKEY_CURRENT_USER /grant=system=f
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=system=f
subinacl /subdirectories %SystemDrive% /grant=system=f
4. Enter into the CMD/Command prompt. CD Change Directory to C:\Program
Files\Windows Resource Kits\Tools
5. Run reset.cmd
That solved the problem for me.