PowerShell Logo Small

New-StorageSubsystemVirtualDisk



This is the built-in help made by Microsoft for the command 'New-StorageSubsystemVirtualDisk', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Allows the creation of a VirtualDisk object on a storage subsystem that does not support creation of storage pools.

SYNTAX


New-StorageSubsystemVirtualDisk [-StorageSubSystemFriendlyName] <String[]> [-AsJob] [-CimSession <CimSession[]>] [-FriendlyName <String>] [-Interleave <UInt64>]
[-IsEnclosureAware] [-NumberOfColumns <UInt16>] [-NumberOfDataCopies <UInt16>] [-OtherUsageDescription <String>] [-ParityLayout <ParityLayout>] [-PhysicalDiskRedundancy
<UInt16>] [-ProvisioningType <ProvisioningType>] [-RequestNoSinglePointOfFailure <Boolean>] [-Size <UInt64>] [-ThrottleLimit <Int32>] [-Usage <Usage>] [-UseMaximumSize]
[<CommonParameters>]
New-StorageSubsystemVirtualDisk [-AsJob] [-CimSession <CimSession[]>] [-FriendlyName <String>] [-Interleave <UInt64>] [-IsEnclosureAware] [-NumberOfColumns <UInt16>]
[-NumberOfDataCopies <UInt16>] [-OtherUsageDescription <String>] [-ParityLayout <ParityLayout>] [-PhysicalDiskRedundancy <UInt16>] [-ProvisioningType <ProvisioningType>]
[-RequestNoSinglePointOfFailure <Boolean>] [-Size <UInt64>] [-ThrottleLimit <Int32>] [-Usage <Usage>] [-UseMaximumSize] -StorageSubSystemUniqueId <String[]>
[<CommonParameters>]
New-StorageSubsystemVirtualDisk [-AsJob] [-CimSession <CimSession[]>] [-FriendlyName <String>] [-Interleave <UInt64>] [-IsEnclosureAware] [-NumberOfColumns <UInt16>]
[-NumberOfDataCopies <UInt16>] [-OtherUsageDescription <String>] [-ParityLayout <ParityLayout>] [-PhysicalDiskRedundancy <UInt16>] [-ProvisioningType <ProvisioningType>]
[-RequestNoSinglePointOfFailure <Boolean>] [-Size <UInt64>] [-ThrottleLimit <Int32>] [-Usage <Usage>] [-UseMaximumSize] -StorageSubSystemName <String[]> [<CommonParameters>]
New-StorageSubsystemVirtualDisk [-AsJob] [-CimSession <CimSession[]>] [-FriendlyName <String>] [-Interleave <UInt64>] [-IsEnclosureAware] [-NumberOfColumns <UInt16>]
[-NumberOfDataCopies <UInt16>] [-OtherUsageDescription <String>] [-ParityLayout <ParityLayout>] [-PhysicalDiskRedundancy <UInt16>] [-ProvisioningType <ProvisioningType>]
[-RequestNoSinglePointOfFailure <Boolean>] [-Size <UInt64>] [-ThrottleLimit <Int32>] [-Usage <Usage>] [-UseMaximumSize] -InputObject <CimInstance[]> [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The New-StorageSubsystemVirtualDisk cmdlet allows the creation of a VirtualDisk object on a storage subsystem that does not support creation of storage pools, or if its
storage pool does not support virtual disk creation.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=307006
Get-StorageSubsystem

REMARKS

<

Examples


EXAMPLE 1

PS C:\> $stsubsys = (Get-StorageSubsystem)
PS C:\> New-StorageSubsystemVirtualDisk -StorageSubsystemUniqueId $stsubsys.UniqueID -FriendlyName "VirtualDisk01" -Size "5GB" -ProvisioningType Fixed



This example creates a Virtual Disk named VirtualDisk01 on the provided StorageSubsystem without the use of a Storage Pool