Link to home
Start Free TrialLog in
Avatar of Sheldon Livingston
Sheldon LivingstonFlag for United States of America

asked on

Install a program from vb.net service

I have written a vb.net service.  I would like to silently install a program using the service.

The program is silently installable... I can do it via the command prompt.

The service, however, doesn't install and I think the issue maybe the space in which the service runs.

Thoughts?
Avatar of David Favor
David Favor
Flag of United States of America image

For assistance, you'd have to post information about your installation process.

Also, your installer should capture + report all errors encountered during installation.

The reported errors are essential to debugging this.

And, if your disk space is 99.99% used, then you're likely correct... free up some disk space + see if this fixes your install problem...
what are the privileges to which the service run?
in order to install a program you need to have local administrator privileges on the system
Avatar of Sheldon Livingston

ASKER

I think the issue is with the service running under the local system account.
I would use TopShelf to create the service instead of the VS template

This is my (albeit C#) Visual Studio Windows Service template
https://www.experts-exchange.com/articles/33372/NET-Windows-Service-Template-using-Timer-Topshelf-and-Log4Net.html
I suggest you to create a specif user for your service and configure the AlwaysInstallElevated policy for this user
ttps://docs.microsoft.com/en-us/windows/desktop/msi/installing-a-package-with-elevated-privileges-for-a-non-admin
https://docs.microsoft.com/en-us/windows/desktop/msi/alwaysinstallelevated
ASKER CERTIFIED SOLUTION
Avatar of Sheldon Livingston
Sheldon Livingston
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial