Unlockgo
by slowmaker of http://programmingforfun.net
(fan of http://www.donationcoder.com)

Unlockgo runs the specified command line whenever your windows session is
unlocked (i.e. you return to your logon from a fast user switch). The idea
came from a question on the DonationCoder.com forum in the developer's board.

Usage is pretty simple; suppose you want program myprogram.exe to run with the
command line arguments "-quiet -simple", every time you user-switch back into
your login. This will do the trick:

    unlockgo c:\path\myprogram.exe -quiet -simple

Essentially anything you can type in a console window (dos box) should work,
just tack it on to the unlockgo command line. Some things will require some
modification, like built-in commands that don't actually have executables
(like cls, echo, etc.). For those things you can use the cmd.exe /c or /k
syntax, like this:

    unlockgo cmd /k echo Howdy!

The 'start' command is built-in, so it needs the same sort of workaround:

    unlockgo cmd /c start e:\stuff\unlockgo.pb\unlockgo.txt


This archive should contain these files
=======================================
unlockgo.exe
unlockgo.txt
src\unlockgo.rc
src\off.ico
src\unlockgo.ico
src\make.bat
src\unlockgo.pb


License
=======

This software is "optional donation" freeware for private, educational, or
commercial use. This means you don't have to pay anything at all for it, but
you *can* pay for it if you like. If you want to donate, visit
http://www.donationcoder.com and donate through them, or visit
http://programmingforfun.net and contact me if you cannot or will not donate
through DonationCoder (but why on earth not? they're a great crowd...).

If you want to donate but your accounting department won't let you without
some sort of formal billing statement, contact me and we'll see if we can work
something out.

Distribution is allowed as long as you do not change the contents of the
archive and are not charging for my software *specifically*; charging for your
collection as a whole is fine, as long as the collection does not consist
solely of my software.

The source code should be included in this archive. I retain full copyright to
this source code, but you are free to read it, get ideas from it, even use
small portions that you find particularly useful in your own projects as long
as you give clear attribution to me. You are *not* allowed to just recompile
the whole thing under a new name (i.e. rebranding).


Release History
===============
Release 1      2010 Jan 16 - released unlockgo.exe with source to
               http://programmingforfun.net and http://www.donationcoder.com.
