Created
October 9, 2014 11:35
-
-
Save JohnLBevan/d9df1c58f30538a9e4c8 to your computer and use it in GitHub Desktop.
create a custom object the nice way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$adDummy = New-Object –TypeName PSObject –Prop @{ | |
emailSearched = $null; | |
notFound = $true; | |
sAmAccountName = $null; | |
fullname = $null; | |
firstname = $null; | |
lastname = $null; | |
cn = $null; | |
countryCode = $null; | |
country = $null; | |
#title = $null; | |
title = $null; | |
department = $null; | |
company = $null; | |
email = $null; | |
adEmail = $null; | |
proxyEmail = $null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment