I’ve written a quick PowerShell script to allow you to choose your Channel from a Menu. The script sets the appropriate registry key to define…
Microsoft Teams and Microsoft 365 news and opinions
I’ve written a quick PowerShell script to allow you to choose your Channel from a Menu. The script sets the appropriate registry key to define…
First off, this is a really bad idea most of the time. You shouldn’t run scripts on your system you don’t understand/haven’t reviewed and that…
One of the challenges of working with so many Office 365/Windows Live ID’s/Microsoft accounts is that you are constantly logging in and out of them.…
If you find your network has the wrong Firewall profile, you can set it with PowerShell $Profile = Get-NetConnectionProfile -InterfaceAlias Ethernet1 $Profile.NetworkCategory = Private Set-NetConnectionProfile…
Just discovered there is a simple PowerShell Cmdlet for this, saves having to dig into Group Policy $Domain = “domain.com” Set-ADDefaultDomainPasswordPolicy –Identity $Domain -PasswordHistoryCount 0…