Last active
September 8, 2020 00:20
-
-
Save rougesheep/ce76cc068ef88cf7db3976d130cd97b8 to your computer and use it in GitHub Desktop.
Start BetterJoy and CEMU from one shortcut
This file contains 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
$BetterJoy = "D:\Programs\BetterJoy\BetterJoyForCemu.exe" | |
$CEMU = "D:\WiiU\CEMU\Cemu.exe" | |
$GamePath = "`"D:\WiiU\Games\BOTW\Game\The Legend of Zelda Breath of the Wild [ALZE01]\code\U-King.rpx`"" | |
Start-Process -FilePath $BetterJoy -WorkingDirectory (Get-Item $BetterJoy).DirectoryName | |
Start-Process -FilePath $CEMU -WorkingDirectory (Get-Item $CEMU).DirectoryName -ArgumentList "-g",$GamePath, -Wait | |
Get-Process -Name BetterJoyForCemu | Stop-Process |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment