Download file from internet without a browser

Discuss and share scripts and script files...
Post Reply
admin
Site Admin
Posts: 60531
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Download file from internet without a browser

Post by admin »

You got some URL on your clipboard and want to have that file right here? Run this:

Code: Select all

input $a, "Enter URL", <clipboard>; download $a;
I have this mini-script one click away in a Catalog item. :)

admin
Site Admin
Posts: 60531
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Download file from internet without a browser

Post by admin »

From version v7.60.0002 onwards you can control whether cookies are set/read.

The default is to use cookies:

Code: Select all

// download URL
  input $a, "Enter URL", <clipboard>;
  download $a;
Do it like this to not use cookies:

Code: Select all

// download URL
  internetflags "INTERNET_FLAG_NO_COOKIES", 1;
  input $a, "Enter URL", <clipboard>;
  download $a;

kartal
Posts: 208
Joined: 14 Aug 2008 18:06

Re: Download file from internet without a browser

Post by kartal »

Is it possible to have a popup window menu for this command line? SO that suer can just paste and download?
admin wrote:You got some URL on your clipboard and want to have that file right here? Run this:

Code: Select all

input $a, "Enter URL", <clipboard>; download $a;
I have this mini-script one click away in a Catalog item. :)

kartal
Posts: 208
Joined: 14 Aug 2008 18:06

Re: Download file from internet without a browser

Post by kartal »

Nevermind, I got it :)

Post Reply