OSD: Downloading multiple files is very slow

I has a exe software. It is not a single file package, it contains a lot of files. when I installed this software in OSD, I found it would spend 15~20minutes to download files.
It was very strange. The software is only 750 mb size. the speed of downloading 6 GB OS image is also much faster than this software.
I know downloading multiple files is slower than downloading a single file, if their size are same.
But the downloading of multiple files in OSD is "really" very slow.
Why?  Cause of BITS or RDC?  How to fix it?
PS:I update to SCCM 2012 R2 with CU1,  add the below into SCCM
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\DP]
"RamDiskTFTPBlockSize"=dword:00004000
http://windowsdeployments.net/how-to-speed-up-pxe-boot-in-wds-and-sccm/
Now, the download speed up to 4 minutes, but it still slower than the normal copy & paste. 
Test result:
OSD: 2.6G
single image, 2 minutes
OSD: 750m multiple files, 4 mintues
after OSD, copy & paste from network drive, 750 multiple files, 1 mintue

I had updated to CU1 and add this into regedit . It is quicker than before, but it still slower than the normal.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\DP]
"RamDiskTFTPBlockSize"=dword:00004000
http://windowsdeployments.net/how-to-speed-up-pxe-boot-in-wds-and-sccm/
Download 2.63 G OS image:
2min
Download 750 M multiple
files 4min

