Skip to content

Instantly share code, notes, and snippets.

@jhochwald
Created March 19, 2016 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhochwald/68431d7756bfcb9afbac to your computer and use it in GitHub Desktop.
Save jhochwald/68431d7756bfcb9afbac to your computer and use it in GitHub Desktop.
Test if the given Module exists
#region License
<#
{
"info": {
"Statement": "Code is poetry",
"Author": "Joerg Hochwald",
"Contact": "joerg.hochwald@outlook.com",
"Link": "http://hochwald.net",
"Support": "https://github.com/jhochwald/MyPowerShellStuff/issues"
},
"Copyright": "(c) 2012-2016 by Joerg Hochwald & Associates. All rights reserved."
}
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
By using the Software, you agree to the License, Terms and Conditions above!
#################################################
# modified by : Joerg Hochwald
# last modified : 2016-03-19
#################################################
#>
#endregion License
function global:Test-ModuleAvailableToLoad {
<#
.SYNOPSIS
Test if the given Module exists
.DESCRIPTION
Test if the given Module exists
.PARAMETER modname
Name of the Module
.EXAMPLE
PS C:\> Test-ModuleAvailableToLoad EXISTINGMOD
True
This module exists
.EXAMPLE
PS C:\> Test-ModuleAvailableToLoad WRONGMODULE
False
This Module does not esist
.EXAMPLE
$MSOLModname = "MSOnline"
$MSOLTrue = (Test-ModuleAvailableToLoad $MSOLModName)
.NOTES
Quick helper function
#>
[CmdletBinding(ConfirmImpact = 'None',
SupportsShouldProcess = $true)]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true,
ValueFromPipeline = $true,
Position = 0)]
[string[]]$modname
)
BEGIN {
$modtest = (Get-Module -ListAvailable $modname -ErrorAction:SilentlyContinue -WarningAction:SilentlyContinue)
}
PROCESS {
if ($modtest -eq $null) {
Return $false
} else {
Return $true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment