Cannot download the latest sdk

Asked By 0 points N/A Posted on -
qa-featured

Hello,

 

I am trying to download the latest Intel perceptual computing SDK but it fails giving me the following output (snapshot attached) Installation Aborted: Failed to download the configuration files My system information: Windows 7 64bit, Intel Xeon CPU E5440 @ 2.83 GHz with 4 GB RAM. What may be causing this error? Have any idea about this issue?

Error:

Intel® Perceptual Computing SDK 2013 Installation aborted; Failed to download Configuration files.

SHARE
Answered By 5 points N/A #176849

Cannot download the latest sdk

qa-featured

Hi,

I suggest you download the full offline installer by clicking here. There might be conflict with your firewall while connecting to the Intel server or writing files from the internet directly to your local folder is blocked by your antivirus.

After download, save the installation files to the SDK folder found in the installation directory of Intel.

Sometimes, there are issues with Intel server so here is the backup server download.

There is also a possibility that the setup is interrupted during installation. For instance, your PC shut down in the midst of installing. I recommend you cleanup unfinished setup files with System Utilitiy tools then, run the script attached to renew the state of Intel.

After you run the script, reboot then reinstall.

 

 

—————

 

import _winreg
import subprocess
 
class PCSDKUninstall:
    SUBKEYS = [
        r"SOFTWAREIntelPCSDK",
        r"SOFTWAREIntelPCSDK_DEV",
        r"SOFTWAREWow6432NodeIntelPCSDK",
        r"SOFTWAREWow6432NodeIntelPCSDK_DEV",
        r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentsdemo_glassballs",
        r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentsdemo_head",
        r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentstotalimmersion"
r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentsdemo_augmentedfarm"
r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentsdemo_remotecontrol"
r"SOFTWAREWow6432NodeIntelPCSDK_DEVComponentsextradoc"
    ]
    KEYNAME = "ProductCode"
    def keysWalk(self):
        self.SUBKEYS.reverse()
        for keyName in self.SUBKEYS:
            try:
                hkey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, keyName)
                try:
                    (kVal, tType) = _winreg.QueryValueEx(hkey, self.KEYNAME)
                finally:
                    _winreg.CloseKey(hkey)
            except WindowsError:
                print self.KEYNAME + " is not placed in " + keyName
                continue
            retVal = subprocess.call(["msiexec", "/x", str(kVal)])
        print "Finished"
 
if __name__=="__main__":
    app = PCSDKUninstall()
    app.keysWalk()
———————————————-

Note: Remove the dashes before running the script.

Related Questions