Similar Messages

  • Saving files is very slow!!!

    Since I installed (updated) from CS5 to CS5.1, saving files is very slow. It takes like 4 minutes save a 2048 X 2048 png file which used to take seconds in CS5.
    I am not sure what changed... I completely uninstalled all versions of Photoshop. Re-downloaded from the website. Deleted my user preferences and the problem remains.
    Why is saving so slow all of a sudden?
    Using Windows 7 - 64 bit

    Hm, that's kind of alarming.  Is it happening with all files or just PNG.
    If every file does that, it could be a possible indication that your disk is going bad...
    Click Start and type view events into the search box. 
    When View event logs comes up, click it.
    Navigate down into Windows Logs > System and see if there are any Error events there that indicate problems with your disk.
    If this isn't the problem, it's possible that Photoshop is having to wait for a disk to spin up to be able to access it.  Do you see the problem occur when you save again right away?  Are you using an external drive for either file storage or as a scratch disk in Photoshop?
    Lastly, you may have a stored printer or drive connection to a location on your network that does not exist now (or is not responding) and that has to time out before completing the operation.  Have you changed anything in your network lately?
    -Noel

  • My iPod touch is downloading and updating apps very slow more than an hour.

    My iPod touch 4th gen 32gb verson 4.3.1 is downloading and updating apps very slow more than an hour. I just got it a day ago and I backed up all my apps music and pictures and videos from iTunes. Few months ago I had an iPod touch but I lost it and it was working fine. Luckily before I lost it i backed up everything to iTunes so now everything that was in my old iPod is now in my new iPod. Anyways, When I first bought it I straight away backed up everything and saw that i had many updates on my apps. I started updating it all at once but even the first one was not loading at all and mty ipod was hanging many times during the updates so i cancelled all the updates. i even tried it on my computer and it was taking forever but my laptop does updating and downloading apps slower than my ipod so that doesnt matter. Even when I download an app on my iPod now its take more that an hour. So i was wondering, is my iPod slow cause I backed up too many things when i just got it . I have about 120 apps 150 plus photos and 70 videos and I backed it up all in one night on the day i got my ipod. So now I'm restoring my iPod and updating it to IOS 5 and see what happens. Hopefully it will be faster then but I still need to know what is main problem of m iPod hanging and slow updating/downloading. Need a reply ASAP. Thanks

    Still you can switch it off while syncing.
    You can also do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears)

  • Download multiple files in one step

    Hi,
    my first try with acrobat.com with uploading some pictures which I like to share with friends led me to the question, how they can download my 18 pictures in one step. I put them in a workspace and gave them access. You can mark all files, but there is no menu point which offers you to download all files in one step.
    Is there a way to do this in one step?
    Greetings
    Mario

    Hello Mario,
    Thank you for posting. Unfortunately, there is currently no way to download multiple files at once; this functionality is high on our list of planned enhancements, so I encourage you to stay tuned for future releases.
    Best regards,
    Rebecca

  • Aria2 does not download multiple files at a time

    I'm trying to speed up my system upgrades by using aria2, but it won't speed up anything as it does not download multiple files at a time.
    As per this wiki post, https://wiki.archlinux.org/index.php/Im … erformance , "using aria2", I've installed aria2 and added the line
    XferCommand = /usr/bin/aria2c --allow-overwrite=true -c --file-allocation=none --log-level=error \
    -m2 --max-connection-per-server=2 --max-file-not-found=5 --min-split-size=5M --no-conf \
    --remote-time=true --summary-interval=60 -t5 -d / -o %o %u
    to the options section in pacman.conf. Pacman still works, but it isn't sped up. When pacman -Syu'ing, a normal line shows:
    #1 SIZE:1.3MiB/2.0MiB(63%) CN:1 SPD:50.0KiBs ETA:15s
    What's going on?
    P.S. I use the line reflector -l 5 --sort rate --save /etc/pacman.d/mirrorlist before doing a system upgrade.
    Last edited by bruno321 (2011-05-15 15:27:45)

    Using aria2c will download files over 5MB with multiple connections but will not download multiple files at the same time. Pacman calls aria2c with the first url, waits for it to finish, then calls aria2c with the second etc...
    If you want to download multiple packages simultaneously, see http://xyne.archlinux.ca/projects/pacman2aria2/

  • Download multiple files with 1 HttpURLConnection

    Hi,
    We have an application that downloads small text files (< 2 Kb) from a webserver. These files are downloaded 1 by 1 when needed. We open a HttpURLConnection, download 1 file and close the connection immediately afterwards. This is done for each file and hence produces a significant overhead.
    For performance reasons (both client and server side), we would like to open a connection to the webserver once, download a number of files and then close the connection.
    Currently, our code roughly looks like:
    InputStream is;
    HttpURLConnection con;
    int resp;
    try {
        URL url = new URL(location);
        con = (HttpURLConnection)url.openConnection();
        resp=con.getResponseCode();
        if(resp==HttpURLConnection.HTTP_OK) {
            is = con.getInputStream();
            // ... read data from the InputStream
            is.close();
    } catch (MalformedURLException murle) {
        murle.printStackTrace();
    } catch (IOException ioe) {
        ioe.printStackTrace();
    }Is it even possible to download multiple files from a web server using a HttpURLConnection? If so, how? :-)
    Please note that the solution should be compliant with J2SE 1.1, since we are writing an MHP application!
    Thanks in advance...

    Seerix,
    You might be able to fudge the settings of the URL class :
    Class URLStreamHandler
    Method protected void setURL
    Sets the fields of the URL argument to the indicated values. Only classes derived from URLStreamHandler are supposed to be able to call the set method on a URL.
    But this is not the best way, as URLs are supposed to be constant.
    Your alternative, is to create a Socket, deal with the protocol requirements
    (i.e. HTTP GET, POST and so on) then you can request any number files
    on that same connection. The only thing that this saves is connection build up and tear down.
    You could also multi-thread your original code ....... Although that might
    only save you some network transit time.
    -Cludge

  • Download using wifi is very slow for my ipad may i know what is the problem?

    Downloading using wifi is very slow for my ipad may i know what is the problem

    Maybe your internet speed is slow. Check your download speed.
    https://itunes.apple.com/sg/app/speedtest.net-mobile-speed/id300704847?mt=8

  • Is it possible to download multiple files as zip from Amazone S3 directly

    We need to download multiple files from Amazone S3 at a time in a zipped format. We use flex 3 and coldfusion 8 for development.

    Of course it is. Try it. Or, asked differently, what did you try that did not work?

  • Is it possible to download multiple files from FTP

    Hi,
    Is it possible to download the multiple zip files from FTP.I need to download multiple files from FTP into temporary folder in my local machine. Please help me.
    Regards,
    ahamad

    Of course it is. Try it. Or, asked differently, what did you try that did not work?

  • Download Multiple Files?? (Servlets/Jsp)

    Hello Forum Members,
    I need to download multiple files from Server on a single click of button thats says "download". Using Servlets/Jsp only( I don't want to use applets/or Zip the files).
    The scenario would be on the browser I will have 'n' number of checkboxes each corresponding to a file and there is a button that say's download. Once I click "download" the browser should prompt me to save in a directory.

    I don't know if there's a Java implementation already out there (i'm sure there must be), but I think you'd need a separate Download Manager to be able to handle multiple file downloads. I'm all but positive that the standard download isn't gonna cut it, especially if the user selects a whole bunch of files. I don't think the built in download function allows for more than one file to download at a time, so unless you want a whole bunch of download windows all going at once, you'll need to either find (or implement) something that can.

  • Download multiple files

    hi,all
    downloading files from server has been discussed for many times, i have known how to download one file after reading some older topics,but now i want to download
    multiple files,and I want browser prompt "Save As" only one time, then all the files would be downloaded to the same location,can anybody give me some advice?
    thanks & regards

    Hi,
    I don't think it sounds like what you're tyring to do would be possible for security reasons. I'd be quite worried if a browser was allowed to save multiple files after only asking once.
    I guess one solution would be to zip all the files up into one zip file (see JavaDocs for java.util.zip) and then transfer this zip file (this would also probably help with download times). This may not be the ideal solution for you though.

  • Reading pdf files is very slow on my nokia 5800 mobile phone

    Reading pdf files is very slow on my nokia 5800 mobile phone. I have Adobe Reader LE 2.5 and when i open any pdf file, it runs very slow and the scrolling is very slow in spite of opening pdf files which contain text only and in black color. I have tried also wrap text option and the problem persists. Is there anyway to reduce the quality of the pdf displayed on my mobile?? and What i have to do to make it run smooth and fast to make reading on my mobile possible???
    Thanks in advance

    I had the same problem and I culd not find the solution. I think it is a nokia issue, as I read it in several webs

  • HT204266 my facebook application downloads pictures and videos very slow.Pictures are blurred as well.what to do.

    My facebook app on Ipad downloads pictures and videos very slow. a few of the pics are also blurred.What to do?

    Hi Skye_Starkey,
    Im sorry to hear that you are having issues with your internet service. I know this can be very frustrating and I apologise for the inconvenience.
    You can check to see if there is an outage in your area by entering your postcode and suburb in our service status checker: http://servicestatus.telstra.com/servicestatus/goc.do?q=summary.html
    Please powercycle your modem and computer: Unplug from power > Leave off for 10 - 15 mins > then Plug back in and re start. This will often force a line update through to your modem advising the signal is restored.
    Please make sure you have not exceeded you monthly usage allowance and have been shaped (slowed). You can do this via My Account http://tel.st/cpyn 
    Here are some other DIY support tools you can try. 
    Is your ADSL service running as fast as it could be?
    http://crowdsupport.telstra.com.au/t5/Coverage-Network-KB/Is-your-ADSL-service-running-as-fast-as-it-could-be/ta-p/311953
    How to test your speed
    http://crowdsupport.telstra.com.au/t5/Home-Broadband-KB/Testing-your-broadband-speed/ta-p/278139
    Make sure your modem settings are correct
    http://crowdsupport.telstra.com.au/t5/Modems-Hardware-KB/BigPond-Modem-settings/ta-p/251263
    ADSL Self service tool:
    https://www.telstra.com.au/webforms/cares/
    Change your line profile:
    http://crowdsupport.telstra.com.au/t5/General-Internet-KB/Change-your-ADSL-Line-profile/ta-p/110182
    How to peform an Isolation test:
    http://crowdsupport.telstra.com.au/t5/General-Internet-KB/How-to-perform-an-Isolation-Test/ta-p/55014
    ADSL Troubleshooting tips
    https://go.telstra.com.au/helpandsupport/-/adsl-troubleshooting-tips
    If you try all the steps in these articles and have no luck with your connection, Please speak to our Technical support team. You can contact them 
    on 133933 or you can also contact them via our Live chat service here: http://tel.st/49kl
    Regards - Tom
     

  • How can I download multiple files simultaneously? e.g. 6 files

    When I attempt to download multiple files (say 5 in number), the Mozilla allows only two files too be downloaded simultaneously. I wanted to change the option of downloading six files together but did not find the feature that could do so. Can you please kindly help or there is no such feature in Mozilla?

    There is a hidden preference for this. Check out this article: [http://kb.mozillazine.org/Network.http.max-persistent-connections-per-server Network.http.max-persistent-connections-per-server - MozillaZine Knowledge Base]
    If you haven't changed Firefox settings through about:config before, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)

  • What does 'include render files' option mean for when I duplicate a project. I deselected it and the duplicated file is very slow so maybe this has affected it. It's a shame cause original project is deleted. Have I lost the rendered files? Thanks

    What does 'include render files' option mean for when I duplicate a project. I deselected it and the duplicated file is very slow so maybe this has affected it. It's a shame cause original project is deleted. Have I lost the rendered files? Thanks

    Yes, if you duplicate without the render files and delete the original project you lose the render files. But render files get recreated - automatically if you have it set in the preferences (which is the default option). It just takes time.

Maybe you are looking for

  • Errors in Pricing replication ECC to CRM 2007.

    Hello, When loading the price customizing from ECC to CRM I run into problems. I have loaded the object DNL_CUST_CNDALL. When I check the application log in transaction SLG1 (Object COND_EXCHANGE, Subobject CUSTOMIZING), I see the following error mes

  • How do I sync my event colors from treo 650 to iCal and vice versa?

    heres the deal: in using iCal and my Treo 650 (Verizon), I have been iSyncing the two together. While all the data and calendar events, contacts from Address book, tasks from task list transfer no problem, none of the event colors sync up. If an even

  • Compatible Smart Cards

    Hello everyone, Hopefully you can help me out with the following. I have windows 7 clients and a windows server 2012 r2 server running PKI. I recently ordered an omni card reader 3121. I als bought several smart cards like the CHIP SLE 4428 and the C

  • Continue playing unplayed episodes

    I can sync a smart playlist to my iPhone with unplayed episodes. On the iPhone the upplayed episodes option is available, I can start the first podcast episode but it doesn't automatically continue to the next unplayed episode with the last iOS and P

  • SharePoint Risk Management

    Hi, I want to create Project Risk Management in SharePoint 2013. Can you please provide some idea how to create it. Thanks,