Internal Error Please contact Administrator (3005)
This error used to see when deploy ZCC con user machines. In most cases this issue was not solved with retry, connect from another internet, and restart the machine.
This seems a WMI Error.
Windows Management Instrumentation (WMI) is a set of specifications from Microsoft for consolidating the management of devices and applications in a network from Windows computing systems. WMI provides users with information about the status of local or remote computer systems.
Put below script into a *.bat file and run it as Administrator. OR check with local IT and do the WMI cleanup.
-------------------------------------------------------------------------
@echo off
sc config winmgmt start= disabled
net stop winmgmt /y
%systemdrive%
cd %windir%\system32\wbem
for /f %%s in ('dir /b *.dll') do regsvr32 /s %%s
wmiprvse /regserver
winmgmt /regserver
sc config winmgmt start= auto
net start winmgmt
for /f %%s in ('dir /s /b *.mof *.mfl') do mofcomp %%s
----------------------------------------------------------------------------------------------------
After executing the WMI cleanup script user were able to connect successfully.