Home › Forums › General XMetaL Discussion › Is there a way to close XMetal 7 Author via command line? › Reply To: Is there a way to close XMetal 7 Author via command line?
Reply to: Is there a way to close XMetal 7 Author via command line?
March 7, 2014 at 9:23 pmXMetaL is a COM server, so it's possible to run a script that connects to a running instance.
Try putting the following in a file:
[code]var xm = new ActiveXObject(“XMetaL.Application”);
xm.Quit();[/code]
and use
[code]cscript file[/code]
to run it.