Skip to content

Instantly share code, notes, and snippets.

@diecknet
Created May 20, 2023 10:57
Show Gist options
  • Save diecknet/7d68a598f9095dff6bd92abd7faf051d to your computer and use it in GitHub Desktop.
Save diecknet/7d68a598f9095dff6bd92abd7faf051d to your computer and use it in GitHub Desktop.
PowerShell Switch Beispiel
switch(Get-Date) {
# $PSItem ist übrigens das gleiche wie $_
{$PSItem.Year -gt 2022} {
"Es ist nach 2022"
break
}
default {
"Es ist vor 2023"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment