Jump to content

autorun problem


wolverine

Recommended Posts

hey guys i have a kingston u3 1gb and its working great for me the launchpad executes fine but i want it to execute another file too along with launchpad... now i changed the autorun.inf and added open=myfile.exe in it alongside launchpad execution but my file never runs.... can anyone please post a step by step tut on what i should do to make my file run too automatically with the launchpad ???

Link to comment
Share on other sites

Here is a great resource for everything you can do with an autorun.inf file

http://msdn2.microsoft.com/en-us/library/bb776823.aspx

As for your question about launching two applications at once, though, I think the answer is to add a shellexecute entry into the autorun.inf file, or to point the Open entry at a batch file that will open the two applications in question. First the usage of the shellexecute entry ...

[autorun]
action=Label for open action
open=File you want to open with the open command

shellexecute=file you want to run automatically every time

The shellexecute entry will open the files listed every time you insert the drive into a computer, the open entry will only be executed when you select that option from the autoplay menu. Using the shellexecute allows you to have multiple entries for programs/files you want to run every time you insert the drive, and you can use it to have non-executable files also open upon drive insertion.

shellexecute=my_file_1.txt
shellexecute=my_file_2.htm
shellexecute=my_file_3.bat
...

Now if you don't want any particular thing to open every time you insert the drive but would rather have a certain set of things happen when you select the Open option from the Autoplay menu, then I would say you just have to write a simple batch file that opens multiple files, and then point your autorun.inf at that batch file.

Autorun.inf

[autorun]
action=Label for Open command
open=batch_file.bat

batch_file.bat (this is just a text file with the extension changed from txt to bat)

:: Startup Batch File
start [relative path to program2]executable_file.exe

:: Example entries
start AppsFirefoxPortableFirefoxPortable.exe
start launchpad.exe
...

I hope that helps, I know that for me, I created a GoToWork.bat file on my thumb drive that is linked to the Open command in the autorun.inf and that batch file loads Firefox Portable, Pidgin Portable, uTorrent, and SciTE (my preferred text editor). There is more you can do with an autorun.inf, but I think this should at least be a good start.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...