The body for HTTP responses should be allowed to be null for 3XX responses I get a null reference exception if I leave the body null. Here is my workaround ```powershell Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{ StatusCode = 301 Headers = @{Location = $downloadURL} Body = '' }) ```