Whew, I almost left this little gem behind at my previous employer. It's a shortcut that you can place on your sharepoint server's desktop to bring up a sharepoint ready command line. This makes working with the stsadm.exe utility much easier.
%comspec% /k "@set PATH=c:\program files\common files\microsoft shared\web server extensions\60\bin;%PATH%" What it does is temporarily put the path to stsadm in the %path% environment variable for the duration of that command line session. Of course, one might argue that you could just up and put the path in the variable so it's available for all time ... but really, what fun would that be ;-)
Thanks Tim for sending it to me.