3 Tips To Getting Started With Powershell!

Now I’m just at the beginning of my powershell journey however I’ve discovered a couple of tricks that really help me solidify my scripts: The first tip is to useĀ “get-command *yourmodule*” The first step in any one of my powershell scripts is first figuring out, what is possible with powershell CMDLETS. This is why I …

Bulk User Creation in Powershell

It seems like the most common way to create users in powershell via the ad module is by using the “import-csv” command and then running a foreach-object on new-aduser. I got the original script from a couple of people on reddit and some blogs on Google. There’s not much uniqueness to it besides taking the …