MW211 EXIT

devlog
PGSQL/インストールでランタイムエラー
2019年01月29日
PostgreSQLをWindows10にインストールしようとして
インストーラ(postgresql-9.6.11-1-windows-x64.exe)を起動したら
以下のエラーが出て進めなくなった。
  ┌────────────────────────────────────┐
  │Error                                                                   │
  ├────────────────────────────────────┤
  │There has been an error.                                                │
  │An error occured executing the Microsoft VC++ runtime installer.        │
  └────────────────────────────────────┘

これは、コマンドプロンプトを管理者権限で開き、インストーラにある場所へ移動し
「--install_runtimes 0」オプションとともに実行すれば回避できる。
┌──────────────────────────────────────┐
│> postgresql-9.6.11-1-windows-x64.exe --install_runtimes 0                  │
└──────────────────────────────────────┘
ランタイムはインストール済みだから(それに絡むいざこざは)回避すればよい
という理解でいいのかなぁ。
分類:PostgreSQL