We have had some reports of this error message occurring whilst installing Vault Server 2012.
Error 1920. Service 'Autodesk Data Management Job Dispatch' (Autodesk Data Management Job Dispatch) failed to start. Verify that you have sufficient provilieges to start system services.
This one is tricky to troubleshoot remotely as it seems to be linked to the network card itself. Moreover, we have not yet been able to reproduce the issue. It seems linked to a currently unknown security setting.
The only confirmed workaround so far is to unplug the network cable during installation. Not easy to do during a remote installation.
Another thought would be to update the network card drivers or compare the NIC settings with a working machine. It might be a process of elimnation to find out what is causing the error.
UPDATE 2/8/2011
Nick Hall gave me this script that helps disable and enable the network remotely.
netsh interface set interface Team1 DISABLED
net stop "Autodesk Data Management Job Dispatch"
net start "Autodesk Data Management Job Dispatch"
netsh interface set interface Team1 ENABLED
pause
You can delay the restart of the network card by adding an additional line in the middle.
ping 1.1.1.1 -n 1 -w 60000 >NUL (assuming that 1.1.1.1 is not a valid IP address)
So if you get the error message click Retry, then immediately run this script.
netsh interface set interface Team1 DISABLED
net stop "Autodesk Data Management Job Dispatch"
ping 1.1.1.1 -n 1 -w 60000 >NUL
net start "Autodesk Data Management Job Dispatch"
netsh interface set interface Team1 ENABLED
Pause
Of course I will update this posting when we get more information.
UPDATE 14/10/2011
Fantastic tip\comment from Hans Veer below
Internet Explorer –> Tools –> Internet Options –> Advanced tab
In the Security section, uncheck or clear the box for two options mentioned below:
Check for publisher’s certificate revocation
Check for server certificate revocation
Subscribe