I am trying to use the Custom Task to list and stop the active SAS sessions. I downloaded the dll files from
and then I created a folder named "Custom" in C:Program FilesSASEnterpriseGuide4.3 and pasted the dll file in this folder.
But when I tried to run the Custom Task from SAS EG, it showed the error saying "Error: Procedure IOMOPERATE not found".
I, also, tried to run the procedure using following code with my credentials
%let coection=
'iom://myserver.company.com:8581;bridge;user=sasadm@saspw,pass=Secret01';
/* Get a list of processes */
proc iomoperate uri=&coection.;
list spawned out=spawned;
quit;
found this code on http://blogs.sas.com/content/sasdummy/2016/02/15/using-proc-iomoperate/
I am not able to figure out where am I doing wrong?
