nsis-nscurl icon indicating copy to clipboard operation
nsis-nscurl copied to clipboard

NSIS plugin with advanced HTTP/S capabilities

Results 3 nsis-nscurl issues
Sort by recently updated
recently updated
newest added

## Limitation In-memory downloads are currently possible, but accessing the remote content is very limited. A typical in-memory transfer looks like: ```nsis NScurl::http "https://...url..." "Memory" /return "@id@" /end Pop $R0...

I use the NScurl plugin to download a file like this: ``` NScurl::http GET "$5" "$6" /SILENT /CANCEL /INSIST /TIMEOUT 30s /CACERT "${TEMP_DIR}\cacert.pem" /RETURN "@ERRORTYPE@:@ERRORCODE@" /END ``` Everything works fine,...

NScurl currently depends on [libcurl-devel](https://github.com/negrutiu/libcurl-devel). A better approach would be to build `curl` as [vcpkg](https://vcpkg.io) port.