Utility recomendation

  • Thread starter Thread starter Den
  • Start date Start date
D

Den

Group

Can anyone recommend a shareware / public domain utility (or other
technique) that I can use to control a command window from within a command
file.

Specifically, I want to have a batch file hide (not minimize) it's own
window.

Cheers

Den
 
--go.vbs--
set shell=createobject("wscript.shell")
shell.run "c:\mybat.bat" , 0, false
--end file--cut here-

--mybat.bat--
dir > c:\list.txt
start notepad c:\list.txt
--end file--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top