by admin | Nov 26, 2020 | Server 201x
Recently had a requirement to replace an old Server 2008 file server with something a little newer. Rather than attempt an in-place upgrade we decided it was simpler to build the new server (2016 in this instance) afresh and then follow the simple instructions as...
by admin | Nov 5, 2020 | Exchange Server, Microsoft 365, PowerShell
A simple script to export a list of licenced users from your M365 tenant: Get-MSOLUser | Where-Object { $_.isLicensed -eq “True”} | Select-Object DisplayName, UserPrincipalName, isLicensed | Export-Csv C:Temp365LicencedUserList.csv Note that this does not...