Created
November 1, 2016 09:53
-
-
Save digitalfun/75a21bdc8204b369007496a5309bae39 to your computer and use it in GitHub Desktop.
Start apps/tools etc on your USB stick from bat-files (using relative paths).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo start ... | |
set APP_PATH=apps\CustomHotkey | |
set APP_EXE=CustomHotkeys.exe | |
cd "%~d0\%APP_PATH%" | |
start "starting ..." "%~d0\%APP_PATH%\%APP_EXE%" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment