Transferring Files
Windows
certutil.exe -urlcache -f <URL> <OUTPUT># download
type \\webdav-ip\folder\file.ext > C:\Path\file.ext
# upload
type C:\Path\file.ext > \\webdav-ip\folder\file.extInvoke-WebRequest <URL> -O <OUTPUT>
curl <URL> -O <OUTPUT>
wget <URL> -O <OUTPUT>(New-Object Net.WebClient).DownloadFile("<URL>", "<OUTFILE>")(New-Object Net.WebClient).DownloadString("<URL>")(Invoke-WebRequest <URL>)
(curl <URL>)
(wget <URL>)
## LinuxLast updated