• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need a program to start and stop sporadically.

anthero

Junior Member
My goal is to use xpadder to control windows 7 with an xbox controller. Simple, but I need the program to stop emulating the mouse and keyboard when certain applications run fullscreen like a game that uses the gamepad. I also need xpadder to start again after the game closes. Are there any applications that can manage this? A script maybe? I would post this in PC Gaming but it is a program I need and not exclusively for gaming . Any ideas?
 
You can use taskkill to kill xspadder before calling whatever game.exe you want to run. Place those commands in a batch file and place a shortcut to that batch file wherever your current game.exe shortcut exists. Use start /wait to ensure that the batch file stays running until you exit the game. Then as the last line of the batch file, reinvoke xpadder.

Example:
Code:
taskkill /im xspadder.exe
start /wait "C:\Game Folder\mygamethatusesgamepad.exe"
start xspadder.exe
 
Back
Top