I want to make it invisible, because I want to make this acton(opening a Excel file) as a scheduled task(which will run everyday) in Virtual Machine. Some others may use that Virtual Machine, so it will appear before them everyday. It will be better if it open(run) in backend. My requirment is to hide that Excel application whis is opening. when it opens it should not appear before users.
I can explain you with a below example clearly.
Code:
var myApp = new ActiveXObject("Excel.Application");
myApp.visible = false;
myApp.workbooks.open("C:\Spreadsheet.xls");
Since I have mentioned "myApp.visi ble = false" the opening of Excel file will be invisible.
In the same way, I want to do in shell, Can yo help me?
Leave a comment: