Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <#
  2. .SYNOPSIS
  3. 10 words
  4. .DESCRIPTION
  5. Tweet
  6. .NOTES
  7. Full description
  8. On multiple lines
  9. .PARAMETER Mandatory
  10. This ian a mandatory param
  11. .PARAMETER Optional
  12. This is an optional param
  13. .PARAMETER Help
  14. Show this help.
  15. .EXAMPLE
  16. Template.ps1 -Mandatory mandatoryValue -Optional optionalValue
  17.  
  18.  
  19. #>
  20. param([string]$Mandatory, [string]$Optional="optionalValue",[switch]$Help)
  21. $ErrorActionPreference = "Stop"
  22.  
  23. if (($Mandatory -eq "") -or ($help.IsPresent)) {
  24. Get-Help $PSCommandPath -Full
  25. exit
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement