Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Created October 15, 2018 11:49
Show Gist options
  • Save PrateekKumarSingh/d969e5bee4e7a54b7368bfce6af8061f to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/d969e5bee4e7a54b7368bfce6af8061f to your computer and use it in GitHub Desktop.
# Using New-Object and hashtables
$properties = @{
firstname = 'Prateek'
lastname = 'Singh'
}
$o = New-Object psobject -Property $properties; $o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment