Need DOS Command to close all active windows (Apps + Files) in XP

  • Thread starter Thread starter MyMusicTrade
  • Start date Start date
M

MyMusicTrade

Good day,

I'd like to create a batch file that will close all active windows
(applications and files). Can anyone help?

I'm running on a WIN XP.

Thank you,

Ed
 
you can run this script

--minimize_all.js--cut here---
var shell = new ActiveXObject("Shell.Application");
shell.MinimizeAll();
--cut here---

--min.bat---cut here--
start c:\minimize_all.js
--cut here--

--Undo_minimize_all.js--cut here---
var shell = new ActiveXObject("Shell.Application");
shell.UndoMinimizeAll();
--cut here---
 
Back
Top