Tagged Questions
The pscustomobject tag has no wiki summary.
3
votes
1answer
560 views
Powershell Custom Objects: How To Acess NoteProperty of collected result
Reading through an Article about custom Objects:
http://technet.microsoft.com/en-us/library/ff730946.aspx
I wonder why i get a result for the individual entry: e.g $objAverage.Name
while by ...
3
votes
4answers
5k views
How to get Select-Object to return a raw type (e.g. String) rather than PSCustomObject?
The following code gives me an array of PSCustomObjects, how can I get it to return an array of Strings?
$files = Get-ChildItem $directory -Recurse | Select-Object FullName | Where-Object ...
1
vote
2answers
140 views
Why are script properties lost when passing pscustomobject to start-job script block?
On windows XP x64 (and I assume win2k3) powershell 2.0, passing an arraylist of pscustomobjects to start-job as argumentlist parameter passes the object in but scriptproperties just disappear from the ...
1
vote
2answers
294 views
Creating custom objects and using the output
I'm using the following to read one line from a whole load of text files and then summarize that information into one file.
$computers = Get-content computers.txt
$users = users.csv
$header = ...