Jeanne Vural wrote: > From the SQR Report I invoke > 'c:\windows\system32\cmd.exe cmd.exe /c cd /d c:\OpenSSL-Win64\bin&curl ' to > run curl using their call system method.
This doesn't seems correct. Try: c:\windows\system32\cmd.exe /c "cd /d c:\OpenSSL-Win64\bin && curl .. whatever" Or put everything in a .bat-file and feed that to cmd. -- --gv ------------------------------------------------------------------- List admin: https://cool.haxx.se/list/listinfo/curl-library Etiquette: https://curl.haxx.se/mail/etiquette.html
