January 17, 200521 yr Something doesnt work with my cleanup.cmd file, it will run, but comes up saying windows cannot find any of the files in it, and they are there, can anyone help me? I think it found the first 2 actually, but nothing else.@echo offDEL "%AllUsersProfile%\Start Menu\Set Program Access and Defaults.lnk"DEL "%AllUsersProfile%\Start Menu\Windows Catalog.lnk"DEL "%AllUsersProfile%\Start Menu\Programs\SlySoft\AnyDVD\AnyDVD.Ink"DEL "%AllUsersProfile%\Start Menu\Programs\SlySoft\AnyDVD\Register AnyDVD.Ink"DEL "%AllUsersProfile%\Desktop\Internet Explorer.lnk"DEL "%AllUsersProfile%\Desktop\AnyDVD.lnk"DEL "%AllUsersProfile%\Desktop\Nero StartSmart.lnk"DEL "%AllUsersProfile%\Desktop\CyberLink PowerDVD.lnk"DEL "%AllUsersProfile%\Desktop\AnyDVD.lnk"RD /S /Q "%AllUsersProfile%\Desktop\Special Folder Icons"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\IsoBuster.Ink"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Nero StartSmart.Ink"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Launch Internet Explorer Browser.Ink"DEL "%systemdrive%\bootlogo.cmd"DEL "%systemdrive%\start.cmd"DEL "%systemdrive%\fonts.exe"DEL "%systemdrive%\xpize.exe"EXIT
January 17, 200521 yr Some shortcuts (Internet explorer shortcuts) are not created until the first time when you log on to your desktop, this might be causing some problems.I also suggest you add the /Q switch to the delete entries when it's complete so it will suppress the messages in case an error is encountered.. Of course now that you're testing it it's wise to not have the switches in place yet so you will see if it works.*EDIT*Found some errors.. In the following files you use .INK instead of .LNK. Change the extensions to the correct ones.DEL "%AllUsersProfile%\Start Menu\Programs\SlySoft\AnyDVD\AnyDVD.Ink"DEL "%AllUsersProfile%\Start Menu\Programs\SlySoft\AnyDVD\Register AnyDVD.Ink"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\IsoBuster.Ink"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Nero StartSmart.Ink"DEL "%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Launch Internet Explorer Browser.Ink"I'd also advise changing RD /S /Q "%AllUsersProfile%\Desktop\Special Folder Icons"toRD /S /Q "%AllUsersProfile%\Desktop\Special Folder Icons\"
January 17, 200521 yr Some shortcuts (Internet explorer shortcuts) are not created until the first time when you log on to your desktop, this might be causing some problems.Any way to remove those too?
January 18, 200521 yr Author yes i still need to remove the internet explorer icon, and i need the correct command to delete a folder
January 19, 200521 yr The IE desktop icon can be removed with a registry tweak.Windows Registry Editor Version 5.00[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu]"{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000001[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]"{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000001
Create an account or sign in to comment