Postgresql error running icacls

I am getting the following error when trying to install PostgreSQL on my Windows 10 Machine (x64). Can anyone help me troubleshoot? Many thanks! Error screenshot below: https://i.stack.imgur.com/b...

I am getting the following error when trying to install PostgreSQL on my Windows 10 Machine (x64). Can anyone help me troubleshoot? Many thanks! Error screenshot below:

View post on imgur.com

asked Aug 27, 2019 at 14:11

sarahofcamb's user avatar

This happened to me as well. Turned out I couldn’t use a Domain user (even though it is an admin on the local machine). I had to log in as a local admin user, and then the installation worked. This is very weird.

answered Sep 15, 2019 at 11:22

zmbq's user avatar

zmbqzmbq

6862 gold badges6 silver badges14 bronze badges

I tried installing Postgresql-9.5.19.1-windows-x64 version (downloaded from official page) on Windows 10 x64 and it gave me the same error. I tried executing it with administrator privileges, giving permissions to the temp folder, moving temp folder to another location but nothing worked…

The solution for me was using a different version of 9.5: PostgreSQL-9.5.2-1-windows-x64.

answered Sep 17, 2019 at 14:34

Consultant's user avatar

This error happened to me to on PostgreSQL version 11.2

I elaborated in a Stackoverflow post as answer to ‘Is the server running on host “localhost” (::1) and accepting TCP/IP connections on port 5432?’ a solution. I mentioned this question thread with answers as being the solution to this error.

But in short it is what you all are saying: reinstall.

But it can be the same or a different version in my experience.

My explanation:

The general thought/assumptions:

It looks like it is pgAdmin (probably version 4) or your admin rights or one of the files mentioned above (postgresql.conf and/or pg_hba.conf).

I had the same error and even a password error (for the correct password) after being a step further by some todo’s and fixes that helped other people in previous versions;

But none of them worked for postgresql version 12.3 and/or postgresql version 11.8

Solution versions:

The only thing that helped after two hours was:
As explained in this post: ‘PostgreSQL Install fail on Windows 10 (icalcs error/acces denied)’ on the superuser forum of StackExchange:

  • Uninstall en reinstall postgresql. The official version provided by EDB through this link: postgresql.org/download; Or try a different version if you are sure this one doesn’t work for you. Therefor head to the ‘File Browser’of Postgresql: here
  • After reinstall, start pgAdmin from the Start Menu (scroll for the folder and the correct related pgAdmin; an older version could still hang around in the shortcuts and won’t start).

Note: You can keep your data map so nothing is lost!

