escrcpy/resources/core/scrcpy-noconsole.vbs
2023-09-15 19:32:13 +08:00

8 lines
205 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