`New-Object` cmdlet creates an instance object in powershell
Docs: MSDN: New-Object
Usage
$object = New-Object -TypeName PSObject -Property @{
'Name' = 'Susan'
'Age' = 32
}
See also pscustomobject
`New-Object` cmdlet creates an instance object in powershell
Docs: MSDN: New-Object
$object = New-Object -TypeName PSObject -Property @{
'Name' = 'Susan'
'Age' = 32
}
See also pscustomobject