Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to automatically launch an application from a USB flash drive (bypassing windows prompt asking user what he wants to do)? on windows XP or vista.

I looked into "autorun.inf" and "open" entry seems to work only for CD drives for Windows XP SP2+ and Vista. Is it possible to launch program automatically on all windows versions?

I don't care if autorun is disabled by user in Windows settings.

share|improve this question
Certainly can be done, lots of people complain about it too, though how to do it is beyond me. – cfeduke Oct 31 '08 at 21:36

6 Answers

First of all, some people choose to disable autorun for security reasons; but most Windows computers have it enabled. Put a file named autorun.inf in the root of your USB flash drive. This is what's in mine:

[Autorun]
Open=PStart.exe
Action=Start portable apps
Icon=diskicon.ico

What it does: when you insert this disk, starts PStart.exe

On older computers, the program specified in Open= will launch automatically.

On most modern computers (Windows XP SP2+, Vista), dialog "what do you want to do" will be displayed (for security reasons), but what you have in autorun.inf will display as the selected default, with Icon= as icon and Action= as description. If you want to launch it, just click the "OK" button in the dialog.

So, although I'm not aware of any way to start the application (e.g. PStart) immediately, it is possible to insert flash disk with this configuration and start application by clicking OK.

Tested on different computers, running Windows XP without a SP, also on Windows XP sp 1, sp2, sp3, and on various Vistas (not sure which types, but should work all the way from Vista Home Basic to Vista Enterprise Super-Mega-Premium-Extended Edition) and "Windows 7". Also works on Windows 2000 (although autorun on Win2000 for removable drives is not enabled in default configuration).

Note that some applications, in addition, may trigger the "unknown/unsigned exacutable" security dialog, as if you opened them manually.

Edit: For more details, see also http://msdn.microsoft.com/en-us/magazine/cc301341.aspx

share|improve this answer
is it possible to launch PStart.exe in the example above on XP SP2+ or Vista? – Sumrak Nov 3 '08 at 4:15
Yes. Edited to emphasize this. – Piskvor Nov 3 '08 at 17:08

I've had something set up on my USB keys for a while now. Using the autorun.inf file will work, depending on your system's settings for autorun. Some disable it altogether after that little debacle with Sony a couple years back installing rootkit software on peoples' machines. Here're a couple articles to check out.

http://lifehacker.com/375320/label-a-flash-drive-with-your-name-and-number

http://dailycupoftech.com/have-your-lost-usb-drive-ask-for-help/

share|improve this answer

you need UseAutoplay to let this work on usb.

and if you take ShellExecute instead of open you can also open scripts/documents/...


[Autorun]
ShellExecute=System\something.exe
UseAutoplay=1 

share|improve this answer
UseAutoPlay has no effect on USB drives - msdn.microsoft.com/en-us/library/… – evanmcd Aug 30 '10 at 18:15

there are also U3 usb sticks arround, they will be reconised as cdrom drives in windows. if you put an a autorun.inf on one of those, it will get executed without the user being questioned.

regards morla

share|improve this answer
Not if the user has disabled autorun. Also, this was correctly recognized as a security issue and newer versions of Windows prompt before processing autorun items from U3. – Ben Voigt Oct 9 '11 at 22:24

I found the solution in this blog

http://www.makeuseof.com/tag/autolaunch-apps-usb-stick-windows/

It worked fine for me

share|improve this answer

You can get Prayaya to run it. I have sucessefully installed my daily used apps like MS office, FF,VLC player....on it. Almost any app will do on it.

you may have a try.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.