DNS Scavenging

Here is a quick overview of how DNS Scavenging works Each forward and reverse zones are set with aging properties for both no-refresh and refresh intervals usually you want to make these intervals combined equal …

Slipstream Windows Updates

I found that I was still missing 70+ updates after downloading updates with wsusofflineupdater so I manually downloaded them from the update catalog and added them in. Powershell Script for slipstreaming updates (https://www.reddit.com/r/sysadmin/comments/4ak3h7/powershell_script_to_slipstream_windows_updates/) cls #This …

Backup Bitlocker Keys Script

Enable PSRemoting psexec \\Computername -s powershell Enable-PSRemoting -Force   Then Backup key to Active Directory $s = New-PSSession Computername Invoke-Command -Session $s -Scriptblock {$keyID = Get-BitLockerVolume -MountPoint c: | select -ExpandProperty keyprotector | where {$_.KeyProtectorType …