Debloat Windows

Debloat Windows From Unnecessary Apps and Services While the script is tried and tested, I would suggest you proceed with caution as it may break things. I have added caveats where to tread carefully in the steps below, so follow the process without fail. If you have an older computer Read more…

Exchange – Useful Powershell Commands

Here is some useful Powershell Commands for reports: To install the latest public version of the module, run the following command Set-ExecutionPolicy RemoteSigned Install-Module -Name ExchangeOnlineManagement To Connect to Exchange Online with Powershell using modern authetication Import-Module ExchangeOnlineManagement Connect-ExchangeOnline Disconnect-ExchangeOnline List All Email Adresses in a .txt file Get-recipient -resultsize unlimited | select Name -expand Read more…

Setup VPN L2TP/IPsec

Set up L2TP/IPSec VPN on Windows Server 2019 Introduction A VPN or Virtual Private Network is used to securely tunnel the data from a local computer to a remote server. You can visualize VPN as a private network distributed across the internet or public network. Using VPN, different devices can Read more…

Configure DKIM with Office 365

Description Many administrators are familiar with SPF (Sender Policy Framework) as a system to declare and verify who can send emails from a domain. In the fight against spam and phishing, SPF is not enough anymore. DKIM (DomainKeys Identified Mail) is an email authentication system based on asymmetric cryptographic keys. Read more…

VBS Scripts – Drives,Printers & Fonts

Drives.vbs ‘Remove Drives ON ERROR RESUME NEXT DIM objNetwork,colDrives,i SET objNetwork = CREATEOBJECT(“Wscript.Network”) SET colDrives = objNetwork.EnumNetworkDrives FOR i = 0 to colDrives.Count-1 Step 2 ‘ Force Removal of network drive and remove from user profile ‘ objNetwork.RemoveNetworkDrive strName, [bForce], [bUpdateProfile] objNetwork.RemoveNetworkDrive colDrives.Item(i),TRUE,TRUE NEXT ‘Connect Drives On Error Resume Next Read more…