PostgreSQL을 설치할 수 없음 : Windows XP에서 Microsoft VC ++ 런타임 설치 프로그램을 실행하는 동안 오류가 발생했습니다.
공식 사이트에서 설치 프로그램 postgresql-9.0.1-1-windows.exe를 다운로드하고 실행 한 후 오류가 발생했습니다. Microsoft VC ++ 런타임 설치 프로그램을 실행하는 동안 오류가 발생했습니다.
이 오류 메시지의 원인을 아는 사람을 도와주세요 : Windows XP, SP3, Dell Inspiron 1501, 프로세서 : AMD Sempron 3500+
이 문제가 발생할 수있는 이유 중 하나는 설치 프로그램이 현재 사용중인 것보다 이전 버전의 VC ++ 런타임을 설치하려고하기 때문입니다.
사용자의 임시 디렉토리 (예 :)에있는 다음 설치 로그를 참조하십시오 dd_vcredist_amd64_20190214193107.log
.
[20C0 : 20E4] [2019-02-14T19 : 31 : 07] e000 : 오류 0x80070666 : 최신 버전이 설치된 경우 제품을 설치할 수 없습니다.
해결 방법 은 다음 --install_runtimes
옵션 을 사용하여 런타임이 설치되지 않도록하는 것입니다.
postgresql-9.6.12-1-windows-x64.exe --install_runtimes 0
- 다운로드 한 파일의 바로 가기 만들기
- 바로 가기를 마우스 오른쪽 버튼으로 클릭-> 속성-> 바로 가기 추가 --install_runtimes 0 파일 경로 끝에.
exe 파일의 바로 가기를 만듭니다.
바로 가기를 마우스 오른쪽 버튼으로 클릭-> 대상 경로 끝에 추가
--install_runtimes 0 (eg:postgresql-9.3.1-1-windows-x64.exe --install_runtimes 0)
저장하고 실행
exe 파일의 바로 가기를 만듭니다. 바로 가기를 마우스 오른쪽 버튼으로 클릭-> 대상 경로 끝에 추가 --install_runtimes 0 (예 : postgresql-9.3.1-1-windows-x64.exe --install_runtimes 0) 저장하고 실행합니다. :)
비슷한 문제가 있었고이 포럼 게시물의 Garrett_H에서 저에게 도움이되는 수정 사항을 찾았습니다.
http://forums.enterprisedb.com/posts/list/1747.page#6180
% windir % \ inf \ wsh.inf 파일로 이동하여 마우스 오른쪽 버튼을 클릭하고 '설치'를 선택합니다.
postgresql 설치 프로그램을 다시 실행하십시오.
Windows XP Pro를 실행 중이고 postgresql-8.3.17-1-windows.exe
. 원래 다음과 같은 오류가 발생했습니다.
Microsoft C ++ 런타임 설치 프로그램을 실행하는 동안 오류가 발생했습니다.
내 경우에는 postgresql-11.0-1-windows-x64.exe
windows10 에 설치할 때도 같은 문제에 직면했습니다. 방금 Microsoft Visual C ++ 재배포 가능 패키지 (32 비트 및 64 비트 모두에 대한 최신 버전)를 제거한 다음 postgresql-11.0-1-windows-x64.exe
다시 설치하려고 시도했는데 저에게 효과적이었습니다.
관리자로 설치해보십시오 (관리자 권한으로 실행 사용). 버전 9.0에서 PostgreSQL은 Windows 관리자로 설치할 수 있습니다. :)
WSH가 활성화되어 있는지 확인하십시오. 활성화되지 않은 경우. 여기에 세부 정보 : http://1stopit.blogspot.com/2011/01/postgresql-83-and-84-fails-to-install.html
Take special care that your Windows user's folder name does not contain spaces, the PostgreSQL (as of version 9.2.2.1) handles that poorly. If I use this account on WinXP, installation fails with the "An error occurred executing the Microsoft C++ runtime installer" message:
"C:\Documents and settings\Jimmy (admin)"
But runs just fine with this:
"C:\Documents and settings\Jimmy-admin"
The spaces in "Documents and settings" don't seem to bother the installer. Go figure.
Go to file %windir%\inf\wsh.inf, right click and select 'Install'
re-run postgresql installer
This works on Windows XP with PostgreSQL 8.4.17-1
First download and install virtual c++ from microsoft website, then run the installation from command with --install_runtimes 0
I too faced the same issue. I fixed it in the following way:
- I visited the below site: https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
- Choose the Download button under PostgreSQL Version 11.1 for Windows x86-64.
In one word, just try to install the latest version.
The Windows Scripting Host is unable to execute VBscripts. This can occur if the scripting host is disabled (which is unusual), or if the installation is broken. A sign of this problem is a message like
CScript Error: Can't find script engine "VBScript" for script "C:....
It can often be resolved by re-registering the VBScript interpreter, click Start -> Run and enter the following and click OK:
regsvr32 %systemroot%\system32\vbscript.dll
PostgreSQL 버전 11.1을 설치하는 동안 동일한 문제가 발생했습니다. Microsoft VC ++를 제거하고 설치 프로그램을 다시 실행해야했습니다. 필요한 VC ++를 다운로드하고 성공적으로 설치되었습니다.
'programing' 카테고리의 다른 글
Ubuntu에 설치된 OpenCV 버전 찾기 (0) | 2021.01.16 |
---|---|
배열에서 모든 거짓 값 제거 (0) | 2021.01.16 |
MySQL-Entity : 'TableDetails'테이블의 'IsPrimaryKey'열 값이 DBNull입니다. (0) | 2021.01.16 |
프로그래밍 방식으로 iPhone 인터페이스 방향을 결정하는 방법은 무엇입니까? (0) | 2021.01.16 |
Django 관리자 이미지 필드에서 이미지 표시 (0) | 2021.01.16 |