Functions/Logout.ps1


function Logout {
    [CmdletBinding()]
    param (

    )

    Stop-ProcessSoft msedge -Silent
    Stop-ProcessSoft -ProcessName chrome -Silent
    Stop-ProcessSoft -ProcessName EXCEL -Silent

    logoff

}