@ECHO OFF IF NOT [%1]==[] GOTO SYNTAX IF NOT "%OS%"=="Windows_NT" GOTO Syntax VER | FIND "Windows NT" > NUL IF NOT ERRORLEVEL 1 GOTO Syntax SETLOCAL SET File="%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Show Desktop.scf" IF NOT EXIST %File% ( > %File% ECHO [Shell] >> %File% ECHO Command=2 >> %File% ECHO IconFile=explorer.exe,3 >> %File% ECHO [Taskbar] >> %File% ECHO Command=ToggleDesktop ) ENDLOCAL GOTO End :Syntax ECHO. ECHO ShDsktop.bat, Version 1.00 for Windows 2000 / XP ECHO Restore the Show Desktop shortcut in the Quick Launch tray ECHO. ECHO Usage: SHDSKTOP ECHO. ECHO Written by Rob van der Woude ECHO http://www.robvanderwoude.com :End