functions/utility/Disconnect-PSCucm.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
function Disconnect-PSCucm { <# .SYNOPSIS "Disconnect" from CUCM Server .DESCRIPTION "Disconnect" from CUCM Server .EXAMPLE Disconnect-PSCucm Disconnects from CUCM Server. .NOTES General notes #> [CmdletBinding()] param ( ) Reset-PSFConfig -Module pscucm $Global:PSDefaultParameterValues.remove('*-PSCucm*:EnableException') } |