Вы можете достичь этого, используя Invoke-WebRequest
Вы не добавили ни одного кода, чтобы привести пример
$ie = New-Object -ComObject 'internetExplorer.Application'
$ie.Visible = $true # Make it visible
$username= username
$password= password
$ie.Navigate("website/url")
While ($ie.Busy -eq $true) {Start-Sleep -Seconds 3;}
$usernamefield = $ie.document.getElementByID('loginID')
$usernamefield.value = "$username"
$passwordfield = $ie.document.getElementByID('PasswordID')
$passwordfield.value = "$password"
$Link = $ie.document.getElementByID('LoginPromptID')
$Link.click()
Invoke-WebRequest -Uri <Redirect to location you wish to have displayed> -SessionVariable mySession