Reading Time: < 1 minute
Access PDQ Info with Powershell

Access PDQ Info with Powershell

Reading Time: 5 minutes You read that right, access PDQ information with PowerShell. You will need the PS SQL Lite module first. This module will allow you to access the SQL lite server. The second thing you will need is a Powershell script on the server accessing the…

read more…
Ping a /24 Subnet with Powershell

Ping a /24 Subnet with Powershell

Reading Time: 2 minutes A friend asked me how to ping a /24 subnet the other day. I thought it would be a good little blog post. This is a one-liner. Here we go. 1..254 | ForEach-Object {Test-Connection -ComputerName "10.10.1.$_" -Count 1 | Select-Object…

read more…
Mitel Director NCC logs

Mitel Director NCC logs

Reading Time: < 1 minute One of the things that have helped me throughout my struggles with Mitel/Shoretel is the NCC logs inside the shoreline data folder. These logs can be hard to read, and very aggravating. Let’s look at a log example. Below is a table that…

read more…
Local Site Found by a Universal device

Local Site Found by a Universal device

Reading Time: 3 minutes We have multiple locations with backup hosted sites. These sites are designed to allow the end-user to access the information they need when the network is down. They are set up with a local database and some basic asp.net coding. However, the…

read more…
Password Notifications

Password Notifications

Reading Time: 5 minutes I wanted to share a little script that has changed the world at my current company. It’s a simple password email notification script. What it does is grabs the users’ whos passwords about to expire. Then it emails that user with instructions on…

read more…
PSBoundParameters – Credentials

PSBoundParameters – Credentials

Reading Time: < 1 minute The PSBoundParameter is an amazing tool that will clear your mind of worries about non-mandatory parameter sets. In my Super Help Desk module I use the credential flag. Inside this flag, I tell the system to use the credentials provided or…

read more…
SHD – Disable Inactive Users

SHD – Disable Inactive Users

Reading Time: 3 minutes Now we have a way to find the disable OU, and to disable a user, now it’s time to disable old accounts. We do this by targeting the Last Logon dates. Word of warning before we continue. When you do this, target a single OU instead of all of the…

read more…
SHD – Disable User

SHD – Disable User

Reading Time: 4 minutes My last blog was about how to find the disabled user OU. Now we will go over how I disable users and move them around to the disabled OU. The next blog will combine all this together and remove inactive accounts that are within a set OU. Let’s…

read more…
SHD – Find Disabled OU

SHD – Find Disabled OU

Reading Time: 2 minutes Have you ever started in a company and there was no documentation? The disabled OU isn’t named “Disabled Users” and things are just what the heck? This powershell script will help find that disabled user OU. Believe it or not, it’s a one liner….

read more…