Link to home
Start Free TrialLog in
Avatar of rrangel8
rrangel8

asked on

VBSCRIPT TO FINALIZE INSTALL

I am vbscript illiterate, need help otherwise i can waste weeks figuring this out. Here is the problem. I am packaging a software. The problem is that the package shows complete in under status using Altiris deployment even though it is still running on the remote machine. I need the script to poll the setup.exe and send a statement back to me when the setup.exe completes. Any ideas..pointers....or better yet a script that does it for me.
Avatar of Shane Russell
Shane Russell
Flag of United Kingdom of Great Britain and Northern Ireland image

If the setup process automatically closes on the remote machine then you can use WMI with the win32_process class to check if setup.exe is a running process on the remote machine - assuming it is on a local network ( secure ) and also that the remote machine allows wmi through the firewall - as there were some security issues with wmi.

Might also need elevated WMI connection which will include logon credentials which would if included in the vb script code be another security risk / thing ?

Not being familiar with the deployment method you use am not sure if this would be a valid method to use.
ASKER CERTIFIED SOLUTION
Avatar of RobSampson
RobSampson
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rrangel8
rrangel8

ASKER

thx for assist. I will test these out Monday.