Set Telemetry with Powershell
Windows 10 and 11 have a unique feature called telemetry. This feature allows Microsoft to track your device. For security reasons, it's best to disable this, however, for a home level, this feature is useful. So, let's Set Telemetry with Powershell. Registry Keys and Services There are 4 registry keys that can do this....
Disable Shared Mailbox Sign-Ins
As part of the exchange online hardening process, one must disable the sign-in ability of shared mailboxes. This process is simple. You will need to exchange Online and the MS Online modules. First, we will grab all the shared mailboxes using the exchange online. Then...
Oneliner Password Generator
Passwords, Passwords, and more Passwords. Let's generate a 16 character password that is complex and random that you will have to save into your password manager because you will never remember it. The Single Line [string]::Join("",(1..16 | ForEach-Object...
Dad Jokes
One of the things I love to do is add a Dad joke to my reports. Reddit has some good ones. What's cool about Reddit is they have a JSON backend that can be used and Used I do. The Function Function Get-DadJoke { $DadJoke = Invoke-RestMethod -Uri...