Required/Remove-QuickCommand.ps1

function global:Remove-QuickCommand {
    param(
        [String]$commandName
    )

    . $PSScriptRoot\Reserved\Get-QuickEnvironment.ps1
    . $QuickReservedHelpersRoot\Test-QuickFunctionVariable.ps1

    $commandName = Test-QuickFunctionVariable $PSBoundParameters 'commandName' 'Please enter the function/alias to remove'
    if(Test-Path "$QuickFunctionsRoot\$commandName.ps1") {
        Remove-Item -Path "$QuickFunctionsRoot\$commandName.ps1"    

        if (Test-Path function:\$commandName) {
            Remove-Item function:\$commandName
        }

        #Remove Exported Member from Module
        $psd1Location = "$(Split-Path (Get-Module QuickPackage).Path)\QuickPackage.psd1"
        $psd1Content = (Get-Content $psd1Location | Out-String)
        $psd1 = (Invoke-Expression $psd1Content)
        $NewFunctionsToExport = New-Object System.Collections.ArrayList($null)
        $NewFunctionsToExport.AddRange($psd1.FunctionsToExport)
        $NewFunctionsToExport.Remove($commandName) | Out-Null
        $psd1.FunctionsToExport = $NewFunctionsToExport;
        Set-Content $psd1Location (ConvertTo-PowershellEncodedString $psd1)
    }
    elseif(Test-Path "$QuickAliasesRoot\$commandName.ps1") {
        Remove-Item -Path "$QuickAliasesRoot\$commandName.ps1"
        
        if (Test-Path alias:\$commandName) {
            Remove-Item alias:\$commandName
        }

        #Remove Exported Member from Module
        $psd1Location = "$(Split-Path (Get-Module QuickPackage).Path)\QuickPackage.psd1"
        $psd1Content = (Get-Content $psd1Location | Out-String)
        $psd1 = (Invoke-Expression $psd1Content)
        $NewAliasesToExport = New-Object System.Collections.ArrayList($null)
        $NewAliasesToExport.AddRange($psd1.AliasesToExport)
        $NewAliasesToExport.Remove($commandName) | Out-Null
        $psd1.AliasesToExport = $NewAliasesToExport;
        Set-Content $psd1Location (ConvertTo-PowershellEncodedString $psd1)
    } else {
        Write-Output "Command '$commandName' not found."
        return;
    }
}