How to Start Transcript to Record the PowerShell Session

The Start-Transcript cmdlet creates a record of all or part of a Windows PowerShell session to a text file. The transcript includes all command that the user types and all output that appears on the console. Starting in Windows PowerShell 5.0, Start-Transcript includes the host name in the generated file name of all transcripts. This is especially useful when […]

SID

How to Convert SID to User Name using PowerShell

Some time we will be having requirement to convert SID to Group/User Name or Group/User Name to SID. Here I will show you simple way to do that using PowerShell. How to Convert Group/User Name to SID: Syntax: $Name = “Group or User Name”   (New-Object System.Security.Principal.NTAccount($Name)).Translate([System.Security.Principal.SecurityIdentifier]).value Example: $Name = “Trace-Restriction”  (New-Object System.Security.Principal.NTAccount($Name)).Translate([System.Security.Principal.SecurityIdentifier]).value How to Convert  SID to Group/User […]

How to Disable Unified Messaging for Bulk Mailboxes Using Powershell

In this article, I am explaining how to disable the Unified Messaging for Bulk Mailboxes using Powershell Disabling the Unified Messaging for the single user is using GUI mode of the Exchange Management Console is easy by right-clicking the Mailbox and disable unified messaging is option. Doing the Manual Work using EMC for bulk users is a […]