Search results

  1. F

    How to download files from videohelp with c#?

    How can I download file from videohelp with c# language? Sometimes it works well with only the WebClient.DownloadFile method. But not always because there are cookie and maybe referer protections.
  2. F

    How to download a file with Awesomium ?

    I tried a lot of thing to write a function that download a file through the Awesomium SDK in an off screen way. Unfortunately, nothing works... How to do it with Awesomium 1.7.5 ? This is my very basic code... using System; using Awesomium.Core; namespace AwesomiumTest { class Program...
  3. F

    Create a windows service that updates my software ?

    Is it possible to create a windows service with C# that downloads executables inside tempdir and install them silently each month to keep my software updated ? I need to create a service that runs only after clicking shutdown (each month) and like Windows Update does, writes something like...
  4. F

    How to retrieve filename from a weird download url ?

    Previously when I needed to download a file, I get the filename from the url itself. But some weird urls (sorry I can't post urls here) don't have the filename in its url. Some urls don't provide content disposition too! What's the best way to retrieve download original filename from any kind...
  5. F

    How to automate downloading with a no gui web browser?

    Hello the blackhatworld community I need a way to automate downloading files with a full featured no gui browser. Something like phantomjs but without the downloading issues. A little example: Login to the angular based website. I navigate to a webpage where the download link is. From...
Back
Top