Before - After Images:
XP
With XP, setting up was easy:
- Start mmc /a services.msc
- Make all changes on the view, like switching to Standard view, switchting off Console tree, aso.
- Save.
Whenever you call services.msc, or the Services applet using Control Panel, the "classic" view is shown, allowing for a better overview and more description readable.
Vista and Windows 7
With Vista and Windows 7, protection mechanisms and Internationalization make it more difficult.
First, all system files, including the *.msc, are protected. You can't overwrite them by default. Instead of using System File Protection like XP, Vista is relying on correct file access permissions. Hence the system files are owned by TrustedInstaller, and all other users including Administrators do have Read and Execute permission. We need to change this (later).
Second, many system files are located in a language dependant subfolder. Usually, there are only MUI files to replace text, but .msc files are "mirrored" as a whole. The file in system32 is just a placeholder (I suppose for compatibility reasons).
Taken together, this means we have to unprotect and change a file in a system32 subfolder. Knowing this makes it "easy". I'll stick on the Service applet, and assume an US english system:
Open a cmd.exe (Command Prompt) in Administrator mode, and then use:
Now do your changes, and save it in the correct (!) folder, which is %SystemRoot%\system32\en-
Now call the Services applet, and voilá.
How about Windows Patches, Services Packs aso.?
Well, to be honest, I do not know. The files might be replaced, and you have to do the changes again. However, it is very unlikely .msc files are replaced by a Windows Update. Service Packs could replace the files, though.
With XP, the change of the .msc files is unrelated to the System File Protection feature (SFC), as the file itself is yet valid. Repair installations could replace the file, of course.
by: McKnife on 2011-08-09 at 15:40:30ID: 30571
Just in case someone might wonder:
icacls services.msc /setowner TrustedInstaller
does not work. You have to use the account "NT SERVICE\TrustedInstaller" enclosed in quotation marks.