How is software deployed via Active Directory?

6,852

Solution 1

  1. Create an MSI package that requires no user input at all. This may require you to repackage a vendor-supplied MSI file.

  2. Place this MSI file in a location that all users can access.

  3. Create a new GPO.

    1. Under "Computer Configuration" -> Software Settings is a "Software Installation" section.

    2. Right click on "Software Installation" and pick New Package

    3. Browse to the location of the MSI on a UNC path. Do not use drive-letter.

    4. Select a Deployment Type of Assigned if you want it pushed to all workstations assigned to the GPO, or Published if you just want it available in Add/Remove Programs.

    5. Under modifications add any transform files (.MST files) needed. Do this now, you will not be able to add any transforms once the create process is completed.

  4. Associate the GPO with the right group of workstations.

  5. On an associated workstation log out and back in again twice: first for the policy to apply (learn of the new GPO) and then execute (app installs only happen after a reboot).

That should be enough to get you going. Test first, learn how it works, and then move to production.

Deployment failures can cause repeated installation (and associated instant roll-back) of the same package every time a user logs in. If the application is very large, this can mean major delays in login times. These errors are logged to the workstation's event log.

Solution 2

A great resource with many MSI's built already, and a huge knowledge base: AppDeploy.com

Solution 3

You didn't specify which version of Windows your domain controllers are using. However, the steps are basically the same for Windows Server 2003 and Windows Server 2008. Microsoft knowledge base 816102 explains the steps you need to follow.

Share:
6,852

Related videos on Youtube

squillman
Author by

squillman

Updated on September 17, 2022

Comments

  • squillman
    squillman over 1 year

    What are the steps required for deploying a software package via Active Directory / GPO?

  • Kara Marfia
    Kara Marfia almost 15 years
    +1 for listing the steps. Hyperlinks break!
  • paulr
    paulr almost 15 years
    oops, n00b mistake. Next time I'll list the steps separately.