Jump to content

Recommended Posts

Posted
I want to setup a new user so I don’t have to use the administrators details to install software on the domain machines. What the minimum rights this new user would need to allow installs?
Posted
I want to setup a new user so I don’t have to use the administrators details to install software on the domain machines. What the minimum rights this new user would need to allow installs?

 

Depends on the software - I've just had to make our "install" user a Domain Admin to get the Adobe CS3 silent install to complete okay.

 

--

David Hicks

Posted (edited)
Is there a way of running MSIs as administrator? I haven't noticed "Run As..." in the context menu, like there is for exes.

 

You can install MSIs from the commandline using the Windows installer, "msiexec.exe". You can probably run that executable as an admin user, or run the command from a batch file. I'd recommend AutoIt - it has a RunAs keyword that lets you run a command as a different user.

 

An example commandline for msiexec might be:

 

msiexec /i P:\AdobeAcrobat\9.Pro\AcroPro.msi /qb-

 

Or with a transform too:

 

msiexec /i P:\AdobeAcrobat\9.Pro\AcroPro.msi /T P:\AdobeAcrobat\9.Pro\AcroPro.mst /qb-

 

Just type "msiexec" by itself to get up a help screen.

 

--

David Hicks

Edited by dhicks
Un-escaped command line copy-and-pasted from Perl script.
Posted
You're "supposed" to be able to install as a Power User, but more often than not, something in the install will complain. There is a specific permission, "somewhere", called "install" or similar, that controls this.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...