Skip to content
/ USUS Public

The Ultimate Software Update Script - Gets software from the source, then packages it for deployment

Notifications You must be signed in to change notification settings

JL421/USUS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

##What is this?

USUS (Ultimate Software Update Script) is a Windows Powershell Script (v3.0+) that will check for updated installers for just about any installer. If you give it a set of packages to run with, it'll make sure your Installers are on the latest version, and make a useful XML file with all the info any add-on scripts need to make deployment packages.


##Why Should I Use This Instead Of...?

USUS gives you more control over what you bring into your environment, while allowing you to make sure you always have the latest patches available.

  • You don't have to worry about what code could be hidden inside of a download script

    • The source code of USUS is freely available, and USUS Packages can be verified before placing into service. You can even create your own packages. (Verification for installers downloaded with the script coming soon)
  • You don't have to replace your current deployment method

    • USUS add-on scripts can integrate with multiple deployment options (Chocolatey currently available with more coming soon).
  • It doesn't cost you anything

    • Though donations or submitting USUS packages/USUS Add On scripts to /r/USUScript are appreciated.

##Screenshots

Run with Updates


##Current Features v2.1 (2015-12-10)

  • XML input files
  • Imports Package XML documents into a Master XML containing all packages
  • XML output file
  • One Master XML document containing all information about all software packages, and versions
  • Version Management (And cleanup)
  • Add-on script support
  • Actual 32 and 64 bit management
  • USUS now has multiple versions inside single package files, and stores all the metadata for software, together
  • Self Update abilities
  • USUS will check for updates for itself and packages if specified in the Config file
  • Add Packages from USUScript.com with the -AddPackage Flag

##Upgrade Notes

USUS 2.1 is a drop in change from V 2.0. The default settings for new features is disabled, and you have to manually enable them in the config file.

V 2.1 Pre-Release users: This is not an automatic upgrade you will have to manually update USUS to get the new features.

  • Extras (Extras32 and/or Extras64) from existing packages will not be overwritten by Extras from updated packages unless specified. This is to protect any customizations that you have made from being overwritten accidentally and breaking your outputs.
  • If you have a company internal package that you don't want to check for updates for, change the following option in the package: USUS XML Package File to Private USUS XML Package File
  • New Flags
  • -AddPackage: Use this to search USUScript.com for a package and add it automatically. You can also pass multiple packages to this command using a comma delimited list. Eg: AdobeAir,AdobeReader,flashplayerplugin,GoogleChrome
  • -ReplaceExtras: Use this to perform a one time extras replacement on a package update
  • -SkipSoftwareUpdates: Use this to only check for USUS and Package updates

Config File Changes:

<SelfUpdate>
  <AutoUpdate>True</AutoUpdate> <!-- Change to false to skip auto updates of USUS -->
</SelfUpdate>
<PackageUpdate>
  <AutoUpdate>True</AutoUpdate> <!--Change to false to skip auto updates of Packages -->
</PackageUpdate>
<ReplaceExtras>True</ReplaceExtras> <!--Remove or comment this line keep currently existing extras in package files when updating packages -->

##Download


##Running the Script

  • Run the script from command line, or create a scheduled task to keep your installers up to date automatically.

     Usage: USUS.ps1 -ConfigFile [Your ConfigFile Path]
    
     Required Flags :
      -ConfigFile    This is the path to your Config File XML Document
    
     Optional Flags :
         -DebugEnable          Use this to enable Debug output
         -AddPackage           Use this to search USUScript.com for a package and add it (comma delimited list)
         -ReplaceExtras        Use this to enable extras fields from new packages to override old packages
         -SkipSoftwareUpdates  Use this to skip updating software on this run
    

As of now, the script is unsigned, this may change in the future, depending on if it's a big request.

As a result, there are two ways to run the script:

  1. Recommended : Powershell.exe -ExecutionPolicy Bypass -NoProfile -File [Path to Script] -ConfigFile [Path to Config Directory]
  • This runs only the script in Bypass mode, bypassing the need for a signed script, but still preventing other unsigned scripts from running.
  1. Globally setting Powershell's Execution Policy to Bypass.
  • Highly Unrecommended

Adding/Modifying Packages

Adding Packages is easy, either create one from the Template GitHub - USUScript.com, or grab one from the community. Then just place it into your Config\Packages Directory.


##Pre-Built Packages


##Add On Scripts


##Planned Changes

  • Installer Verification
  • Additional file formats (Eg: MSP files)

##Change Log

v2.1 (2015-12-10)

  • Preserves Extras during package upgrade
  • USUS Self-Update functionality
  • Check updates to packages
  • Add Packages directly from USUScript.com

v2.0 (2015-10-01)

  • Major Overhaul
  • XML input files
  • Imports Package XML documents into a Master XML containing all packages
  • XML output file
  • One Master XML document containing all information about all software packages, and versions
  • Version Management (And cleanup)
  • Add-on script for Chocolatey packages available, with more coming soon
  • More stable codebase
  • USUS itself shouldn't have to be updated to add new packaging functionality
  • With fewer actions happening inside USUS, there are fewer opportunities for things to break
  • Actual 32 and 64 bit management
  • USUS now has multiple versions inside single package files, and stores all the metadata for software, together

v1.5 (2015-07-08)

  • Added Chocolatey Package Support with Versioning
  • Allowed the Config Dir to be imported from -ConfigDir when using -InitialSetup
  • Miscellaneous Tweaking to various code

v1.4 (2015-07-06)

  • Added Assisted Setup
  • Added option to only send emails on new updates

v1.3 (2015-04-21)

  • Improved Email Reporting
  • Archiving for Old Installers
  • Readded Custom Locations
  • Custom Descriptions for Deployment Packages
  • Removed Transcripts
  • Misc bug fixes

v1.2 (2015-04-13)

  • Added Deployment Package Creation
  • Bug Fixes

v1.1 (2015-04-09)

  • Cleaned up the Main Script body by moving Functions and Packages to a Config Directory
  • Made some improvements to Bandwidth Usage
  • Added Change Log and Current Version Logs to the SoftwareRepo Directory
  • Added Email Reporting

##Community Package Sharing / Feature Requests / New Releases

You can find all of this at /r/USUScript

Shared Packages that test well will be included in the Git Repository, with credit to the creator.

Feature Requests will be worked on as time or necessity allows.

The latest releases and fixes will be announced here as well, with Major Releases/Fixes also released posted on /r/sysadmin.

About

The Ultimate Software Update Script - Gets software from the source, then packages it for deployment

Resources

Stars

Watchers

Forks

Packages

No packages published