is it possible to install a program as a start up program using MSI installer?
相关问题
- How does the setup bootstrapper detect if prerequi
- Wix: How can I set, at runtime, the text to be dis
- Mysql-installer showing error : Memoy could not be
- Cancel installation from my custom action
- WiX: Multiple MSI files?
相关文章
- chained msi's/Bootstrapper/prerequisite?
- How to prevent WiX bundle with same UpgradeCode/Ve
- Running msiexec from a service (Local System accou
- Set InstallPath registry key using Visual Studio S
- Looking for a flexible windows installer product w
- Can I use msilib or other Python libraries to extr
- WIX 3.8 msiexec.exe /quiet Error 1603
- Setup Project for Visual Studio
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 ;)
Sure, simply use the registry Run keys to start your application. e.g.
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
There's nothing special about Windows Installer in this case, you could easily use a non-MSI setup program to accomplish the same thing.
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
I think you can just install a shortcut to Start Up folder.