Domino-Dienste werden nicht nach der Installation automatisch ausgeführt, sondern man muss es manuell ausführen und konfigurieren.
hier ist mein Skript:
path = "C:\Program Files\IBM\Domino\nserver.exe"
set cmd = CreateObject("Wscript.Shell")
set fso = CreateObject("Scripting.FileSystemObject")
set Env = cmd.Environment("PROCESS")
Env("SEE_MASK_NOZONECHECKS") = 1
if (fso.FileExists(path)) Then
'Domino ist schon installiert
Wscript.Quit
Else
fso.CopyFolder "\\Server\InstallSource\Domino_Install" , "C:\Domino_Install" , True
Set objLog = fso.CreateTextFile("C:\Domino_Install\log.txt")
logging = now() & ": Installation files copied !"
objLog.writeLine logging
cmd.Run "C:\Domino_Install\setup.exe -silent -options c:\Domino_install\response.txt", 0, True
logging = now() & ": Domino Install Done !"
objLog.writeLine logging
cmd.Run "C:\Domino_Install\FixPack\domino901FP3_w64.exe -NOUSER", 0, True
logging = now() & ": FixPack Install Done !"
objLog.writeLine logging
cmd.Run """C:\Program Files\IBM\Domino\jvm\bin\java.exe"" ""-cp C:\Domino_Install\LanguagePack\DomLP901_de.jar run -silent -G licenseAccepted=true -W cmd.silent=C:\Domino_Install\LanguagePack\LPSilent.ini""", 0, True
logging = now() & ": Languagepack Install Done !"
objLog.writeLine logging
End if
Gruß
Saeed