BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
woo
Barite | Level 11 woo
Barite | Level 11

I also tried running both code after putting brand new zipped file (unprocessed before),

 

x 'unzip d:\test\*.zip';

run fine and did nothing 

 

 

%sysexec unzip d:\test\*.zip;

prompting same two windows as i mentioned above 

 

Patrick
Opal | Level 21

You need to set option "options noxwait;" as else your SAS session waits for the Dos shell to exit - which never happens. 

http://support.sas.com/documentation/cdl/en/hostwin/67962/HTML/default/viewer.htm#n0xwt90ik8vxdrn137...

 

 

Astounding
PROC Star

I agree with Patrick ... NOXWAIT is required, and may be all that is missing at this point.  If the results are still not successful, I would try breaking the steps into pieces as follows:

 

options noxwait;

x 'cd d:\test';

x 'dir';

x 'unzip *.zip';

 

The DIR command isn't really necessary once things are working properly, but it may help diagnose what is happening.  I'm hoping this works, because after this I'm out of ideas.

woo
Barite | Level 11 woo
Barite | Level 11

infect i was using options noxwait, and i was prompting that message...don't know why..but appreciate your efforts and time...Thank you so much...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 18 replies
  • 20607 views
  • 1 like
  • 5 in conversation