I'm not too sure where this would go in so I'm just going to leave it here...
I have been playing No Man' Sky lately and started using the Freelook mod, which requires a virtual joystick program, VJoy. Every time I want to use the mod I have to start VJoy and then No Man's Sky, and close both of them when I'm done. I want to make a batch file that can open both of these programs through their shortcuts in the same folder as the .bat file and then close both of them if I close one of them.
*Edit*
Current progress:
@echo off
pushd D:\Program Files\Steam Library\steamapps\common\No Man's Sky\Binaries
start NMSELauncher.exe
pushd C:\Program Files (x86)\VJoy
start VJoy.exe
I am able to get both programs up and running. Now I need to know how to close VJoy once No Man's Sky is closed.
TLDR; I want to write a Batch file that will launch two specific .exe's in different locations or two shortcuts to those .exe's in the same folder and then close both of them when I close one of them.
I have been playing No Man' Sky lately and started using the Freelook mod, which requires a virtual joystick program, VJoy. Every time I want to use the mod I have to start VJoy and then No Man's Sky, and close both of them when I'm done. I want to make a batch file that can open both of these programs through their shortcuts in the same folder as the .bat file and then close both of them if I close one of them.
*Edit*
Current progress:
@echo off
pushd D:\Program Files\Steam Library\steamapps\common\No Man's Sky\Binaries
start NMSELauncher.exe
pushd C:\Program Files (x86)\VJoy
start VJoy.exe
I am able to get both programs up and running. Now I need to know how to close VJoy once No Man's Sky is closed.
TLDR; I want to write a Batch file that will launch two specific .exe's in different locations or two shortcuts to those .exe's in the same folder and then close both of them when I close one of them.