Revert "use protocol instead of exe path"

This reverts commit 70557a37a9.
This commit is contained in:
Mylloon 2024-12-29 16:57:42 +01:00
parent c6771c7a20
commit 7899b41ce2
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -10,7 +10,7 @@ fltmc >NUL 2>&1 || (
)
SET "collapse=%LOCALAPPDATA%\CollapseLauncher\current"
SET "protocol=collapse://"
SET "exe=CollapseLauncher.exe"
SET "iconpath=Assets\Images\GameIcon"
SET "shortcutpath=%ProgramData%\Microsoft\Windows\Start Menu\Programs\Collapse Launcher Team"
SET "args=open --region \"Global\" --play --game"
@ -20,7 +20,8 @@ ECHO Genshin shortcut creation...
PowerShell -Command "" ^
"$WshShell = New-Object -comObject WScript.Shell;" ^
"$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Genshin Impact.lnk');" ^
"$Shortcut.TargetPath = '!protocol!!args! \"Genshin Impact\"';" ^
"$Shortcut.TargetPath = '!collapse!\!exe!';" ^
"$Shortcut.Arguments = '!args! \"Genshin Impact\"';" ^
"$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-genshin.ico';" ^
"$Shortcut.Save()"
@ -29,7 +30,8 @@ ECHO Honkai shortcut creation...
PowerShell -Command "" ^
"$WshShell = New-Object -comObject WScript.Shell;" ^
"$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Honkai Star Rail - HSR.lnk');" ^
"$Shortcut.TargetPath = '!protocol!!args! \"Honkai: Star Rail\"';" ^
"$Shortcut.TargetPath = '!collapse!\!exe!';" ^
"$Shortcut.Arguments = '!args! \"Honkai: Star Rail\"';" ^
"$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-starrail.ico';" ^
"$Shortcut.Save()"
@ -38,7 +40,8 @@ ECHO ZZZ shortcut creation...
PowerShell -Command "" ^
"$WshShell = New-Object -comObject WScript.Shell;" ^
"$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Zenless Zone Zero - ZZZ.lnk');" ^
"$Shortcut.TargetPath = '!protocol!!args! \"Zenless Zone Zero\"';" ^
"$Shortcut.TargetPath = '!collapse!\!exe!';" ^
"$Shortcut.Arguments = '!args! \"Zenless Zone Zero\"';" ^
"$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-zenless.ico';" ^
"$Shortcut.Save()"