Get-SCISOConfiguration
Gets the ISO configuration for a virtual machine configuration.
Syntax
Default (Default)
Get-SCISOConfiguration
[-VMMServer <ServerConnection>]
-VMConfiguration <VMConfiguration>
[<CommonParameters>]
Description
The Get-SCISOConfiguration cmdlet gets the ISO configuration for a virtual machine configuration. An ISO configuration allows you to customize the source and target locations for the physical resources that are needed to create a virtual machine.
Examples
Example 1: Get the ISO configuration for a given virtual machine configuration
PS C:\> $ServiceConfig = Get-SCServiceConfiguration -Name "Service01"
PS C:\> $TierConfig = Get-SCComputerTierConfiguration -ServiceConfiguration $ServiceConfig
PS C:\> $VMConfig = Get-SCVMConfiguration -ComputerTierConfiguration $TierConfig
PS C:\> $ISOConfig = Get-SCISOConfiguration -VMConfiguration $VMConfig
PS C:\> $ISOConfig
The first command gets the service configuration object named Service01 and stores the object in the $ServiceConfig variable.
The second command gets the computer tier configuration object for the the service configuration in $ServiceConfig and stores the object in the $TierConfig variable.
The third command gets the virtual machine configuration for the computer tier configuration stored in $TierConfig and stores the object in the $VMConfig variable.
The fourth command gets the ISO configuration for the first virtual machine configuration stored in $VMConfig and stores the object in the $ISOConfig variable.
The last command displays the properties of the ISO configuration stored in $ISOConfig to the user.
Parameters
-VMConfiguration
Specifies a virtual machine configuration object.
Parameter properties
Type: | VMConfiguration |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | True |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-VMMServer
Specifies a Virtual Machine Manager (VMM) server object.
Parameter properties
Type: | ServerConnection |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Outputs
ISOConfiguration
This cmdlet returns an ISOConfiguration object.