Add some info on Powershell scripting

This commit is contained in:
RealStickman 2020-11-06 15:28:24 +01:00
parent 5d8b78da6e
commit 476513cbc8

View File

@ -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 |