Description:
- Powershell cmdlet
- Has .psi file format
Variables:
$location ="East Asia"
$cred = Get-CredentialLoops:
- Comparision ops:
-lt: less than-le: less than or equal-eq: equal-ne: not equal
- For:
-
For($i=1, $i -lt 3, $i++) { $i }
-
-
Do…While:
- For..each
- s
Parameters
- Declare as argument
-
param([int] $size, [string] $location)
-
- When calling script:
-