Error installing SQLite ADO.NET on Win 7

I get the following error when trying to install the ADO.NET version of SQLite on two different Win 7 laptops:

Installer.exe: #32 @ 2012.05.06T13:58:34.8921292: Configuration.Process: No actual changes will be made to this system because "what-if" mode is enabled. Installer.exe: #33 @ 2012.05.06T13:58:34.8951293: TraceOps.ShowMessage: Cannot continue, the "confirm" option is not enabled. 

I run Installer.exe as an administrator.

+6
source share
1 answer

Well, I have exactly the same problem,

but the problem in b / c installer.exe requires a command line argument called "-confirm"

They did this to prevent exe from being installed on a double click.

So try running the command from the command line

 Installer -confirm true 

Source: http://system.data.sqlite.org/index.html/ci/793e9b039d165c768114c4c646c9ee1b2e44e03d

+20
source

Source: https://habr.com/ru/post/915018/


All Articles