Exchange 2013 CU15 has been released to the Microsoft download centre! Exchange 2013 has a different servicing strategy than Exchange 2007/2010 and utilises Cumulative Updates (CUs) rather than the Rollup Updates (RU/UR) which were used previously. CUs are a complete Read More …
Author: Aboobakar Sanjar
Power Shell script changes “All” UPNs at Office 356 Tenant
Now a days I am busy working with Domain & Email services consolidation project and got an opportunity to do Vanity Domain & Mailbox migration between O365 tenant. One of the key step is to migrate the SMTP domain source Read More …
AzureAD Pass-Through Authentication and Seamless Single Sign-on
Azure AD Pass-Through Authentication and Seamless Single Sign-on are now both in public preview! Azure AD pass-through authentication Azure AD pass-through authentication provides a simple, secure, and scalable model for validation of passwords against your on-premises Active Directory via a Read More …
Powershell login Script for Office 365
Copy the following content to a notepad and save as .PS1 Start-Service WinRM Set-ExecutionPolicy RemoteSigned Import-Module MSOnline $O365Cred = Get-Credential $O365Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $O365Cred -Authentication Basic -AllowRedirection Import-PSSession $O365Session Connect-MsolService –Credential $O365Cred Open the powershell as Read More …
Create Active Directory Bulk Users from CSV using PowerShell
Create Active Directory Bulk Users from CSV It might not be common for every server administrator to need to import a large number of users at once. However, if you do, the process can be automated and save you massive amounts Read More …
How to download office 2016 by deployment tool?
How to download office 2016 by deployment tool? Download Office Deployment Tool http://www.microsoft.com/en-us/download/confirmation.aspx?id=49117 (office 2016) 2. Create a folder in C drive, we named it ODT here, run Office Deployment Tool and install to C:\ODT 2 files will in the ODT Read More …
How to reset an Active Directory user Password expiration Date
Scenarios Active directory account passwords expire set (for example, every 90 days) in most of the organizations. Configuring an AD account with Password Never Expires is not recommended due to security. I came across the scenario to extend an active Read More …
Add Users to local Administrators Group
Open the elevated command Prompt Type: net localgroup “Remote Desktop Users” Type: net localgroup “Remote Desktop Users” /add corp\it-pro
Windows Server 2012 CRASH – ERROR 0XC00002E2
If you are using windows server as a virtualized domain controller and you facing this error Your PC ran into a problem and needs to restart. We’re just collecting some error info, and then we’ll restart for Read More …
AD Computer Account Bulk Import
There is small script to import Active Directory Computer account in bulk using CSV file. Import-Module ActiveDirectory $CSV='[PATH]\Computers.csv’ $OU=’OU=Proctor,OU=Workstations,DC=domain,DC=local’ Import-Csv -Path c:\Computer.csv | ForEach-Object { New-ADComputer -Name $_.ComputerAccount -Path $OU -Enabled $False} Sample CSV File