Tutorial by Examples

The simple, yet powerful use of the ISE is e.g. writing code in the top section (with intuitive syntax coloring) and run the code by simply marking it and hitting the F8 key. function Get-Sum { foreach ($i in $Input) {$Sum += $i} $Sum 1..10 | Get-Sum #output 55

Page 1 of 1