This VB Script will connect to a remote computer, and un-tick the requirement for a password to uninstall in the registry.
strComputers = "computer"
arrComputers = Split(strComputers, ",")
For Each strComputer in arrComputers
On Error Resume Next
Const HKEY_LOCAL_MACHINE = &H80000002
Set objReg = GetObject("winmgmts:\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\INTEL\LANDesk\VirusProtect6\CurrentVersion\AdministratorOnly\Security"
ValueName = "LockUnloadServices"
objReg.GetDWORDValue HKEY_LOCAL_MACHINE, strKeyPath, ValueName, strValue
If strValue=1 Then
objReg.setDWORDValue HKEY_LOCAL_MACHINE, strKeyPath, ValueName, 0
End If
ValueName = "UseVPUninstallPassword"
objReg.GetDWORDValue HKEY_LOCAL_MACHINE, strKeyPath, ValueName, strValue
If strValue=1 Then
objReg.setDWORDValue HKEY_LOCAL_MACHINE, strKeyPath, ValueName, 0
End If
Next
This command will remove Windows Defender:
psexec \\computer MsiExec.exe /norestart /q/x{A06275F4-324B-4E85-95E6-87B2CD729401} REMOVE=ALL
These commands will remove all legacy Symantec Coprorate products:
psexec \\computer MsiExec.exe /norestart /q/x {BA4B71D1-898E-4306-AE87-8BA7A596F0ED} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {5a633ed0-e5d7-4d65-ab8d-53ed43510284} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {a011a1dc-7f1d-4ea8-bd11-0c5f9718e428} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {473af7d0-b864-4699-9974-df570c5b6dce} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {50e125d1-88e5-48ce-80ae-98ec9698e639} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {33CFCF98-F8D6-4549-B469-6F4295676D83} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {D75D48AF-E2D5-49EF-9571-EE7AFB6565B4} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {0698CECB-9072-47B1-AEA1-94CA350989B8} REMOVE=ALL
psexec \\computer MsiExec.exe /norestart /q/x {E9FA3047-0b15-4e19-85ce-ee7fc6e60f99} REMOVE=ALL