SHOW:
|
|
- or go back to the newest paste.
| 1 | $homePage = Invoke-WebRequest <ftp https url> | |
| 2 | $username = "<username here>" | |
| 3 | $password = "<password here>" | |
| 4 | ||
| 5 | $form = $homePage.Forms[0] | |
| 6 | $form.Fields["username"] = $username | |
| 7 | $form.Fields["password"] = $password | |
| 8 | ||
| 9 | $portalPage = Invoke-WebRequest -Uri $Form.Action -Method POST -Body $Form.Fields -SessionVariable ftp | |
| 10 | Invoke-WebRequest -Uri "<link to Excel Sheet I want to downlaod" -OutFile <output directory> |