scrcpy/data/scrcpy-noconsole.vbs
2021-03-16 21:04:04 +01:00

8 lines
212 B
Plaintext

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