[Date Prev][Date Next][Subject Prev][Subject Next][
Date Index][
Subject Index]
Re: vDosSet utility
- Subject: Re: vDosSet utility
- From: "Wengier W" dmarc-noreply@xxxxxxxx (Redacted sender "wengierwu" for DMARC)
- Date: Fri, 22 Jul 2016 20:29:13 +0000 (UTC)
Hi Carl,
In fact it can be even simpler. I think this will do it already:
ShellExecute($sExeFile, "", @ScriptDir)
Wengier
On Friday, July 22, 2016 4:13 PM, Wengier W wrote:
Hi Carl,
Thanks. It works. However, I noticed that there is always a flashing console window showing up after running the tool. Perhaps you can avoid this by changing the line from:
ShellExecute("cmd.exe", "/c cd/d " & @ScriptDir & " & start.exe _ " & $sExeFile)
To:
If FileChangeDir(@ScriptDir) Then ShellExecute("start.exe", "_ " & $sExeFile)
Wengier
On Friday, July 22, 2016 3:16 PM, Carl Distefano wrote: