Answers for "windows cmd download file"

C
0

download file using cmd

@echo off
:: method one

rem powershell -Command "Invoke-Webrequest -URI https://files03.tchspt.com/temp/jdk-8u261-windows-x64.exe -Outfile jdk-8u261-windows-x64.exe"

if exist "%USERPROFILE%desktopjdk-8u261-windows-x64.exe" goto run
:run

call "%USERPROFILE%desktopjdk-8u261-windows-x64.exe"
pause

:: method two

powershell -Command "Start-BitsTransfer -Source https://files03.tchspt.com/temp/jdk-8u261-windows-x64.exe -Destination $env:USERPROFILEDesktopjdk-8u261-windows-x64.exe -TransferType Download -Priority High -DisplayName jdk-8u261-windows-x64.exe"

if exist "%USERPROFILE%desktopjdk-8u261-windows-x64.exe" goto run
:run

call "%USERPROFILE%desktopjdk-8u261-windows-x64.exe"
pause
Posted by: Guest on October-16-2020

Code answers related to "C"

Browse Popular Code Answers by Language