Skip to content

Instantly share code, notes, and snippets.

@jeffeuxMartin
Last active August 23, 2024 20:06
Show Gist options
  • Select an option

  • Save jeffeuxMartin/ad701b3a2a8e48272d923cfbd3234a06 to your computer and use it in GitHub Desktop.

Select an option

Save jeffeuxMartin/ad701b3a2a8e48272d923cfbd3234a06 to your computer and use it in GitHub Desktop.
Powershell Learning.ps1
function Install-Software {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[ValidateSet('1', '2')]
[string] $Version
)
# Get-ChildItem -Path \\SRV1\Installers\SoftwareV$Version
Write-Host "Installing Version $Version..."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment