UnknownTBeast wrote:
> I know this sounds odd, but is it possible to make my USB memroy stick to
> automaticly run a file once I put it in without me having to click anything?
No, this has been more and more limited by each new Windows
version. Under Vista even on CDROM drives the user is asked.
For autorun something without any clicking, a 3rd party
software is required.
My USB drive letter manager is able to do this. It's a
small Win32 service. It's primary function is to assign
drive letters to USB drives but it can execute programs
on arrival of a drive too.
http://www.uwe-sieber.de/usbdlm_e.html
You need a simple configuration file, the USBDLM.INI
like this:
;letters U: to Z: as default for USB drives
[DriveLetters]
Letters=U-Z
;execute the Windows calcualtor on arrival of
;an USB drive with a volume label "MyCalcDrive"
[OnArrival10]
Label=MyCalcDrive
open=calc
With acitve UAC the program is started non elevated.
The next version of USBDLM will be able to start
programs elevated.
Greetings from Germany
Uwe