Find Exchange Mailboxes with Automatic Email Address Policy set to $False
| |

Find Exchange Mailboxes with Automatic Email Address Policy set to $False

How to Find all User Mailboxes with Auto Email Address Policy Removed. Let’s have a look at what the settings in Exchange Management Console looks like. Let’s start by running a quick one liner to search for all these users. Get-Mailbox -ResultSize Unlimited | Where {$_.EmailAddressPolicyEnabled -eq $False} Next we can see the results output…

Rename Server using #Powershell
| | |

Rename Server using #Powershell

Rename Windows Server Name using #PowerShell Being in the #LazyAdminMode lets rename our server using #PowerShell Lets start by opening  #PowerShell  and type Rename-Computer NewComputerName and that is it 🙂 quick and easy #LoveIt Next lets restart the Server using #PowerShell  to apply the new name by typing Restart-Computer   To get more information regarding…

Windows Domain Join using #PowerShell
|

Windows Domain Join using #PowerShell

Here is a quick How-To Join a “Windows Server 2012” to Windows Domain using #PowerShell Lets start by launching #PowerShell and Type Add-Computer DomainName.local 2. Next we are prompted for valid credentials to Join the Server to the domain. 3.  After Adding the credentials you will be prompted with a Warning Message saying you need…

PowerShell Training

PowerShell Training

How to get a good introduction to PowerShell. There is a lot of different information available related to  PowerShell but the #Question still remains where do you start ? What helped me find my way around PowerShell was to make it part of my #daily routine meaning i started doing the following. Check Exchange Mailbox Permissions…

Manually Update GAL in Office 365
| |

Manually Update GAL in Office 365

In this Article i will show you how to “Manually” update the AddressList in Office 365 First thing you should do is to connect Exchange Online via #PowerShell $O365Cred = Get-Credential Now type your global administrator login details, then Create a PsSession to Office 365 as follow. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential…