Skip to content

Instantly share code, notes, and snippets.

@Sambardo
Created February 28, 2018 20:03
Show Gist options
  • Save Sambardo/f6c85f607a974c04e2657e6d669df893 to your computer and use it in GitHub Desktop.
Save Sambardo/f6c85f607a974c04e2657e6d669df893 to your computer and use it in GitHub Desktop.
Function MyFunction
{
[cmdletbinding(SupportsShouldProcess,
ConfirmImpact = "high")]
param($service)
if($PSCmdlet.ShouldProcess($service,"Fetch service"))
{
get-service -name $service
}
}
write-host "calling normally" -ForegroundColor Yellow
MyFunction -service alg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment