How to “work with array” example:
$WebApps = @();
$WebApp=[Microsoft.SharePoint.Administration.SPWebApplication]::Lookup($tempUrl);
if ($WebApp -eq $null){ Write-Host "No WebApplication" }
else { $WebApps += $WebApp }
Some links:
- Arrays – http://technet.microsoft.com/en-us/library/ee692797.aspx
- Hashtables - http://technet.microsoft.com/en-us/library/ee692803.aspx
How to access string indexer on a collection in Powershell
You can get following error trying to access the property (aka hashtable)
Unable to index into an object of type System.Management.Automation.PSParameterizedProperty
Resolution:
You need to place curly braces around the hyphenated property name. This should work:
$item.{some-property}
Some links:
