Saturday, December 12, 2020

SECURITY UPDATES EXCHANGE SERVER - DECEMBER 2020

On December 8, 2020 Microsoft released a number of security updates for Exchange server. Despite the fact that Exchange 2010 is out of support at all, an important security update for Exchange 2010 was released as well.

Exchange versionKB ArticleDownload
Exchange 2010 SP3 RU31KB4593467Download
Exchange 2013 CU23KB4593466Download
Exchange 2016 CU17KB4593465Download
Exchange 2016 CU18KB4593465Download
Exchange 2019 CU6KB4593465Download
Exchange 2019 CU7KB4593465Download

Monday, May 11, 2020

PowerShell Script: Get Inactive AD Users


Simple script to show inactive Active Directory users. Export data to CSV.
Based on Last Logon Time Stamp.

Link for download:
Get-InactiveADUsers-CSV.ps1


Tuesday, April 21, 2020

How to view Msol User Groups in Powershell

Sometimes th administrator needs to know which groups the Office 365 user is member of.
You can use the command Get-MsolUserGroup to resolve this issue.

Installtion
Install-Module -Name Microsoft365.Toolbox

Usage
Import-Module ActiveDirectory.Toolbox

Commands
Get-MsolUserGroup [-UserPrincipalName]





Note:
#Requires -Modules MSOnline

Monday, February 17, 2020

Happy Birthday, Active Directory!


 


Image result for active directory 2000
 
Introduction of Active Directory to the world was part of the release of Windows 2000 Server on February 17, 2000.

Happy Birthday 20th, Active Directory!

Friday, February 14, 2020

How to view BitLocker Recovery Key in PowerShell


Installtion

PS> Install-Module -Name ActiveDirectory.Toolbox


Usage

PS> Import-Module ActiveDirectory.Toolbox



Commands

Get-ADComputerBitLockerInfo [[-ComputerName] <string[]>]

or

Get-ADComputerBitLocker [[-ComputerName] <string[]>]

Note:
#Requires -Modules ActiveDirectory

How to view LAPS password in PowerShell

Installtion
PS> Install-Module -Name ActiveDirectory.Toolbox
Usage

PS> Import-Module ActiveDirectory.Toolbox




Commands

Get-ADComputerLAPSInfo [[-ComputerName] <string[]>]

or

Get-ADComputerLAPS [[-ComputerName] <string[]>]




Link for download


Note:
#Requires -Modules ActiveDirectory