diff --git a/installAPK.vbs b/installAPK.vbs index c4be4d7..bb804f0 100644 --- a/installAPK.vbs +++ b/installAPK.vbs @@ -17,8 +17,9 @@ Else If (Len(APKFile) = 0) Then WScript.Quit Else + FinalAPK = chr(34) & APKFile & chr(34) Set objShell = CreateObject("Wscript.Shell") - Item = "installAPK.bat " & APKFile + Item = "installAPK.bat " & FinalAPK objShell.Run Item End If End If