Skip to content

A PowerShell module to return the latest version software and download links for various software

License

Notifications You must be signed in to change notification settings

JasonatCU/Evergreen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

License

Get.Software is a simple PowerShell module to get latest version and download URLs for various products. The module consists of a number of simple commands to use in scripts when performing several tasks including:

  • Retrieve the latest version of a particular software product when comparing against a version already installed or downloaded
  • Return the URL for the latest version of a software product if you need to download it locally

All functions consist of the following

  • Get verb - the module provides functions to retrieve data only
  • Product name - product names consist of Developer, Product Name (e.g. Adobe Reader, Google Chrome)
  • Uri or Version - the function will return either the production version number or numbers, or a URI to download the latest version from

Why

There are several community and commercial products that manage application deployment and updates already. This module isn't intended to compete against those. Instead the focus is on simple integration for PowerShell scripts to provide product version numbers and download URLs. Data will only be pulled from the vendor web site and never a third party.

Who

This module is maintained by the following community members

Installing the Module

Manual Installation from the Repository

The module can be downloaded from the GitHub source repository and includes the module in the Get.Software folder. The folder needs to be installed into one of your PowerShell Module Paths. To see the full list of available PowerShell Module paths, use $env:PSModulePath.split(';') in a PowerShell console.

Common PowerShell module paths include:

  • Current User: %USERPROFILE%\Documents\WindowsPowerShell\Modules\
  • All Users: %ProgramFiles%\WindowsPowerShell\Modules\
  • OneDrive: $env:OneDrive\Documents\WindowsPowerShell\Modules\

To install from the repository

  1. Download the master branch to your workstation.
  2. Copy the contents of the Get.Software folder onto your workstation into the desired PowerShell Module path.
  3. Open a Powershell console with the Run as Administrator option.
  4. Run Set-ExecutionPolicy using the parameter RemoteSigned or Bypass.

Once installation is complete, you can validate that the module exists by running Get-Module -ListAvailable Get.Software. To use the module, load it with:

Import-Module Get.Software

PowerShell Gallery

As soon as we get the module into a consistent state, we'll post it to the PowerShell Gallery, making it easy to install with

Install-Module Get.Software

About

A PowerShell module to return the latest version software and download links for various software

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PowerShell 100.0%