Compare commits

..

1 Commits
1.71 ... 1.72

Author SHA1 Message Date
Riley McArdle
da39c03a6f Fix issue MR-592 - Unable to run VBS script as an external tool
Fix issue MR-596 - Incorrect escaping of quotation marks in external tool arguments
2013-11-13 18:20:52 -06:00
4 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
1.72 (2013-11-13):
Fixed issue MR-592 - Unable to run VBS script as an external tool
Fixed issue MR-596 - Incorrect escaping of quotation marks in external tool arguments
1.71 (2013-10-29):
Fixed issue MR-574 - Crash when retrieving RDP session list if eolwtscom.dll is not registered
Fixed issue MR-578 - Connections file is reset

View File

@@ -87,9 +87,9 @@ Namespace Connection
Return Nothing
End If
IntAppProcessStartInfo.UseShellExecute = False
IntAppProcessStartInfo.UseShellExecute = True
IntAppProcessStartInfo.FileName = _IntAppPath
IntAppProcessStartInfo.Arguments = CommandLineArguments.EscapeBackslashes(Arguments)
IntAppProcessStartInfo.Arguments = Arguments
IntAppProcess = Process.Start(IntAppProcessStartInfo)
IntAppProcess.EnableRaisingEvents = True

View File

@@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.71.*")>
<Assembly: AssemblyVersion("1.72.*")>
<Assembly: NeutralResourcesLanguageAttribute("en")>

View File

@@ -119,10 +119,10 @@ Namespace Tools
Dim process As New Process()
With process.StartInfo
.UseShellExecute = False
.UseShellExecute = True
.FileName = ParseText(_FileName)
.Arguments = CommandLineArguments.EscapeBackslashes(ParseText(_Arguments))
.Arguments = ParseText(_Arguments)
End With
process.Start()