Windows 10 bereikte EO (einde ondersteuning) op 14 oktober 2025. Als je Windows 10 gebruikt, lees dan dit artikel.

Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Is there any way to "catch" the default download carpet of Firefox by means of code (i.e, an app made in VBA which can run in many computers)

  • 4 antwoorden
  • 1 heeft dit probleem
  • 91 weergaven
  • Laatste antwoord van cor-el
  • Gearchiveerd

I am making an Excel VBA application in which I need to download a file whit Firefox. Due that this app must run in many computers with differents default download carpets, is there any way to "cath" the default download carpet of Firefox by means of code, in this case, VBA ). Is this default carpet "hidden" at any place in the Windows register? This could also help me.

Thanks in advance.

Julio

I am making an Excel VBA application in which I need to download a file whit Firefox. Due that this app must run in many computers with differents default download carpets, is there any way to "cath" the default download carpet of Firefox by means of code, in this case, VBA ). Is this default carpet "hidden" at any place in the Windows register? This could also help me. Thanks in advance. Julio

Alle antwoorden (4)

Hi Julio, your Office VBA code can use XMLHTTP to retrieve and read a file in the background. Example: https://stackoverflow.com/questions/36221544/excel-vba-open-url-without-opening-browser

Is there a reason you need to use Firefox in particular? On Windows the typical path is either:

  • "C:\Program Files\Mozilla Firefox\firefox.exe"
  • "C:\Program Files (x86)\Mozilla Firefox\firefox.exe"

Your code can determine which file exists and use the one it finds. There might also be a Registry key, but I haven't looked.

Thank You very much for your answer but my question is related to the default carpet in which Firefox downloads files from the net, not the carpet where the browser is installed. On the other hand, I created an "imaginary" carpet , declared it as the default download carpet of Firefox and I didn't found it in the Windows registry, so, I suppose that the adress of that carpet is not stored in the registry.

By default, Firefox stores the last used download folder on a per-site basis, in a SQLite database. This will be difficult for your app to discover. I think you will need the user to save files needed by your application in a particular folder such as the default Windows download folder.

You can also look at wget.