Einzelnen Beitrag anzeigen

Alter Mann

Registriert seit: 15. Nov 2003
Ort: Berlin
947 Beiträge
 
Delphi 10.2 Tokyo Professional
 
#2

Re: WMI Remote Softwareinstallation

  Alt 11. Okt 2004, 20:06
Hallo Christof,

Erfahrung habe ich noch keine damit, aber hier ein Beispiel:

Code:
Installing Software on a Remote Computer

Description
Installs a hypothetical software program (using a Windows Installer package) on a remote computer. Requires delegation for the computer and user accounts involved in the procedure.

Supported Platforms

Windows Server 2003    Yes, with the Windows Installer WMI provider installed
Windows XP            Yes
Windows 2000           Yes
Windows NT 4.0         Yes, with WMI installed
Windows 98             Yes, with WMI installed

Script Code

Const wbemImpersonationLevelDelegate = 4
Set objWbemLocator = CreateObject("WbemScripting.SWbemLocator")
Set objConnection = objwbemLocator.ConnectServer _
    ("WebServer", "root\cimv2", "fabrikam\administrator", _
     "password", , "kerberos:WebServer")
objConnection.Security_.ImpersonationLevel = wbemImpersonationLevelDelegate
Set objSoftware = objConnection.Get("Win32_Product")
errReturn = objSoftware.Install("\\atl-dc-02\scripts\1561_lab.msi",,True)
Wscript.Echo errReturn
für mehr Info empfehle ich den Anhang.
Angehängte Dateien
Dateityp: exe script_center_repository_658.exe (1,60 MB, 33x aufgerufen)
  Mit Zitat antworten Zitat