Remote install through WMI

  • Thread starter Thread starter Alexander Rudyk
  • Start date Start date
A

Alexander Rudyk

I need to create installation program that installs my components to
hosts inside Windows domain. No my software previously installed on
these hosts. In ideal case user only selects hosts from domain within
my program and click on install button. User have domain
administarator priviliges. My component is a Windows service.

Is WMI technology appropite for such task?
 
I usually use a share and script to copy the install file locally and do a
remote execute.

This works as long as the setup file has a /q switch to prevent prompts and
messages. Unfortunately some setup file require a full profile to run
correctly.

When I have an MSI file or feel like taking the time to create a ZAP file I
usually use GP to do remote installs. This give you the option to let the
user interact with the install and enter personal preferences.
 
Back
Top