English 中文(简体)
msi install program as startup
原标题:

is it possible to install a program as a start up program using MSI installer?

问题回答

I think you can just install a shortcut to Start Up folder.

Yes, that s possible. Here s one way, apparently. And here s another.

Didn t try it myself though. If someone wants a program to appear in startup, they can just place a shortcut in the start up folder (of course, I m aware that sometimes you have to offer it kindly to your users ;)

You can do a silent install for an msi and script that via batch script or compiled application. Then schedule that script/program however you want. Without AD you might just insert the call to the script in the registry under RunOnce.

Or even better in an AD environment: How to use Windows Installer and Group Policy to deploy the VPModule.msi in an Active Directory domain

Sure, simply use the registry Run keys to start your application. e.g.

HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun

There s nothing special about Windows Installer in this case, you could easily use a non-MSI setup program to accomplish the same thing.





相关问题
Correct place to install demostration projects?

With the new Windows 7 restrictions (well, new to Windows Vista anyways), we can no longer install demo projects to %ProgramFilesFolder%OurApplicationdemo since restricted users will not be able to ...

msi install program as startup

is it possible to install a program as a start up program using MSI installer?

Web Setup Project - Repair to overwrite files

I have a web setup project that creates an MSI. After first installation, my web site has some config files that can be modify manually. When triggering that MSI again, I am offered to repair the ...

Visual Studio Setup Projects: Cleartype

I use a Visual Studio Setup project to create an installer for some assemblies. However, the fonts the installer uses are always aliased, and don t appear to be the Windows standard. (source: ...

Implementing Update functionality

I want to implement the Update functionality for one of my .NET application. I saw that the Advanced Installer contains this functionality. Anybody recommends Advanced Installer for updating my ...

VS 2005 Setup - HKCU

I am trying to fix an existing application that uses a Visual Studio 2005 setup project. We are requiring it to work on limited user accounts for XP, our app is written in C# for .Net 2.0. It writes ...

热门标签