Browse Source

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

gifur 5 years ago
parent
commit
739922031b
1 changed files with 1 additions and 1 deletions
  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