Article
PROBLEM: Missing "Show Desktop" icon on the quick launch toolbar.
SOLUTION: Re-create the file with a NAL Application
An annoyance that I've had for some time is that when a user has removed the all important "Show Desktop" shortcut from the quick launch toolbar, I always copied the file from a location on the network to the active toolbar, but that wasn't the nicest of solutions, until I figured out how to do this with a ZEN application object.
I created an application that re-creates the "Show Desktop" icon on the current user's quick launch toolbar.
Firstly create a simple application in ConsoleOne, giving it an appropriate name and using the standard settings. Once it's created, copy the following script into the Run before Launching: section under Run Options, Launch Scripts section of the application object.
@echo off echo [Shell] > "%Temp%\Show Desktop.scf" echo Command=2 >> "%Temp%\Show Desktop.scf" echo IconFile=explorer.exe,3 >> "%Temp%\Show Desktop.scf" echo "%Temp%\Show Desktop.scf" echo [Taskbar] >> "%Temp%\Show Desktop.scf" echo Command=ToggleDesktop >> "%Temp%\Show Desktop.scf" move /Y "%Temp%\Show Desktop.scf" "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch"
The script engine is "%COMSPEC% /C" without the quotation marks, and the extension is ".bat" also without quotation marks.
For the rest, the application needs to be associated with user(s) and have the correct OS dependencies, and any other fine-tuning settings you may require.
Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).
It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.
Related Articles
User Comments
This works very well. I
Submitted by Anonymous on 11 August 2008 - 6:02am.
This works very well. I just copied and pasted this text into a .bat file on my system and ran it. It created the shortcut.
thanks
Nilima
- Be the first to comment! To leave a comment you need to Login or Register


1