Reading Time: < 1 minute
Batch – Chrome and Self-built URLs

Batch – Chrome and Self-built URLs

Reading Time: 2 minutes A previous job of mine had a unique issue. Unstandardized google chromes and self-generated icons. Both of these issues caused a lot of heartaches. Today I will show you how I solved the issue of unstandardized google chromes with batch. At the…

read more…
Group Policy How-To – Folders

Group Policy How-To – Folders

Reading Time: 2 minutes Whenever we get a new client, one of the first things we do is create a new folder on the root of C called temp. If that client has a group policy we create a policy just for that. This guide is a simple one, it’s how to create a folder with…

read more…
Powershell HTML Reports

Powershell HTML Reports

Reading Time: 7 minutes From time to time, you will be asked to create a web report with data that can only be easily obtained by PowerShell. There are hundreds of modules out there that can do this, which is very nice. This blog isn’t about those modules, but instead…

read more…
Group Policy Troubleshooting – Stale DNS

Group Policy Troubleshooting – Stale DNS

Reading Time: 3 minutes This one was a fun one that really threw me for a loop. DNS is an issue no matter where you go. Recently facebook showed the world how DNS can take everything down. DNS in your domain is very important to keep alive and healthy. Having items…

read more…
Enable/Disable/Reset MFA with Powershell

Enable/Disable/Reset MFA with Powershell

Reading Time: < 1 minute How does one enable, disable, and reset a user’s MFA in Office 365? I was surprised by how much is required for enabling MFA. Enable MFA The first thing we do is Get the User from the Get-MsolUser. $user = Get-MsolUser -UserPrincipalName…

read more…
Group Policy Troubleshooting – Delegation

Group Policy Troubleshooting – Delegation

Reading Time: 4 minutes A while back, a client called and told me he made a few new group policies, and they were not working as expected. He stated some policies applied to the wrong users, while another didn’t apply at all to any users. He stated he set the security…

read more…
Test Microsoft Service Connections

Test Microsoft Service Connections

Reading Time: 2 minutes This past week I have had multiple terminals up with different clients on different terminals connected to different Microsoft services. I quickly realized that I needed to know if I was already connected or not to each Microsoft service. I…

read more…
Group Policy Troubleshooting – Internet Explorer

Group Policy Troubleshooting – Internet Explorer

Reading Time: 3 minutes Any IT professional will tell you, technology changes almost daily. Some things seem like they will never change then bam, it changes. For example the dependency on IE. In the 90s and most of the 20s it was IE. Firefox and Chrome started back…

read more…
Find Duplicates in an Array

Find Duplicates in an Array

Reading Time: < 1 minute Need to find duplicates in an array? It’s as simple as using a group object. So we take an array, and group the array by property or group of properties. Then we search those groups for any group that has a count of 2 or greater. Then we…

read more…