June 15, 200620 yr I wish to rename 2 specific links from within the Start Menu for my unattended cd:Rename My Computer to 'piXel'Rename (C:) Local Disk to 'piXel'I wish to rename both of these links unattendedly, how would I go about it?Thanks for any assistance Edited June 15, 200620 yr by piXelatedEmpire
June 15, 200620 yr you carnt get rid of device letter but partition magic will re lable it until you del partition
June 15, 200620 yr I'm unsure how you can rename my computer unattended. but to rename your drive, simply use the dos command label.In your case: label c: piXel, where c: is your OS drive.
June 15, 200620 yr 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.ComputerNameSet objShell = CreateObject("Shell.Application")Set objFolder = objShell.Namespace(MY_COMPUTER) Set objFolderItem = objFolder.SelfobjFolderItem.Name = objComputerNameRename "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... Edited June 15, 200620 yr by Lau
Create an account or sign in to comment