I would like to understand how enterprises update software (once deployed) across multiple machines. I have created an MSI installer using WiX for my .NET application. I am using a tool called WinSparkle to notify users that there is an update that they can install (through WinSparkle) and install it.
I am not entirely sure how to handle the updates of my software using WinSparkle in an enterprise setting where the IT admin usually handles software updates.
If anyone can point me in the right direction that would be greatly appreciated.
Common Methods of Enterprise Application Deployment
The most common methods of automatically distributing software to multiple Windows clients seem to be as follows:
Hallmarks of a Good Enterprise Application Installer
As a developer packaging applications for enterprise deployment, you should do the following to enable enterprise IT departments to deploy and manager your application:
Installers Should be Agnostic to Deployment Method
Windows application installers should be as agnostic as possible to how the application is deployed. Some enterprises give their users local administrator rights and let them click
next
,next
,finish
on the installers themselves. Others might have administrators manually install applications. Larger enterprises most likely use a method to push applications automatically and unattended. And some even have a sort of internal app store. The point is, if you follow the practices for Windows application installation currently recommended by Microsoft, and the above hallmarks list, enterprises should have no problem installing and updating your application.Winsparkle, etc
As an IT admin, I am suspicious of any application that wants to auto-update. It comes down to trust: In order for an application to auto-update it requires, in general, administrative privileges. That means that anything the update application decides to install on my systems can wreak havoc on my systems. I certainly trust Microsoft products to update themselves. I probably trust google Chrome and Firefox to update themselves. I might trust Adobe products. But I certainly would not voluntarily give any other random application ongoing administrative rights to download and install whatever it (or someone exploiting it) wants to.