PostgreSQL 9 install on Windows: “Unable to write inside TEMP environment path.”

后端 未结 22 2099
时光说笑
时光说笑 2020-12-15 04:30

I am attempting to install PostgreSQL 9 (postgresql-9.0.3-1-windows.exe) on my WinXP machine and get the following error at the start:

相关标签:
22条回答
  • 2020-12-15 04:41

    In my case I've downloded McAfee removal tool MCPR (McAfee Consumer Product Removal) which cleaned up some tailings after McAfee uninstallation.

    Some registry entries which previously had InprocServer32 values like 'c:\program files\common files\mcafee\systemcore\...' changed back to its original values:

    HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32\(default) = vbscript.dll
    HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Wow6432Node\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}\InprocServer32\(default) = C:\Windows\SysWow64\vbscript.dll
    

    After that I successfully installed PostgreSQL 9.3

    0 讨论(0)
  • 2020-12-15 04:42

    In my case it was another application that caused the problem. Not Notepad++. To others who encounter this problem, you can diagnose it by first deleting all files in C:\Documents and Settings\UserName\Local Settings\Temp so that you'll be able to find the bitrock_installer.log easily when you try installing postgresql again and view the instructions in it. Changing the (Default) key in the HKEY_CLASSES_ROOT, .vbs section of the registry to VBSFile solved it.

    0 讨论(0)
  • 2020-12-15 04:43

    After disabling Smad Av, it still did not work. So, I right clicked on the Smad Av tray icon and I selected 'Allow Windows-Script & Office-Macro (Permanent)' and it worked.

    0 讨论(0)
  • 2020-12-15 04:47

    First go to registry Editor then choose HKEY_CURRENT_USER > software > Microsoft > Windows script host > setting > default > add value data to 1 and click Ok. done!

    0 讨论(0)
  • 2020-12-15 04:48

    All the above did not work for me. I was getting an error like:

    Script output: CScript Error: Windows Script Host access is disabled on this machine. Contact your administrator for details.

    so after a couple of googling i found the solution: Navigate to the following key:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Script Host\Settings

    In the right panel, you will see Enabled. If you see the entry 0, it means that the Windows Script Host access is disabled on your Windows machine.

    Double Click on it and give it Value Data 1 to enable it.

    A value of 1 will enable Windows Script Host A value of 0 will disable Windows Script Host.

    for windows 10 navigate to

    HKEY_CURRENT_USER\Software\Microsoft\Windows Script Host\Settings

    0 讨论(0)
  • 2020-12-15 04:49

    If anyone else is searching for information on this and doesn't have any luck here, you might want to look at:

    http://wiki.postgresql.org/wiki/Troubleshooting_Installation

    For follow-ups to the mailing list please read:

    http://wiki.postgresql.org/wiki/Guide_to_reporting_problems

    0 讨论(0)
提交回复
热议问题