This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .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. |
OlderNewer