powershell # Example PowerShell FTP Commands $ftpURI = "ftp://ftp.example.com" $fileName = "example.txt" $webClient = New-Object System.Net.WebClient $webClient.Credentials = New-Object System.Net.NetworkCredential("your_username", "your_password") $webClient.DownloadFile($ftpURI+"/"+$fileName, "C:\local_path\"+$fileName)