Download via command line

Solved
WcsSkwal Posted messages 120 Status Member -  
WcsSkwal Posted messages 120 Status Member -
Hello,
is it possible to download a file from the web via a batch command line (without ftp.exe if possible because a connection is required)

Configuration: Windows11 / Chrome 1245102025.0.3945.130

2 answers

  1. Malekal_morte- Posted messages 178136 Registration date   Status Moderator, Security Contributor Last intervention   24 712
     
    Hello,

    No in command prompt.

    In PowerShell, it's doable:

    Invoke-WebRequest -Uri "http://www.contoso.com" -OutFile "C:\path\file"


    or
    wget "http://www.contoso.com" -outfile "file"


    --
    Please press any key to continue the disinfection...
    1