Page 1 of 1

Delete all Groups

Posted: Tue Jul 02, 2019 8:35 am
by fi99ggb
Hello

Is there a quick way to delete all group objects from my WF without specifying the name of the groups?

Thanks
George

Re: Delete all Groups

Posted: Tue Jul 02, 2019 8:51 am
by EViews Matt
Hello,

In two steps, you can retrieve the names of all the group objects and then delete them en masse. In a program,

Code: Select all

%tmp = @wlookup("*", "group) delete %tmp
Or from the command window,

Code: Select all

string tmp = @wlookup("*", "group) delete {tmp} tmp

Re: Delete all Groups

Posted: Tue Jul 02, 2019 9:17 am
by fi99ggb
Very clean. Thank you.