configs/arch-config/Dokumente/programming/powershell-scripting.md
2020-11-06 15:28:24 +01:00

15 lines
389 B
Markdown

# Powershell scripting
Use PowerShell ISE to develop PowerShell scripts
## Comparison operators
| operator | description |
| -------- | ----------- |
| -eq | equals |
| -ne | not equals |
| -gt | greather than |
| -ge | greater or equals to |
| -lt | less than |
| -le | less or equals to |