Scripting AzCopy for automated upload

Today we will discuss how we can use powershell & script the azcopy to upload the files to azure. This can be used for office 365 pst imports or other work that you do. Here is the Code Snippet from one of my office 365 scripts to upload archives & also do error checking. #################Azure…

Shared Mailbox Creation

Sharing a script that we have written to create Shared mailboxes. You can customize it as per your needs. This script is a great example of using DSMOD/DSADD in powershell. It does plenty of things , many of these are dependent on the process used in the enviornment so this can act as a sample…

AZURE Reserve Public IP Address – Classic/ARM

Today we will talk about reserving the Public IP Addresses for Azure. This is different for Classic & ARM model. There is a need for most organizations to reserve some IP addresses as they don’t want to loose these in case if site/vm is down/de-allocated. Important thing to note here is that you can reserve…

Certificate expiry Alert

This script has been written long ago but started using it now, not a complex logic/code but assisted few of our teams to monitor their enviornment certificates 60 days before expiry. here is what it does: Read the CSV file   Read  Cert name, expiry , alert email & Type $CertName = $i.CertName $Expiry =…

Use DS Commands with Powershell

In this blog post I will share a TIP on how to use DS utilities inside your scripts. There are situations when you have limitation of using AD modules or you can’t use third-party Shells like Quest AD Shell. DS utilities are very handy & can do most of the things related to active directory. Sharing…