In my case e.g.: I removed the /data folder from the (Windows 10) [Drive]/Program Files/PostgreSQL/11 and as soon as I uninstalled version 11.2 and reinstalled (earlier removed 12) version 12: when I started pgAdmin4 my former servers ([nameA] and [PostgreSQL 11] and databases ánd the new server [PostgreSQL 12] were there! And the connection was reestablished

Tried:

Earlier tried solutions that did not work in my case:

  • Question 37307346 «Is the server running on host localhost 1 and accepting tcp ip connections on port 5432?
  • Question 40532399 Unable to connect to server for postgres
  • Question 16904997 Connection refused pgerror postgresql and rails
  • Question 60532791 Timeout expired pgadmin unable to connect to server note: This was after semi solution of netstat running postgres service (port was not used before that solution; here listed as 4th item, item above).

answered Jun 17, 2020 at 22:47

sophievda's user avatar

If you have issues with permissions either after installations or after reinstalling postgres you might find help here.

Make sure you install the correct version for the data folder you have, you can check the version in that data folder under file named PG_VERSION.

  1. Install postgres with random data directory. If it doesn’t work with old data directory and you get errors about permissions or stuff like icacls then pick a fresh folder and proceed with this post.
  2. Go to registry editor and then find something like
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicespostgresql-x64-11 <- version you installed
    change imagepath to reflect the data directory
    "C:Program FilesPostgreSQL11binpg_ctl.exe" runservice -N "postgresql-x64-11" -D "{DATA_DIRECTORY like d:/db}" -w
  3. At this point the service might not even start, but check just in case it is magically working at this stage. It won’t log anything or throw any errors so don’t worry, if you do everything right it will work.
  4. Right click the data folder then go to Properites -> Security tab -> Advanced button
  5. Toggle the checkbox on the bottom «Replace all child object perm[..]»
  6. Press Add, and select principal on top, then type in the big box NETWORK SERVICE
    To make sure it works try pressing check names, it should underscore it. Then press OK, set all permissions to it. Then OK, OK, OK. You should leave the file properties approving everything.

If steps 4-6 throw out permissions errors read step 7 /

  1. Try running postgres. If for some reason you cant run postgres at this point. Then run command-line as an administrator, and type in icacls "{DATA_FOLDER}" /reset /T this will clear all the permissions that are there no matter what they are. Postgres install ought to be doing that but it’s bugged in some versions. As it was in mine.
  2. Now you can try running postgres service.
  3. At this point PG Admin didn’t really work but I managed to login using the psql.exe and I’ve dumped all the data. pg_dump -U {USERNAME} {DATABASE} > {FILENAME.EXT} Then I’ve uninstalled postgres, restarted PC, then installed the newest version and I’ve recovered the dump.

answered Dec 22, 2020 at 17:10

Ghandhikus's user avatar

Had the same problem, but I’m not comfortable downloading installers from unknown sources.

After quite some struggling (including run as different user, install from a session opned with a domain administrator account), the only thing that worked for me was to enable the local administrator command (net user administrator /active:yes), providing a password for it (net user administrator *) and then running the installer.

Hope this helps.

answered Sep 10, 2019 at 13:47

stefanu's user avatar

For me, problem was that some files inside Data folder of existing Postgres installation had cleared permissions & ownership information. I was able o fix the problem by going one level up above Data directory and re-setting the Owner of the child directories & files via standard Windows dialog. After that, re-running installer allowed icacls to set permissions & finish the installatio nsuccesfully.

answered Mar 19, 2020 at 5:50

Anatoly Alekseev's user avatar

Apparently this happens if you uninstall PostgreSQL and do not delete the «data» directory where your databases are stored. When you attempt to (re)install PostgreSQL, it fails to change permissions on that directory, because it already exists. I was able to work around this apparent bug in the installer by deleting all of C:Program FilesPostgreSQL manually. But that might not be an option if you have data in there that you haven’t backed up.

answered Mar 27, 2020 at 18:02

mayfiecs's user avatar

We had the same Problem today while upgrading from 12.1 to 12.3.
Installer (EnterpriseDB) stopped with the error while icacls — call because of missing rights…
We even ran it as local administrator.

After stopping the setup the pg — service was removed and rights in pg-data / base — folder were missing.
We run takeown /F d:PgData12* /R /A and startet the setup again. Then it worked without other problems.

answered Jun 11, 2020 at 6:05

thomas's user avatar

My solution was log in with the user caller admnistrator, can’t be other user with permissions, must be the user administrator

answered Jan 18, 2021 at 15:15

Clash's user avatar

I suspect a problem with user rights.
I was able to activate the Administrator account and perform the installation.

  1. cmd (Run as Administrator)

  2. net user administrator active: yes

  3. logout old Account and login Administrator

  4. install PostgreSQL

answered Mar 14, 2021 at 9:23

Vahap Karataş's user avatar

I am getting the following error when trying to install PostgreSQL on my Windows 10 Machine (x64). Can anyone help me troubleshoot? Many thanks! Error screenshot below:

View post on imgur.com

asked Aug 27, 2019 at 14:11

sarahofcamb's user avatar

This happened to me as well. Turned out I couldn’t use a Domain user (even though it is an admin on the local machine). I had to log in as a local admin user, and then the installation worked. This is very weird.

answered Sep 15, 2019 at 11:22

zmbq's user avatar

zmbqzmbq

6862 gold badges6 silver badges14 bronze badges

I tried installing Postgresql-9.5.19.1-windows-x64 version (downloaded from official page) on Windows 10 x64 and it gave me the same error. I tried executing it with administrator privileges, giving permissions to the temp folder, moving temp folder to another location but nothing worked…

The solution for me was using a different version of 9.5: PostgreSQL-9.5.2-1-windows-x64.

answered Sep 17, 2019 at 14:34

Consultant's user avatar

This error happened to me to on PostgreSQL version 11.2

I elaborated in a Stackoverflow post as answer to ‘Is the server running on host “localhost” (::1) and accepting TCP/IP connections on port 5432?’ a solution. I mentioned this question thread with answers as being the solution to this error.

But in short it is what you all are saying: reinstall.

But it can be the same or a different version in my experience.

My explanation:

The general thought/assumptions:

It looks like it is pgAdmin (probably version 4) or your admin rights or one of the files mentioned above (postgresql.conf and/or pg_hba.conf).

I had the same error and even a password error (for the correct password) after being a step further by some todo’s and fixes that helped other people in previous versions;

But none of them worked for postgresql version 12.3 and/or postgresql version 11.8

Solution versions:

The only thing that helped after two hours was:
As explained in this post: ‘PostgreSQL Install fail on Windows 10 (icalcs error/acces denied)’ on the superuser forum of StackExchange:

  • Uninstall en reinstall postgresql. The official version provided by EDB through this link: postgresql.org/download; Or try a different version if you are sure this one doesn’t work for you. Therefor head to the ‘File Browser’of Postgresql: here
  • After reinstall, start pgAdmin from the Start Menu (scroll for the folder and the correct related pgAdmin; an older version could still hang around in the shortcuts and won’t start).

Note: You can keep your data map so nothing is lost!

In my case e.g.: I removed the /data folder from the (Windows 10) [Drive]/Program Files/PostgreSQL/11 and as soon as I uninstalled version 11.2 and reinstalled (earlier removed 12) version 12: when I started pgAdmin4 my former servers ([nameA] and [PostgreSQL 11] and databases ánd the new server [PostgreSQL 12] were there! And the connection was reestablished

Tried:

Earlier tried solutions that did not work in my case:

  • Question 37307346 «Is the server running on host localhost 1 and accepting tcp ip connections on port 5432?
  • Question 40532399 Unable to connect to server for postgres
  • Question 16904997 Connection refused pgerror postgresql and rails
  • Question 60532791 Timeout expired pgadmin unable to connect to server note: This was after semi solution of netstat running postgres service (port was not used before that solution; here listed as 4th item, item above).

answered Jun 17, 2020 at 22:47

sophievda's user avatar

If you have issues with permissions either after installations or after reinstalling postgres you might find help here.

Make sure you install the correct version for the data folder you have, you can check the version in that data folder under file named PG_VERSION.

  1. Install postgres with random data directory. If it doesn’t work with old data directory and you get errors about permissions or stuff like icacls then pick a fresh folder and proceed with this post.
  2. Go to registry editor and then find something like
    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicespostgresql-x64-11 <- version you installed
    change imagepath to reflect the data directory
    "C:Program FilesPostgreSQL11binpg_ctl.exe" runservice -N "postgresql-x64-11" -D "{DATA_DIRECTORY like d:/db}" -w
  3. At this point the service might not even start, but check just in case it is magically working at this stage. It won’t log anything or throw any errors so don’t worry, if you do everything right it will work.
  4. Right click the data folder then go to Properites -> Security tab -> Advanced button
  5. Toggle the checkbox on the bottom «Replace all child object perm[..]»
  6. Press Add, and select principal on top, then type in the big box NETWORK SERVICE
    To make sure it works try pressing check names, it should underscore it. Then press OK, set all permissions to it. Then OK, OK, OK. You should leave the file properties approving everything.

If steps 4-6 throw out permissions errors read step 7 /

  1. Try running postgres. If for some reason you cant run postgres at this point. Then run command-line as an administrator, and type in icacls "{DATA_FOLDER}" /reset /T this will clear all the permissions that are there no matter what they are. Postgres install ought to be doing that but it’s bugged in some versions. As it was in mine.
  2. Now you can try running postgres service.
  3. At this point PG Admin didn’t really work but I managed to login using the psql.exe and I’ve dumped all the data. pg_dump -U {USERNAME} {DATABASE} > {FILENAME.EXT} Then I’ve uninstalled postgres, restarted PC, then installed the newest version and I’ve recovered the dump.

answered Dec 22, 2020 at 17:10

Ghandhikus's user avatar

Had the same problem, but I’m not comfortable downloading installers from unknown sources.

After quite some struggling (including run as different user, install from a session opned with a domain administrator account), the only thing that worked for me was to enable the local administrator command (net user administrator /active:yes), providing a password for it (net user administrator *) and then running the installer.

Hope this helps.

answered Sep 10, 2019 at 13:47

stefanu's user avatar

For me, problem was that some files inside Data folder of existing Postgres installation had cleared permissions & ownership information. I was able o fix the problem by going one level up above Data directory and re-setting the Owner of the child directories & files via standard Windows dialog. After that, re-running installer allowed icacls to set permissions & finish the installatio nsuccesfully.

answered Mar 19, 2020 at 5:50

Anatoly Alekseev's user avatar

Apparently this happens if you uninstall PostgreSQL and do not delete the «data» directory where your databases are stored. When you attempt to (re)install PostgreSQL, it fails to change permissions on that directory, because it already exists. I was able to work around this apparent bug in the installer by deleting all of C:Program FilesPostgreSQL manually. But that might not be an option if you have data in there that you haven’t backed up.

answered Mar 27, 2020 at 18:02

mayfiecs's user avatar

We had the same Problem today while upgrading from 12.1 to 12.3.
Installer (EnterpriseDB) stopped with the error while icacls — call because of missing rights…
We even ran it as local administrator.

After stopping the setup the pg — service was removed and rights in pg-data / base — folder were missing.
We run takeown /F d:PgData12* /R /A and startet the setup again. Then it worked without other problems.

answered Jun 11, 2020 at 6:05

thomas's user avatar

My solution was log in with the user caller admnistrator, can’t be other user with permissions, must be the user administrator

answered Jan 18, 2021 at 15:15

Clash's user avatar

I suspect a problem with user rights.
I was able to activate the Administrator account and perform the installation.

  1. cmd (Run as Administrator)

  2. net user administrator active: yes

  3. logout old Account and login Administrator

  4. install PostgreSQL

answered Mar 14, 2021 at 9:23

Vahap Karataş's user avatar

Hi, thank you for your reply. I answered below your comments.

On Fri, Apr 3, 2020 at 7:47 PM PG Bug reporting form <noreply(at)postgresql(dot)org>
wrote:

> The following bug has been logged on the website:
>
> Bug reference: 16341
> Logged by: Enrico La Torre
> Email address: pg(dot)dba(dot)iit(dot)team(at)gmail(dot)com
> PostgreSQL version: 9.6.17
> Operating system: Windows Server 2016
> Description:
>
> Hi,
>
> it could be that the same bug was reported in
>
> https://www.postgresql.org/message-id/16001-fa33ba75a039fc7d%40postgresql.org
> , but nobody answered until today.
>
> It is impossible for me to install PostgreSQL 9.6.17 with the EnterpriseDB
> installer (free Community Edition) on Windows Server 2016 in the security
> context of NT AUTHORITYSYSTEM.

Can you elaborate this please?

I use psexec.exe from the Sysinternals Suite
<https://docs.microsoft.com/de-de/sysinternals/downloads/sysinternals-suite> to
get a PowerShell cmd shell in NT AUTHORITYSYSTEM context. whoami returns
‘nt authoritysystem’.
If I then start the installer with ‘.postgresql-9.6.17-1-windows-x64.exe’
the interactive installer starts and returns the given error message. To be
precise, only the logo of EnterpriseDB is shown and then the error message
appears.
Usually we call the installer in the unattended mode in our scripts but it
even fails in the interactive mode now. So I ruled out any error with the
argument list of the installer call.

> If I start the installer with a regular
> domain admin account, which is also local administrator, the installer
> starts.
>
> OK

> I receive the error message:
> «Error running icacls «C:WindowsTemp/postgresql_installer_ca555e4059» /T
> /Q /grant «<DOMAIN>/<COMPUTERNAME>$:(OI)(CI)F»:
> C:WindowsTemp/postgresql_installer_ca555e4059*: Access is denied»
>
> I disclaimed The log file of the installer
> ‘C:WindowsTempinstall-postgresql.log’ is never written.
>
> There must be files starting with bitrock*

The file ‘C:WindowsTempbitrock_installer.log’ shows (I also attached the
file to this mail):

Log started 04/06/2020 at 15:51:53
Preferred installation mode : qt
Trying to init installer in mode qt
Mode qt successfully initialized
Executing icacls «C:WindowsTemp/postgresql_installer_f37cf0f7f1»
/inheritance:r
Script exit code: 0

Script output:
processed file: C:WindowsTemp/postgresql_installer_f37cf0f7f1
Successfully processed 1 files; Failed processing 0 files

Script stderr:

Executing icacls «C:WindowsTemp/postgresql_installer_f37cf0f7f1» /T /Q
/grant «ALDI-199911-092STL01$:(OI)(CI)F»
Script exit code: 5

Script output:
Successfully processed 1 files; Failed processing 1 files

Script stderr:
C:WindowsTemp/postgresql_installer_f37cf0f7f1*: Access is denied.

Error running icacls «C:WindowsTemp/postgresql_installer_f37cf0f7f1» /T
/Q /grant «ALDI-199911-092STL01$:(OI)(CI)F»:
C:WindowsTemp/postgresql_installer_f37cf0f7f1*: Access is denied.
Cannot delete file C:/Windows/Temp/postgresql_installer_f37cf0f7f1
Exiting with code 1

> SYSTEM has FULL CONTROL for ‘C:WindowsTemp’. Created directories in this
> directory by SYSTEM inherit FULL CONTROL from the parent. But if I check
> the
> temporary directory ‘.postgresql_installer_ca555e4059’ I see that the
> inheritance is disabled for this particular directory. Only the principal
> named <DOMAIN>/<COMPUTERNAME>$ has FULL CONTROL not SYSTEM.
>
> Sure, once I receive the logs I may ask you to get the ACLs for some
directories which will give us more clues.

> The same issue is also true for PostgreSQL 12.2. The last time this
> procedure worked that I know is with the installer for PostgreSQL 9.6.12.
>
> Kind regards
>
>

Am Mo., 6. Apr. 2020 um 14:27 Uhr schrieb Sandeep Thakkar <
sandeep(dot)thakkar(at)enterprisedb(dot)com>:

> Hi,
>
>
>
> On Fri, Apr 3, 2020 at 7:47 PM PG Bug reporting form <
> noreply(at)postgresql(dot)org> wrote:
>
>> The following bug has been logged on the website:
>>
>> Bug reference: 16341
>> Logged by: Enrico La Torre
>> Email address: pg(dot)dba(dot)iit(dot)team(at)gmail(dot)com
>> PostgreSQL version: 9.6.17
>> Operating system: Windows Server 2016
>> Description:
>>
>> Hi,
>>
>> it could be that the same bug was reported in
>>
>> https://www.postgresql.org/message-id/16001-fa33ba75a039fc7d%40postgresql.org
>> , but nobody answered until today.
>>
>> It is impossible for me to install PostgreSQL 9.6.17 with the EnterpriseDB
>> installer (free Community Edition) on Windows Server 2016 in the security
>> context of NT AUTHORITYSYSTEM.
>
>
> Can you elaborate this please?
>
>
>> If I start the installer with a regular
>> domain admin account, which is also local administrator, the installer
>> starts.
>>
>> OK
>
>
>> I receive the error message:
>> «Error running icacls «C:WindowsTemp/postgresql_installer_ca555e4059» /T
>> /Q /grant «<DOMAIN>/<COMPUTERNAME>$:(OI)(CI)F»:
>> C:WindowsTemp/postgresql_installer_ca555e4059*: Access is denied»
>>
>> I disclaimed The log file of the installer
>> ‘C:WindowsTempinstall-postgresql.log’ is never written.
>>
>> There must be files starting with bitrock*
>
>
>> SYSTEM has FULL CONTROL for ‘C:WindowsTemp’. Created directories in this
>> directory by SYSTEM inherit FULL CONTROL from the parent. But if I check
>> the
>> temporary directory ‘.postgresql_installer_ca555e4059’ I see that the
>> inheritance is disabled for this particular directory. Only the principal
>> named <DOMAIN>/<COMPUTERNAME>$ has FULL CONTROL not SYSTEM.
>>
>> Sure, once I receive the logs I may ask you to get the ACLs for some
> directories which will give us more clues.
>
>
>> The same issue is also true for PostgreSQL 12.2. The last time this
>> procedure worked that I know is with the installer for PostgreSQL 9.6.12.
>>
>> Kind regards
>>
>>
>
> —
> Sandeep Thakkar
>
>
>

Добрый день.
Помогите с установкой PostgreSQL 9.6 на сервер под управлением Windows Server 2007 x64 SP2.
Перепробовал уже все советы из интернета. Вроде какая то проблема с выполнением скриптов установки.
Ошибка при установке PostgreSQL 9.6

There has been an error.
Unable to write inside TEMP environment variable path.

В лог файле bitrock_installer.log

Log started 08/13/2019 at 13:35:44
Preferred installation mode : qt
Trying to init installer in mode qt
Mode qt successfully initialized
Executing icacls «C:UsersАдминистраторAppDataLocalTemp/postgresql_installer_20ee233410» /inheritance:r
Script exit code: 0

Script output:
®Ўа Ў®в **л© д ©«: C:UsersЂ¤¬Ё*Ёбва в®аAppDataLocalTemp/postgresql_installer_20ee233410
“бЇҐи*® ®Ўа Ў®в *® 1 д ©«®ў; *Ґ г¤ «®бм ®Ўа Ў®в вм 0 д ©«®ў

Script stderr:

Executing icacls «C:UsersАдминистраторAppDataLocalTemp/postgresql_installer_20ee233410» /T /Q /grant «АдминистраторOI)(CI)F»
Script exit code: 0

Script output:
“бЇҐи*® ®Ўа Ў®в *® 1 д ©«®ў; *Ґ г¤ «®бм ®Ўа Ў®в вм 0 д ©«®ў

Script stderr:

Executing C:UsersАдминистраторAppDataLocalTemp/postgresql_installer_20ee233410/temp_check_comspec.bat
Script exit code: 0

Script output:
«test ok»

Script stderr:

Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Data Directory. Setting variable iDataDirectory to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Base Directory. Setting variable iBaseDirectory to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Service ID. Setting variable iServiceName to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Service Account. Setting variable iServiceAccount to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Super User. Setting variable iSuperuser to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Branding. Setting variable iBranding to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Version. Setting variable brandingVer to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 Shortcuts. Setting variable iShortcut to empty value
Could not find registry key HKEY_LOCAL_MACHINESOFTWAREPostgreSQLInstallatio nspostgresql-x64-9.6 DisableStackBuilder. Setting variable iDisableStackBuilder to empty value
[13:35:52] Existing base directory:
[13:35:52] Existing data directory:
[13:35:52] Using branding: PostgreSQL 9.6
[13:35:52] Using Super User: postgres and Service Account: NT AUTHORITYNetworkService
[13:35:52] Using Service Name: postgresql-x64-9.6
Executing cscript //NoLogo «C:UsersАдминистраторAppDataLocalTemppostgre sql_installer_20ee233410prerun_checks.vbs»
Script exit code: 1

Script output:
ЋиЁЎЄ CScript: ЌҐ г¤ Ґвбп * ©вЁ ЁбЇ®«*по饣® п¤а «VBScript» ¤«п бжҐ* аЁп «C:UsersЂ¤¬Ё*Ёбва в®аAppDataLocalTemppostgresql_installer_20ee23 3410prerun_checks.vbs».

Script stderr:
Program ended with an error exit code

Error running cscript //NoLogo «C:UsersАдминистраторAppDataLocalTemppostgre sql_installer_20ee233410prerun_checks.vbs»: Program ended with an error exit code
Cannot delete file C:/Users/Администратор/AppData/Local/Temp/postgresql_installer_20ee233410

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь

Понравилась статья? Поделить с друзьями:
  • Power query error функции
  • Postgresql error role does not exist
  • Postgresql error permission denied to create database
  • Power query error handling
  • Postgresql error permission denied for table