Lotus Notes 8.5.2 Standard

Antworten
stitzedv
Beiträge: 11
Registriert: 04 Mai 2009, 19:01

Lotus Notes 8.5.2 Standard

Beitrag von stitzedv »

Hat jemand Erfahrung bei der Erstellung von Opsi-Paketen für Lotus Notes 8.5.2 Standard unter Windows XP und Windows 7 und der Integration von Lotus Notes FP3 ?
Ich habe gerade meine ersten Opsi Pakete mit Hilfe der WinstScripts aus dem Opsi hinbekommen (Firefox 5.01).
Bei Lotus Notes habe ich keine fertigen WinstScripts gefunden.
Muss dort mit AutoIT die Installation aufgezeichnet werden ?

Würde mich sehr über "Schützenhilfe" freuen :D
tomz
Beiträge: 79
Registriert: 17 Feb 2011, 15:46

Re: Lotus Notes 8.5.2 Standard

Beitrag von tomz »

Hier unser einfach gehaltenes Script:

Code: Alles auswählen

[Initial]
; Script erstellt von Admin
Message=installiere Notes 8.5.2...
StayOnTop=false
LogLevel=2
ExitOnError=false
ScriptErrorMessages=on
TraceMode=off
 
[Aktionen]
WinBatch_install
;Files_Copy_AllUsers /AllNtUserProfiles
  
[WinBatch_install]
taskkill /f /im nlnotes.exe /im notes.exe
msiexec /i "%ScriptPath%\notes\Lotus Notes 8.5.2.msi" SETMULTIUSER=1 /qb"


;[Files_Copy_AllUsers]
;copy "%ScriptPath%\Lotus Notes.lnk" "%UserProfileDir%\Desktop\"
;copy "%ScriptPath%\Lotus Notes.lnk" "%UserProfileDir%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\"
Fix Pack 3:

Code: Alles auswählen

[Initial]
; Script erstellt von Admin
Message=installiere Notes 8.5.2 FP3...
StayOnTop=false
LogLevel=2
ExitOnError=false
ScriptErrorMessages=on
TraceMode=off
 
[Aktionen]
WinBatch_install
 
[WinBatch_install]
taskkill /f /im nlnotes.exe /im notes.exe
%ScriptPath%\fp3\setup.exe /s /v"/qb"
Antworten