Rename "My Computer" unattended.
Run this vbs script from RunOnceEx.
It will be the name you set in your "winnt.sif".
Const MY_COMPUTER = &H11&
Set objNetwork = CreateObject("Wscript.Network")
objComputerName = objNetwork.ComputerName
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(MY_COMPUTER)
Set objFolderItem = objFolder.Self
objFolderItem.Name = objComputerName
Rename "Drive(s)" unattended.
Put this "reg" in your regtweaks.
It will also do your icon.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultLabel]
@="Hoved Drev"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\C\DefaultIcon]
@="c:\\windows\\icons\\System\\win.ico"
Both found on this site...
This post has been edited by Lau: 15 June 2006 - 02:22 PM