fixup! Pass scrcpy-noconsole arguments through to scrcpy

This commit is contained in:
Romain Vimont 2021-01-24 11:52:34 +01:00
parent 8f283dc800
commit 6b8f3ef651

View File

@ -1,7 +1,7 @@
strCommand = "cmd /c scrcpy.exe"
For Each Arg In WScript.Arguments
strCommand = strCommand & " """ & Arg & """"
strCommand = strCommand & " """ & replace(Arg, """", """""""""") & """"
Next
CreateObject("Wscript.Shell").Run strCommand, 0, false