GitHub - taylorgibb/powershell-modules: This is where i store all the reusable PowerShell code that i write. It is focused around algorithms and Microsoft Azure automation.

Build

build status build coverage

  • gibbels-common
  • gibbels-algorithms

Common

The common module is a building block that houses code shared across higher level modules. You can import the module as follows:

Install-Module -Name "gibbels-common"
Import-Module -Name "gibbels-common" -Scope CurrentUser

Supported cmdlets are:

  • Get-DotNetVersions

Algorithms

The algorithms module contains a bunch of functions based on popular, or useful (in my opinion) algorithms. You can import the module as follows:

Install-Module -Name "gibbels-algorithms"
Import-Module -Name "gibbels-algorithms" -Scope CurrentUser

Supported cmdlets are:

  • Test-LuhnValidation
  • Test-LevenshteinDistance