e*********s 发帖数: 200 | 1 Congratulations :-)
Its a good idea and sells for the low price :-)
About bulk installation, you can use SMS (system management server) with WMI
scripts to bulk install the software to all domain computers, but you need:
1. Make sure your setup is in Windows Installer format and can be run in
silent mode
2. write some WMI scripts and put them on their domain controller (or each
master domain node in their domain forrest)
3. Make sure the one who's going to install the software log in as a domain | e*********s 发帖数: 200 | 2 I am not sure about Win ME, it is not based on NT and may not have the
full-fledged WMI support.
Here is a sample WMI script (assuming you are familiar with WMI scripting) if
your client does not have SMS server
'****************************************
dim aRemotePc
Const wbemImpersonationLevelDelegate = 4
Const ThisDomainName = "ThisDomain"
aRemotePc = "remotePC1"
Set objWbemLocator = CreateObject("WbemScripting.SWbemLocator")
Set objConnection = objwbemLocator.ConnectServer _
(aRemotePc, |
|