Non-Modal Notification Box from batch script - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:06:37Zhttp://stackoverflow.com/feeds/question/756752http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/756752/non-modal-notification-box-from-batch-script0Non-Modal Notification Box from batch scriptpc1oad1etter2009-04-16T15:47:09Z2009-09-28T17:00:02Z
<p>I would like to have a non-modal alert box called form a batch file. Currently I am using vbscript to create a modal alert box:</p>
<pre><code>>usermessage.vbs ECHO WScript.Echo^( "Generating report - this may take a moment." ^)
WSCRIPT.EXE usermessage.vbs
</code></pre>
<p>But I would like to proceed with the script (generating the report) without waiting for user interaction. How can I accomplish this? I don't care if it's vbscript or not - I just want it to work from my batch script (in Windows XP).</p>
http://stackoverflow.com/questions/756752/non-modal-notification-box-from-batch-script/788053#7880530Answer by RBerteig for Non-Modal Notification Box from batch scriptRBerteig2009-04-25T01:43:24Z2009-04-25T06:16:40Z<p>A simple answer that has no new requirements over your current trick is to use the <code>start</code> command to detach the script from the batch file execution.</p>
<p>That might look something like:</p>
<pre>
>usermessage.vbs ECHO WScript.Echo^( "Generating report - this may take a moment." ^)
start WSCRIPT.EXE usermessage.vbs
echo This text is a proxy for the hard work of writing the report
</pre>
<p>where the only difference is using <code>start</code> to run <code>wscript</code>. This does suffer from the defect that it leaves a temporary file laying around in the current directory, and that the box does need to be eventually manually dismissed.</p>
<p>Both issues are easy to handle:</p>
<pre>
@echo off
setlocal
set msg="%TMP%\tempmsg.vbs"
ECHO WScript.Echo^( "Generating report - this may take a moment." ^) >%msg%
start WSCRIPT.EXE /I /T:15 %msg%
echo This text is a proxy for the hard work of writing the report
ping -n 5 127.0.0.1 >NULL
del %msg% >NUL 2>&1
</pre>
<p>Here, I move the temporary script over to the <code>%TMP%</code> folder, and remember to delete it when we're done with it. I used an <code>echo</code> and a <code>ping</code> command to waste some time to demonstrate a long process running. And, I used the <code>/I</code> and <code>/T</code> options to <code>wscript</code> to make certain that the script is run "interactively" and to set a maximum time to allow the script to run.</p>
<p>The <code>@echo off</code> and <code>setlocal</code> make it look cleaner when running at a command prompt and prevent it from leaving the name `%msg% in the prompt's environment.</p>
<p><strong>Edit:</strong> Johannes Rössel's criticism of <code>setlocal</code> in the comments is incorrect. If this is invoked at a command prompt, without the <code>setlocal</code> the variable msg will be visible to the prompt and to other batch files and programs launched from that prompt. It is good practice to use <code>setlocal</code> to isolate local variables in a batch file if one is actually writing anything more than a throw-away script.</p>
<p>This can be easily demonstrated:</p>
<pre>
C:> type seta.bat
@set A=SomeValue
C:> set A
ALLUSERSPROFILE=C:\Documents and Settings\All Users
APPDATA=C:\Documents and Settings\Ross\Application Data
C:> seta.bat
C:> set A
A=SomeValue
ALLUSERSPROFILE=C:\Documents and Settings\All Users
APPDATA=C:\Documents and Settings\Ross\Application Data
C:>
</pre>