Bitsadmin Download Error

0

I saw a feed referring to downloading via bitsadmin (v.7.5.7601.17514) on Windows 7.

I have trouble implementing this myself and continue to get errors when running the code when running from a batch file(which is my requirement)

Errorcode: 0x80190194 Error Context: 0x00000005

The code is as follows:

bitsadmin.exe /Transfer myDownloadJob /download /priority normal https://sites.com/sites/Shared%%20Documents/Reporting/HP.zip C:\Users\%USERNAME%\Desktop\HP.zip

Can you seen anything that would hinder this code from running? The site is a sharepoint.

command-line
download
batch-file
asked on Super User Oct 8, 2014 by Charlie • edited Oct 9, 2014 by Charlie

1 Answer

0

This seems to correspond to a HTTP 404 (File Not Found) status.

Try to replace %%20 with %20 in https://sites.com/sites/Shared%%20Documents/Reporting/HP.zip.

answered on Super User Apr 27, 2016 by Anthony O.

User contributions licensed under CC BY-SA 3.0