Kurt_Aust, you restore the Quicklauch via batchfile but the "show desktop" icon is missing.
To restore the quicklauch icon :
- copy from an exsting XP installation the file "Show Desktop.scf" as a template to quicklaunch ...
- or create a new one.
To create a "Show Desktop.scf" make a textfile with this content:
[Shell]
Command=2
IconFile=explorer.exe,3
[Taskbar]
Command=ToggleDesktop
... and safe it as "Show Desktop.scf" and place it in AddOns.
Then add it to the RUN1_XP-64.BAT batchfile after :
REM fix Quick Launch toolbar (broken by IE8 installer)
MkDir "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
MkDir "%SystemDrive%\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
New:
Copy "%Source%AddOns\Show Desktop.scf" "%SystemDrive%\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
Copy "%Source%AddOns\Show Desktop.scf" "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
Full:
REM fix Quick Launch toolbar (broken by IE8 installer)
MkDir "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
MkDir "%SystemDrive%\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
Copy "%Source%AddOns\Show Desktop.scf" "%SystemDrive%\Documents and Settings\Default User\Application Data\Microsoft\Internet Explorer\Quick Launch"
Copy "%Source%AddOns\Show Desktop.scf" "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
... and you are done.
This post has been edited by genu: 13 September 2009 - 07:22 AM