I don't have a way to test. Start SAS with -sspi option. Add this in your SAS short cut "target". %let filepath=http://[rest of the path].xlsx; filename out "...\abc.xlsx"; proc http in=in out=out url="&filepath." method="get" webpassword="&pass." webusername="&user."; run;
... View more