Quantcast
Channel: Automate IT! » development
Viewing all articles
Browse latest Browse all 8

Shot: PowerShell code examples. Arrays and String indexer

$
0
0

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:

 

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:



Viewing all articles
Browse latest Browse all 8

Trending Articles