From c6771c7a20a12f18b7fae6dcd6b294cde3e7852b Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sun, 29 Dec 2024 16:57:00 +0100 Subject: [PATCH] fix protocol call --- windows/apply_mihoyo_shortcut.bat | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/windows/apply_mihoyo_shortcut.bat b/windows/apply_mihoyo_shortcut.bat index dccf0cb..0d0fb62 100644 --- a/windows/apply_mihoyo_shortcut.bat +++ b/windows/apply_mihoyo_shortcut.bat @@ -20,8 +20,7 @@ ECHO Genshin shortcut creation... PowerShell -Command "" ^ "$WshShell = New-Object -comObject WScript.Shell;" ^ "$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Genshin Impact.lnk');" ^ - "$Shortcut.TargetPath = '!protocol!';" ^ - "$Shortcut.Arguments = '!args! \"Genshin Impact\"';" ^ + "$Shortcut.TargetPath = '!protocol!!args! \"Genshin Impact\"';" ^ "$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-genshin.ico';" ^ "$Shortcut.Save()" @@ -30,8 +29,7 @@ ECHO Honkai shortcut creation... PowerShell -Command "" ^ "$WshShell = New-Object -comObject WScript.Shell;" ^ "$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Honkai Star Rail - HSR.lnk');" ^ - "$Shortcut.TargetPath = '!protocol!';" ^ - "$Shortcut.Arguments = '!args! \"Honkai: Star Rail\"';" ^ + "$Shortcut.TargetPath = '!protocol!!args! \"Honkai: Star Rail\"';" ^ "$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-starrail.ico';" ^ "$Shortcut.Save()" @@ -40,8 +38,7 @@ ECHO ZZZ shortcut creation... PowerShell -Command "" ^ "$WshShell = New-Object -comObject WScript.Shell;" ^ "$Shortcut = $WshShell.CreateShortcut('!shortcutpath!\Zenless Zone Zero - ZZZ.lnk');" ^ - "$Shortcut.TargetPath = '!protocol!';" ^ - "$Shortcut.Arguments = '!args! \"Zenless Zone Zero\"';" ^ + "$Shortcut.TargetPath = '!protocol!!args! \"Zenless Zone Zero\"';" ^ "$Shortcut.IconLocation = '!collapse!\!iconpath!\icon-zenless.ico';" ^ "$Shortcut.Save()"