Hello,
I have this macro (I'am trying remove all " from some txt file):
Set objshell = CreateObject("WScript.Shell")
objshell.Run "%comspec% /c gsar.exe -s"""""" -r -o ""C:\Program
Files\Test\test.txt""", 1, True
gsar.exe is in c:\windows and it works, but when I edit this macro like
that:
Set objshell = CreateObject("WScript.Shell")
GsarPath = "gsar.exe is ingsar.exe"
objshell.Run "%comspec% /c """ & GsarPath & """ -s"""""" -r -o
""C:\Program Files\Test\test.txt""", 0, True
gsar.exe is in gsar.exe is in, it dosnt work.
Can you help me?
Thanks
Tom
Bookmarks