Public/Disconnect-Windows365.ps1
|
Function Disconnect-Windows365 { <# .SYNOPSIS Disconnects from Windows 365 and clears the token cache. .DESCRIPTION Disconnects from Windows 365 and clears the token cache. .EXAMPLE Disconnect-Windows365 #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')] param() begin { $Context = Get-MGContext Write-Verbose "MGContext: $($Context)" } process { Disconnect-MgGraph -ErrorAction SilentlyContinue $script:Authtime = $null $script:Authtoken = $null $script:Authheader = $null Write-Verbose "Disconnected from Windows 365" } } |