February 2014
Intermediate to advanced
374 pages
8h 12m
English
There are several ways to create new objects in PowerCLI. In fact, you have already been creating new objects by using the Select-Object –Property command. In this section, you will learn more ways to create new objects.
PowerShell has its own cmdlet for creating objects: New-Object. You can use this cmdlet to create a Microsoft .NET Framework or COM object.
The New-Object cmdlet has the following syntax:
New-Object [-TypeName] <String> [[-ArgumentList] <Object[]>] [-Property <IDictionary>] [<CommonParameters>] New-Object [-ComObject] <String> [-Property <IDictionary>] [-Strict [<SwitchParameter>]] [<CommonParameters>]
The easiest way to create a Microsoft ...
Read now
Unlock full access