|
Answer» XP Is there a way to automatically OPEN a PROGRAM without CLICKING an ICON to open the browser and then another icon to open the program? Thanks...look under Properties and you can choose the Hotkeys....I first thought of two things... you can use variables/values in the shortcut OR you can make a shortcut but actually through a batch file...
example in a shortcut: in the target of the shortcut properties "?:\...\...\hl.exe -console -game cstrike" or "C:\Documents and Settings\pc1\Desktop\textfile.txt /iexplore"------------------------ example with a batch file:
@echo off
"C:\Program Files\Internet Explorer\IEXPLORE.EXE" "C:\text.txt"
cls
exit
|