Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| powershell_script_arguments [2021/10/27 16:05] – mgupton | powershell_script_arguments [2021/11/01 11:58] (current) – mgupton | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Powershell Script Arguments/ | ====== Powershell Script Arguments/ | ||
| + | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| Line 21: | Line 22: | ||
| } | } | ||
| </ | </ | ||
| + | |||
| + | === positional arguments === | ||
| + | |||
| + | <code powershell> | ||
| + | function Get-Extension { | ||
| + | $name = $args[0] + " | ||
| + | $name | ||
| + | } | ||
| + | </ | ||
| + | |||