diff --git a/arch-config/Dokumente/programming/powershell-scripting.md b/arch-config/Dokumente/programming/powershell-scripting.md new file mode 100644 index 00000000..3b27194b --- /dev/null +++ b/arch-config/Dokumente/programming/powershell-scripting.md @@ -0,0 +1,14 @@ +# 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 |