Office 2007 GPO Deployment

Status
Not open for further replies.

Boonie45

Solid State Member
Messages
11
Not sure if this has been resolved anywhere or not, but I'm having one issue in using GPO to deploy Office 2007.

When I have the GPO uninstall Office 2003, then install 2007, I get an error that says the ose00000.exe is not responding. The Office 2007 install then stalls. If the machine is then restarted, the install goes through, and all is fine.


Anyone have any tips/suggestions?


Thanks!
 
Everything is working correctly expect for the fact that the machines arent rebooting during the installation? If thats the case, why dont you just add a reboot to the script.

<code>
Sub ShutDown()
Dim Connection, WQL, SystemClass, System

'Get connection To local wmi
Set Connection = GetObject("winmgmts:root\cimv2")

'Get Win32_OperatingSystem objects - only one object In the collection
WQL = "Select Name From Win32_OperatingSystem"
Set SystemClass = Connection.ExecQuery(WQL)

'Get one system object
'I think there is no way To get the object using URL?
For Each System In SystemClass
System.Win32ShutDown (2)
Next
End Sub
</code>
 
Status
Not open for further replies.
Back
Top Bottom