Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Power-Cbr
1.2.0
Instance/Get-CurrentInstance.psm1
# Get-CurrentInstance.psm1
Function
Get-CurrentInstance
{
process
{
if
(
-not
$Config
.
CurrentInstance
)
{
throw
"No current instance is set."
}
else
{
$Config
.
CurrentInstance
}
}
}