Ver código fonte

Z991239-385 #comment 优化 spexplorertest.vbs脚本

gifur 5 anos atrás
pai
commit
739922031b
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      addin/startup_scripts/spexplorertest.vbs

+ 1 - 1
addin/startup_scripts/spexplorertest.vbs

@@ -7,7 +7,7 @@ Run bin_path
 Sub Run(ByVal sFile)
 Dim shell
 	Set shell = CreateObject("WScript.Shell")
-	shell.Run Chr(34) & sFile & Chr(34), 1, false
+	shell.Run sFile, 1, false
 	Set shell = nothing
 End Sub