I have a msi package which I want to install to some computers, which aren't necessary on the same domain neither network.
The way I spread the msi package it doesn't matter. We can expect that file is on some directory of local machine.
I want to run a script which installs the msi package without user interaction,with something similar to MSIEXEC /i "setup.msi" /qn TARGETDIR="C:\my_app\"
Although logged user is member of 'Administrators' group I've got Error 1925. You don't have sufficient privileges to complete this installation for all users of the machine. Log on as administrator and then retry this installation.
message in event log after execute the msiexec command.
I've also configure UAC Settings to 'Never notify me' with same result.[Edited] it works after reboot...
In split of this, I can install the software doing double click on setup.msi.
Any body knows, How I can grant permissions to setup the programs? As it's possible without disabling UAC.