I have a need to remove a package or probe from many robots. I need a script that will do this for me without a lot of manual intervention.
Release: Any
Component: pu command
@ECHO OFF
SET PASSWORD=<password>
FOR /F "tokens=*" %%A in (address_list.txt) do (
pu.exe -u administrator -p %PASSWORD% %%A/controller inst_pkg_remove cdm cdm 0
)