Skip to content

Instantly share code, notes, and snippets.

View kamronbatman's full-sized avatar

Kamron Batman kamronbatman

View GitHub Profile
@kamronbatman
kamronbatman / UninstallCWRMM.ps1
Last active November 21, 2025 18:07
Uninstall ConnectWise RMM / Continuum ITSPlatform & SAAZOD
# CW RMM Uninstaller Script
# This script forcefully removes the ConnectWise RMM agent and its components.
# Run with administrative privileges.
$TranscriptPath = "$env:SystemDrive\CWRMM-Removal\CWRMM-Uninstall-$(Get-Date -Format yyyyMMdd-HHmmss).log"
New-Item -Path $TranscriptPath -ItemType Directory -Force | Out-Null
Start-Transcript -Path $TranscriptPath -Append | Out-Null
Write-Output ""
Write-Output "Beginning CW RMM Uninstall"
@kamronbatman
kamronbatman / Configure-DellWOL.ps1
Last active December 12, 2025 22:36
Configures Dell & Windows Wake-on-LAN Remotely using Powershell
<#
.SYNOPSIS
Enhanced Wake-on-LAN configuration script for Dell machines.
Configures BIOS and network adapter settings for reliable WOL.
.PARAMETER ComputerName
The target Dell computer's hostname or IP address.
.NOTES
Requires Administrator privileges on both the server running the script and the target client.