Windows PowerShell பதிவிறக்க கட்டளை ஜெனரேட்டர்

Windows 10 மற்றும் 11 இல் கூடுதல் மென்பொருள் இன்றி பதிவிறக்க PowerShell கட்டளைகளை உருவாக்கவும்.

PowerShell கட்டளைகள்

curl -L -O "https://example.com/file.zip"
wget --content-disposition "https://example.com/file.zip"
Invoke-WebRequest -Uri "https://example.com/file.zip" -OutFile "file.zip"
certutil -urlcache -split -f "https://example.com/file.zip" file.zip
import urllib.request
urllib.request.urlretrieve("https://example.com/file.zip", "file.zip")

PowerShell இல் கோப்புகளைப் பதிவிறக்குவது எப்படி?

விண்டோஸில் Invoke-WebRequest -Uri "URL" -OutFile "கோப்பு_பெயர்" கட்டளை மிகவும் பிரபலமானது.