(imported topic written by gage)
Has anyone used BF to deploy the DST Outlook tool to clients?
(imported topic written by gage)
Has anyone used BF to deploy the DST Outlook tool to clients?
(imported comment written by BenKus)
Hey gage,
Yes. Check here:
http://forum.bigfix.com/viewtopic.php?id=568
Ben
(imported comment written by mmurty)
Relevance:
((exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry) and (exists value “DisplayName” of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry) and (value “DisplayName” of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry as string = “Time Zone Data Update Tool for Microsoft Office Outlook”))
Action:
download http://XX.XX.XX.XX:52311/Uploads/8c925eaefb98e51977c01f1410ea8daf8589509d/bigB88.tmp
continue if { (size of it = 165 and sha1 of it = “8c925eaefb98e51977c01f1410ea8daf8589509d”) of file “bigB88.tmp” of folder “__Download”}
extract bigB88.tmp
wait “{pathname of system folder & “\cmd.exe”}” /Q /C “{(pathname of client folder of current site) & “__Download\tzmv.bat”}”
You can modify it as need be. This is quite generic.
I put the outlook tool in a batch file and used it to deploy and run on the clients. Remember the outlook tool can be run in a passive mode only for the default profile. If the user has multiple profiles, it has to be run in an interactive mode
Madhu
(imported comment written by mmurty)
I accidently posted my testing fixlet. Here is the another one that i am using in production and that works.
(name of operating system = “Win95” OR name of operating system = “Win98” OR name of operating system = “WinME” OR name of operating system = “WinNT” OR name of operating system = “Win2000” OR name of operating system = “WinXP” OR name of operating system = “Win2003”) AND (exists regapp “Outlook.exe”) AND ((not exists key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry) OR (not exists value “DisplayName” of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry) OR (value “DisplayName” of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall{95120000-0038-0409-0000-0000000FF1CE}” of registry as string != “Time Zone Data Update Tool for Microsoft Office Outlook”)) and exists current userActions
Action1
download http://x.x.x.x:52311/Uploads/263157f2816c99b837354462b4a36c75cbcb9416/big7A.tmp
continue if { (size of it = 8438220 and sha1 of it = “263157f2816c99b837354462b4a36c75cbcb9416”) of file “big7A.tmp” of folder “__Download”}
extract big7A.tmp
wait __Download\tzmove.exe /quiet
wait __Download\RunAsCurrentUser-2.0.exe --w “C:\Program Files\Microsoft Office\Office12\Office Outlook Time Zone Data Update Tool\tzmove.exe” /quiet
Madhu