MSI vs nuget packages: which are is better for continuous delivery?

前端 未结 2 935
挽巷
挽巷 2020-11-21 05:31

Let\'s discuss following topic. There is application which currently is being deployed with good to know xcopy method.This approach makes difficult to manage dependencies, f

相关标签:
2条回答
  • 2020-11-21 05:38

    Ad-Hoc: How do I avoid common design flaws in my WiX / MSI deployment solution?

    • a very messy and less-than-ideal ad-hoc summary of common problems found in MSI files. Not great. Better than nothing? The stuff that is not in the books (too messy).

    Important Topic: How do I avoid distributing sensitive information in my MSI by accident?


    WiX & MSI:

    MSI is the accepted corporate application standard. It has some major corporate benefits (and the short, concise version) compared to legacy deployment techniques. WiX is the new open source way to create MSI files.

    • Wix Toolset Download (1) Main WiX setup, 2) Votive - Visual Studio integration setup
    • WiX Documentation
      • After WiX installation locate WiX.chm and msi.chm help files in installation folder "%ProgramFiles(x86)%\WiX Toolset v3.11\doc" for quick access to documentation.
    • Online: WiX Reference Manual v3, Official WiX Tutorial.
    • Github, Bug Tracker, Mailing List, FireGiant WiX KDB (FireGiant is WiX's commercial branch).
    • To get your head around Wix, you might want to read a quick, unofficial summary of the history behind it.
    • MSBuild - using Visual Studio, Votive and MSBuild
    • Harvesting (1): WiX has its own tool for generating WiX markup based on an input folder.
      • The tool is called heat.exe. WiX's commercial branch FireGiant has a tool called HeatWave with more features.
      • Largely untested by me is the tool WixHeatATLHarvesterExtension: https://github.com/nirbar/WixHeatATLHarvesterExtension (a WiX Heat extension to harvest registry information from x64 modules)

    Other Tools:

    • Then you might want to check other ways to deliver an installer, besides Wix by reading:
      • What installation product to use? InstallShield, WiX, Wise, Advanced Installer, etc
      • One more quick-list of tools
    • Major Tools: Advanced Installer, - InstallShield, - PACE Suite

    Hello World & Hello WiX:

    • Finally view a complete example of how a Wix source file and its components look like on Codeproject. This is the "Hello World" of Wix.
    • "Hello WiX - step-by-step in Visual Studio".
    • This needs WiX and Votive (WiX Toolset Visual Studio Extension - WiX's Visual Studio integration so you get Intellisense). See download page.
    • Inline comments in bottom markup is probably all you need to get going.
    • Small sample of WiX preprocessor variables / defines.
    • Hello WiX C# Custom Actions
    • How to add C# custom actions to an existing WiX project.

    Video Samples:

    • How To Create Windows Installer MSI - .Net Core WiX

    More Sample Code:

    WiX Quick Start: Here are some of the best sample code links that I have found:

    • Helge Klein's real-world WiX sample - do check this out (Wayback - Archived Version).
    • Rainer Stropek's WiX Samples on Github - can be very helpful.
    • From MSI to WiX by Alex Schevchuk - aging content, but excellent.
    • Chris Painter's IsWiX Tutorials - excellent WiX samples.

    And finally:

    • Phil Wilson's Github repository for MSI samples: https://github.com/Apress/def-guide-to-win-installer. The best content, but aging. General MSI samples, not WiX as such.
    • My experimental site: installdude.com.
    • How-to-create-a-Windows-Service-MSI-Installer-Using-WiX.
    • WiX Extension: https://github.com/nirbar/PanelSwWixExtension (Dism.exe, etc...)

    Debugging: Always check all event logs, application logs and MSI logs - if available. Just to mention it. And use any debugging tool available and google the exact error message before doing anything else.

    And check for any obviously missing runtimes. For example: .Net, .Net Core, Java, Silverlight, Direct X, VC++ Runtime, MS-XML (legacy), etc....

    Custom Action Debugging:

    • Common Causes for Custom Action runtime failures
    • Debugging Custom Actions
      • For native code / C++ just attach debugger to msiexec.exe
      • Advanced Installer's Debug C# Custom Actions video tutorial

    MSI logging:

    • Overview and summary (how to log, interpreting log file, etc...)
    • Installsite: MSI log "how-to"
    • More MSI logging information

    Event Viewer:

    • Hold down Windows Key, tap R, type eventvwr.msc and press Enter.
    • Go to Windows Logs => Applications. Look for MsiInstaller events.
    • Check the other logs too (Security, System, Configuration).

    General Debugging:

    • "Debugging Light"

    • Application Launch Problem: Debugging Ideas (torpedoes full spread)

    • ProcMon.exe: The tool of the trade. The one-size-fits-all tool. The bee's knees, the topper-most, the quantum leap, the cat's pajamas. It can be a challenge to use it effectively, but it is the best general-purpose debugging tool that is free (comment link for safekeeping).

      • Quick, Rudimentary Sample
      • Hanselman's longer video sample (from about 3:50 onwards)

    Debugging Tools:

    • Tools to debug dependency issues - ProcMon.exe, VS, Dependency Walker, etc...
      • COM dependency errors
      • Fuslogvw.exe (Assembly Binding Log Viewer)
    • Essential service debugging tools:
      • Event Viewer, Task Manager, Services.msc
      • Process Explorer, NET command, SC.exe
      • Windows Services Frequently Asked Questions (FAQ)

    Error Code: Looking up error codes and exception messages.

    • "The Magic Number Database" - online lookup.
    • Checking Error Codes - several tools and approaches.

    A Deployment Mnemonic: A general mnemonic to think about deployment problems: What is locking (in use, malware), what is blocking (permissions, anti-virus, security tools), what is corrupt (disk, malware, configs, encryption) what are unexpected system states (disk space, time & date settings, language, licensing, windows patch state, path too long, PendingFileRenames, etc...), what are incompatible products (things that can't co-exist), what is unreachable or misconfigured (what points to erroneous locations and resources: network server names, disk paths, URLs, databases, services, UAT environments, PROD environments, etc...) and last but not least: what is missing (runtime, resource image, settings file, etc...)?


    NOTE: Always first (step 8 below): Google exact error message.

    Express Failure to Launch Debugging: 1) Reboot, 2) disable anti-virus, 3) launch as admin and check, 4) Check dependencies and runtimes (Java, VC++ Runtime, .NET, etc...). Then, if need be: 5) verbose log, 6) event logs, 7) Try on a virtual if you still can't get it working? (many virtuals lack essential runtimes - check) Or secondary computer? Also 8) google exact error messages and check user comments, 9) Run update for the application in question? (new installer could eliminate the error situation). 10) Run a full check for malware too? It is all over the place these days. 11) Some software (often server software) may need configuration settings sorted out (misconfiguration). Desktop applications may need license to launch at all.


    Locks?: With permission and locks you can try to run the tool with elevated rights? You could have disk corruption - disk errors? Faulty ACL permissions? (possible). Your anti-virus suite has locked some file that MSI is trying to put back in place. You can try to disable it temporarily to see. Note that the file can have been quarantined as well (moved somewhere else).


    Generic Tricks? - Consumer issues, failure to install setup.exe:

    • A simplified, generic check-list for deployment issues (alternative to list below).
    • Visual Studio Problems: A check list for Visual Studio installation problems - and an updated version
    • .NET Repair: .Net Framework Repair Tool
    • Broken Uninstalls: MS FixIt: Remove packages that won't uninstall
    • Log: Microsoft Visual Studio and .NET Framework Log Collection Tool

    For setups that won't install properly. A few generic tricks below - in addition to checking event logs and installation- and application logs and googling any error messages (always do that too - perhaps first - but maybe just do a reboot first - before facing all the complexity):

    1. Reboot: Reboot first after a failed install to see if that solves locks and pending renames.
    2. Other Computer: Try installing on another physical machine instead?
      • Important smoke test of the installation media!
    3. Virtual: Try installing on a Virtual machine instead?
      • Often outdated, check runtimes, check Windows Update.
    4. Runtimes: Ensure required runtimes of various types are on there in the required version:
      • Common: VCRedist, .NET, .NET Core, Java, Direct X, etc...
      • Specific: Python, DBMS systems (PostgreSQL, MSSQL, etc...)
      • Windows Components: IIS, MSMQ - Message Queue, Powershell, etc...
    5. Secondary Account: Try installing on main box using a different admin account. This can sort out problems caused by errors in the user profile (not at all that uncommon).
    6. Local Installation Files: Copy installation files locally if they are on the network when invoked (to eliminate network error sources).
    7. Localization Issues: It is not uncommon for setups delivered in other languages to contain brand new bugs not seen in the original installer (usually English).
      • "Murphy Field": "We have managed to add additional bugs to the internationalized setups beyond the English version". Oh the humanity say! Bummer.
      • Try to download an English setup version and test install?
      • Try the localized setup on an English machine or virtual?
      • Also investigate running with another user account with different language settings.

    Setup.exe - again - the common "blockers":

    1. Corrupt Setup File: Corrupt setup file. Re-download to be sure? Get this done as one of the first steps before wasting a whole day? Correct platform bitness? Right CPU-architecture?
    2. Malware: Malware can cause just about "anything" in terms of problems.
    3. Security Software: Anti-virus, firewalls, scanners, etc... can interfere with installation. Disable temporarily if possible when required.
    4. Disk Space: Ensure enough disk space!
      • Ways to clear out disk space. Long version.
      • Just run cleanmgr.exe first.
    5. Proxy: If there is a network requirement, is there a proxy server that blocks things?
    6. Policies: There can be policies in effect on managed networks to block certain features making the install impossible. Try on virtual? Usually less restricted.
    7. Disk Errors: Scan disk to see if it is OK. If not, fix it first. Modern NVMe disks can lose a lot of data with power outages for desktops without UPS.
    8. Disk Security ACL: Custom security ACL (NTFS access configuration) configuration that leads to runtime errors for Windows components and software alike. Never use custom ACL for Windows directories unless you know what you are doing. Errors are CERTAIN.

    Some Links:

    • The setup process in windows fails access denied when trying to create "uc.micro" folder
    • SQL Server 2017 installation is stuck
    • Visual Studio installer fails on AspNetDiagnosticPack.msi
    • The installer has encountered an unexpected error installing this package - .Error code 2896

    Easy Access:

    • XML Files: Installing XML files
    • False Positives
    • Installer Class Methods - More Installer Class Methods
    • Would this method of installing COM+ work?
    • Windows Installer Best Practice
    • Reboot Manager and Logging
    • Change my component GUID in wix?
    • Simplify WiX markup - you can leave out a lot of source attributes from your Wix xml file
    • Running Legacy Applications (virtuals, compatibility mode, repackaging, etc...)
    • What are ICE Rules
    • Preprocessor versus Localization Variables, and the issue of include files
    • WiX Preprocessor

    Repackaging, Application Launch Debugging:

    • Procmon.exe, capture, repackaging, service installation and installer methods
    • Section on repackaging here
    • How to run an installation in /silent mode with adjusted settings
    • More on distribution of software
    • Wix - How to run/install application without UI (embedding setup.exe, silent running setup.exe, application repackaging, bootstrappers / chainers)

    Upgrades:

    • Causes of major upgrade failures
    • Some minor upgrade technical restrictions

    Some Other WiX Links:

    • WiX 3 dependency on .NET 3.5
    • Simplify your WiX markup.
    • Registering COM EXEs with WiX.
    • Can't uninstall, it fails.
    • Dynamic Link Libraries.
    • Microsoft Debugging Environments.
    • How do I create a Prerequisite Package for Windows Installer?
    • How do I embed CustomAction.CA.dll in to MSI?
    • Installed program is removed automatically everytime when server restarts from windows server 2012 R2

    Procedures:

    • Open Temp folder: Windows Key => Tap R => Type: %TEMP% => Press: Enter.
    • ARP: Go start run appwiz.cpl ENTER in order to open the add/remove programs applet (or click add/ remove programs in the control panel).
    • Settings GUI Win8/10: Windows Key + Tap I => Apps & Features. Select entry and uninstall.
    • Quick start of Powershell: hold Windows key, tap R, type in "powershell" and press Enter.
    • Restart Graphics Driver: Windows key + Ctrl + Shift and tap B.

    Some good starting links to learn Wix:

    • My Wix quick start suggestions
    • Good resources for learning how to create MSI installers from WiX
    • How to implement WiX installer upgrade? (major upgrade)
    • What are limitations of WiX and WiX Toolset?

    Extract Files from Setup.exe WiX Bundle or from an MSI file itself:

    • Extract MSI from EXE - including how to extract files embedded in a WiX Burn bundle executable.
    • How can I compare the content of two (or more) MSI files? - Including how to extract files from an MSI using WiX's dark.exe tool

    As I wrote in my suggested "Wix quick start" post above: Wix is hands-on. Just focus on simple, but complete real-world samples like the one from Codeproject - reading the documentation alone is likely to be merely confusing.

    Focus on splitting your application into components and set up a major upgrade. Use one file per component as a rule of thumb, and read this answer for a better understanding of component creation: Change my component GUID in wix?

    A major upgrade is the most commonly used upgrade mechanism for deployed software (the other common upgrade type is minor upgrade). It is obviously crucial that you can upgrade what you have deployed already. Get upgrade scenarios working before you deploy your first software version so you have confidence in your deployment solution.

    Once you got your components set up and your upgrade solution is working, the rest of the pieces fall into place as you work your way through your application's deployment requirements and check for samples on the Wix tutorial site: https://www.firegiant.com/wix/tutorial/.

    For those writing Wix code directly (without a GUI editor), I suggest you check this answer for a way to keep your source files terse: Syntax for guids in WIX?

    Further read:

    • Windows Installer and the creation of WiX
    • Installer capabilities, WIX vs InstallShield Express
    • Installshield or Wix
    • WiX Bug Tracker
    0 讨论(0)
  • 2020-11-21 05:53

    Im going down this path now, where i have inherited software using MSI/WiX for the installer, but looking at converting our process to continious delivery and pushing out updates that are installed without client interaction. I think its incorrect to pigeon hole nuget as a SDK tool, in its essence it is a tool to deploy versioned sets of files. Furthermore, if the software you are deploying replies heavily on nuget already, and you are already packaging your assemblies into nuget packages for internal use, then why add extra technology into the mix for the sake of it? package up a nuget.exe in your msi, call update on it periodically, done.

    I know WiX supports creating patches, but it seems like its an afterthought. Additionally, what happens if your patch fails installation? Installing patches out of order? Your main installer requires UAC permissions, while your patch does not?

    i think times are changing, and MSI represents an older way of thinking about things. Chocolatey is a good example, but its still at a this hybrid stage, mixing both technologies.

    MSI is more like pull - u get a package, then install it. Nuget is more like a push stratergy - u get the name of a package, install it, then periodically u can call update, and a new version is downloaded and installed.

    0 讨论(0)
提交回复
热议问题