Multi-Account Containers
I have been in IT for a little over 10 years and have tried various browsers and plugs/extensions. Some are extremely useful, and some, are not so. I abandoned Firefox for a while because it was not compatible with the required software. Recently I have returned back to firefox because of Multi-Account Containers. Firefox has a unique extension...
Mental Health Links
I have been through a few years of hard times with mental health. Mental health is no joke. Mental health is Health and that's final. This Mental Health Links page is designed to help those struggling with mental health. In the IT field, over 89% of techs feel like...
Access PDQ Info with Powershell
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 module information....
Ping a /24 Subnet with Powershell
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 Source,Destination,Address,Status} |...