PowerShell இல் கோப்புகளைப் பதிவிறக்குவது எப்படி?
விண்டோஸில் Invoke-WebRequest -Uri "URL" -OutFile "கோப்பு_பெயர்" கட்டளை மிகவும் பிரபலமானது.
Windows 10 மற்றும் 11 இல் கூடுதல் மென்பொருள் இன்றி பதிவிறக்க 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.zipimport urllib.request
urllib.request.urlretrieve("https://example.com/file.zip", "file.zip")விண்டோஸில் Invoke-WebRequest -Uri "URL" -OutFile "கோப்பு_பெயர்" கட்டளை மிகவும் பிரபலமானது.