CounterCraft Posted November 20, 2008 Posted November 20, 2008 I have some programs and folder I want to open but don't want to put it on start up (everyone is sharing same account)I wanted to make certain way of starting those programs w/o going thru start menu$correctpass = "**********"$pass = InputBox (" ", " ", "", "", "", "", "", "", 5)if $pass = $correctpass Then Run("C:\games") Run("C:\Program Files\Trillian\trillian.exe") Run("C:\Program Files\AIMP2\aimp2.exe")EndIfExittrillian and aimp2 runs but I don't know how to open up folder Q_Q;
dillonlim Posted November 20, 2008 Posted November 20, 2008 I have some programs and folder I want to open but don't want to put it on start up (everyone is sharing same account) I wanted to make certain way of starting those programs w/o going thru start menu trillian and aimp2 runs but I don't know how to open up folder Q_Q; Try this instead. ShellExecute("C:\games")
FireFox Posted November 20, 2008 Posted November 20, 2008 (edited) Hi, If you want to open folder this could help you ShellExecute("explorer.exe","C:\myfolder\") Edited December 24, 2008 by FireFox
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now