Search
-
Recent Posts
- Is it The Time to Change your IT Support Provider?
- Why do more businesses need cloud computing services?
- Advantages of Hiring Real-Time Infrastructure Monitoring and Smart Tracking System for Remote Businesses
- The Need for Dedicated Remote Server Monitoring Services in 2021
- Common Email Threats and How to Deal with Them Effectively
Archives
Categories
Meta
Author Archives: Dev yadav
Invalid Soft match dirsyncc
Find the AD object guid by running the following command from command prompt on AD server C:\Users\techadmin>ldifde -f user.txt -d “CN=User Sanfeliz,OU=Drafting,OU=03 Emp loyees,OU=02 Users Active, DC=aws,DC=miami” Connect to Windows Azure AD and find the same from Azure get-msoluser -userprincipalname …
Posted in Uncategorized
Leave a comment
Powershell script to export Mailboxes
To export all mailboxes in exchange 2010 and exchange 2013 Copy the code below in a notepad window and save it as a powershell script. $mailboxes = get-mailbox foreach ($mailbox in $mailboxes) { new-mailboxexportrequest -mailbox $mailbox -FilePath \\server\share\$mailbox.pst } To …
Posted in Exchange Powershell Scripts
Leave a comment
Asterisk Active directory schema extension
I came across a request where a client want to add Asterisk LDAP extenstion attributes to get populated in Windows active directory. After searching internet, i didn’t come across a single help article to do that. After doing lot of …
Posted in Asterisk, Blog Category
Leave a comment