open two things
-
hi i am new to this and i was wondering if it is possible to open two things at the same time (in one command) for example youtube and instagram, or minecraft and warzone. it's possible?
-
@SaturadoXx, a quick an dirty way to do that is to put a && between the two commands like this:
calc && notepad
That will open calculator and notepad.
Or, you could create a batch file script with the two commands called something like c:\scripts\calc_and_notepad.bat with these contents, and run the batch file script from TRIGGERcmd.
calc notepad
-
@Russ Thank you!