PowerShell, Web PowerShell $postParams = @{nombre='Juan';edad='34'} $web=Invoke-WebRequest -Uri 'https://localhost/examplepost.php' -Method Post -Body $postParams $web.content 123 $postParams = @{nombre='Juan';edad='34'}$web=Invoke-WebRequest -Uri 'https://localhost/examplepost.php' -Method Post -Body $postParams$web.content