Files
Backup/_NDGOV_WindowsTeam/ITD.Infra-Servers-PowerShellUniversal.Test/ITD-Windows.General/Remove-ITDSolarwindsNode_script.ps1
T
Zack Meier 1d304511b8 update
2026-04-15 15:45:50 -05:00

10 lines
279 B
PowerShell

Param(
[Parameter(Mandatory = $true)]
[string[]]
$ComputerName
)
ForEach ($cn in $ComputerName) {
Write-Verbose -Message "Attempt Solarwinds removal for $cn" -Verbose
Remove-ITDSolarwindsNode -ComputerName $cn -Credential $Secret:svcitdiaasauto -Verbose
}