Skip to content

Instantly share code, notes, and snippets.

@bielawb
Created April 10, 2022 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/345cb0764ec6b99c74079ead66e00876 to your computer and use it in GitHub Desktop.
Save bielawb/345cb0764ec6b99c74079ead66e00876 to your computer and use it in GitHub Desktop.
Splat w konsoli
$wspólne = @{
ContentType = 'application/x-www-form-urlencoded'
UseDefaultCredentials = $true
}
$test = @{
Uri = 'https://psu-test.contoso.com/api'
}
$prod = @{
Uri = 'https://psu.contoso.com/api'
}
irm @wspólne @test
irm @wspólne @prod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment