Public/Remove-Company.ps1

<#
.SYNOPSIS
Removes a company profile from SPMTools.
 
.DESCRIPTION
Remove-Company removes the company profile information from disk.
There is no way to recover this information.
 
.PARAMETER Name
The name of the company to remove.
 
.EXAMPLE
Removing the company profile for Example Services, LLC.
 
Remove-Company -Company ExampleServices
 
 
.NOTES
Company profiles are stored in %APPDATA%\.SPMTools
Credentials will be removed as well.
 
#>


Function Remove-Company {
    [cmdletBinding()]
    Param()
    DynamicParam {
        $ParameterName = 'Name'
        $RuntimeParameterDictionary = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary
        $ParameterAttribute = New-Object System.Management.Automation.ParameterAttribute

        $ParameterAttribute.Mandatory = $true
        $ParameterAttribute.Position = 1
        $ValidateSetAttribute = New-Object System.Management.Automation.ValidateSetAttribute($Script:Config.Companies.Keys)

        $AttributeCollection = New-Object System.Collections.ObjectModel.Collection[System.Attribute]
        $AttributeCollection.Add($ParameterAttribute)
        $AttributeCollection.Add($ValidateSetAttribute)
 
        $RuntimeParameter = New-Object System.Management.Automation.RuntimeDefinedParameter($ParameterName, [string], $AttributeCollection)
        $RuntimeParameterDictionary.Add($ParameterName, $RuntimeParameter)
        return $RuntimeParameterDictionary
    }    
    Begin {
        $CompanyName = $PSBoundParameters.Name
        if(!$Script:Config.Companes.ContainsKey($PSBoundParameters.Name)) {
            Throw "Company '$CompanyName' does not exist"
        }
    }
    Process {
        Set-Company -Company $CompanyName -RemoveADCredential
        Set-Company -Company $CompanyName -RemoveOnPremCredential
        Set-Company -Company $CompanyName -RemoveOnlineCredential
        $Script:Config.Companies.Remove($CompanyName)
    }
    End {
        Write-SPMTConfiguration
    }
}