1.

Solve : running programs at start-up?

Answer»

I know how to run programs at start up using Command Prompt, but is it possible to make a program that asks the USER if they want to OPEN that program?If you have Win 95/98/ME you have choice.exe ALREADY. If not, download it from one of a zillion places and put it on your PATH somewhere.

look here for some clues...

http://www.google.com/search?source=ig&hl=en&q=download+CHOICE.EXE&meta=

Example CODE showing how to optionally launch Internet Explorer from a batch file, quitting the batch file without waiting for IE to FINISH...

Code: [Select]@echo off
cls
choice /N "Do you want to run Internet Explorer (Y/N) ?"
if errorlevel 2 goto no
if errorlevel 1 goto yes
:yes
start "" "C:\Program Files\Internet Explorer\IEXPLORE.EXE"
:no
exit



Quote from: contrex on April 27, 2007, 12:25:55 AM

If you have Win 95/98/ME you have choice.exe already. If not, download it from one of a zillion places and put it on your PATH somewhere.

look here for some clues...

http://www.google.com/search?source=ig&hl=en&q=download+CHOICE.EXE&meta=
...


And here:

http://hp.vector.co.jp/authors/VA007219/dkclonesup/choice.html


Thanks, it worked.


Discussion

No Comment Found