Answers for "install files from internet via command prompt"

0

install a file from internet with command prompt

inside cmd:
>powershell -c "Invoke-WebRequest -Uri 'https://www.website.com/file.extension' -OutFile 'drive:pathfile.extension'"

inside powerchell:
>Invoke-WebRequest -Uri 'https://www.website.com/file.extension' -OutFile 'drive:pathfile.extension'
Posted by: Guest on February-13-2021

Code answers related to "install files from internet via command prompt"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language