共用方式為


New-SCStorageFileShare

在 VMM 中建立記憶體檔案共用。

語法

New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -LocalPath <String>
   [-ContinuouslyAvailable <Boolean>]
   [-StorageClassification <StorageClassification>]
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -StoragePool <StoragePool>
   [-FileSystem <String>]
   [-DedupMode <DedupMode>]
   [-AllocationUnitSizeKB <UInt32>]
   [-StorageClassification <StorageClassification>]
   [-ReadCacheSizeMB <UInt64>]
   -JobGroup <Guid>
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -StoragePool <StoragePool>
   [-FileSystem <String>]
   [-ResiliencySettingName <String>]
   [-NumberOfColumns <UInt16>]
   [-PhysicalDiskRedundancy <UInt16>]
   [-DedupMode <DedupMode>]
   [-AllocationUnitSizeKB <UInt32>]
   -SizeMB <UInt64>
   [-StorageClassification <StorageClassification>]
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -StoragePool <StoragePool>
   [-FileSystem <String>]
   [-ResiliencySettingName <String>]
   [-NumberOfColumns <UInt16>]
   [-PhysicalDiskRedundancy <UInt16>]
   [-DedupMode <DedupMode>]
   [-AllocationUnitSizeKB <UInt32>]
   [-StorageClassification <StorageClassification>]
   -MediaType <StoragePhysicalDiskMediaType[]>
   -StorageTierSizeMB <UInt64[]>
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -StorageVolume <StorageVolume>
   [-StorageClassification <StorageClassification>]
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]
New-SCStorageFileShare
   [-VMMServer <ServerConnection>]
   -StorageFileServer <StorageFileServer>
   -Name <String>
   [-Description <String>]
   -HostedStoragePool <String>
   -SizeMB <UInt64>
   [-StorageClassification <StorageClassification>]
   [-RunAsynchronously]
   [-PROTipID <Guid>]
   [-JobVariable <String>]
   [<CommonParameters>]

Description

New-SCStorageFileShare Cmdlet 會在 Virtual Machine Manager (VMM) 中建立記憶體檔案共用。

範例

範例 1:建立記憶體檔案共用

PS C:\> $FileServer = Get-SCStorageFileServer -Name "FileServer01.Contoso.com"
PS C:\> New-SCStorageFileShare -Name "FileShare02" -StorageFileServer $FileServer -LocalPath "C:\FileShare02"

第一個命令會取得名為 FileServer01 的記憶體檔案伺服器物件,並將物件儲存在$FileServer變數中。

第二個命令會在 FileServer01 上建立名為 FileShare02 的記憶體檔案共用。

範例 2:在共用 SOFS 上建立階層式記憶體檔案共用

PS C:\> $FileServer = Get-SCStorageFileServer -Name "FileServer01.Contoso.com"
PS C:\> $StoragePool = Get-SCStoragePool -Name "Pool01"
PS C:\> New-SCStorageTier -MediaType "SSD" -SizeMB 1024  -PhysicalDiskRedundancy "2" -ResiliencySettingName "Mirror" -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e6-64a54012dce3"
PS C:\> New-SCStorageTier -MediaType "HDD" -SizeMB 1024  -PhysicalDiskRedundancy "2" -ResiliencySettingName "Parity" -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e6-64a54012dce3"
PS C:\> $StorageClassification = Get-SCStorageClassification -Name "Gold"
PS C:\> $StorageFileShare = New-SCStorageFileShare -StorageFileServer $FileServer -StoragePool $StoragePool -Name "FileShare01" -Description "shared SOSF" -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e664a54012dce3" -FileSystem "CSVFS_ReFS" -StorageClassification $StorageClassification

第一個命令會取得名為 FileServer01 的記憶體檔伺服器對象,然後將它儲存在$FileServer變數中。

第二個命令會取得名為Pool01的存放集區,然後將它儲存在 $StoragePool變數中。

第三和第四個命令會建立儲存層。

第五個命令會取得名為 Gold 的記憶體分類,然後將它儲存在$StorageClassification變數中。

最後一個命令會建立名為 FileShare01 的階層式檔案共用。 此命令會使用先前命令中建立的值。

範例 3:在 S2D 系統上建立階層式記憶體檔案共用

PS C:\> $FileServer = Get-SCStorageFileServer -Name "FileServer01.Contoso.com"
PS C:\> $StoragePool = Get-SCStoragePool -Name "S2DPool01"
PS C:\> New-SCStorageTier -StorageTierFriendlyName "Performance" -StorageTierSizeInMB 1024 -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e6-64a54012dce3"
PS C:\> New-SCStorageTier -StorageTierFriendlyName "Capacity" -StorageTierSizeInMB 1024 -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e6-64a54012dce3"
PS C:\> $StorageClassification = Get-SCStorageClassification -Name "Gold"
PS C:\> $StorageFileShare = New-SCStorageFileShare -StorageFileServer $FileServer -StoragePool $StoragePool -Name "FileShare01" -Description "storage spaces direct config" -RunAsynchronously -JobGroup "2e42beba-fb19-4c15-94e664a54012dce3" -FileSystem "CSVFS_ReFS" -StorageClassification $StorageClassification"

第一個命令會取得名為 FileServer01 的記憶體檔伺服器對象,然後將它儲存在$FileServer變數中。

第二個命令會取得名為 S2DPool01 的存放集區,然後將它儲存在$StoragePool變數中。 這是儲存空間直接存取集區。

第三和第四個命令會建立儲存層。

第五個命令會取得名為 Gold 的記憶體分類,然後將它儲存在$StorageClassification變數中。

最後一個命令會建立名為 FileShare01 的階層式檔案共用。 此命令會使用先前命令中建立的值。

參數

-AllocationUnitSizeKB

指定磁碟區的配置大小,以 KB 為單位。

類型:UInt32
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ContinuouslyAvailable

指出檔案共用是否可連續使用。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DedupMode

根據工作負載,對磁碟區或檔案共用套用重複數據刪除。 此參數可接受的值為:

  • 0 - 已停用
  • 1 - GeneralPurpose
  • 2 - Hyper-V
  • 3 - 備份
類型:DedupMode
接受的值:Disabled, GeneralPurpose, HyperV, Backup, NotAvailable
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Description

指定記憶體檔案共享的描述。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-FileSystem

指定記憶體磁碟區的檔案系統。 此參數可接受的值為:

  • CSVFS_NTFS
  • CSVFS_ReFS
類型:String
接受的值:CSVFS_NTFS, CSVFS_ReFS
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HostedStoragePool

指定裝載的存放集區。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-JobGroup

指定一系列命令的標識碼,這些命令將在包含相同作業群組標識符的執行的最後一個命令之前,以集合的形式執行。

類型:Guid
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-JobVariable

指定作業進度會追蹤並儲存在此參數所命名的變數中。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-LocalPath

指定記憶體檔案共用的本機路徑。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-MediaType

指定儲存裝置實體磁碟媒體類型物件的陣列。

類型:StoragePhysicalDiskMediaType[]
接受的值:Unknown, HDD, SSD
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Name

指定 VMM 物件的名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-NumberOfColumns

指定虛擬磁碟的數據行數目。

類型:UInt16
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PhysicalDiskRedundancy

指定虛擬磁碟可維持的實體磁碟失敗數目。

類型:UInt16
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PROTipID

指定觸發此動作之效能和資源優化提示 (PRO 提示) 的識別碼。 此參數可讓您稽核 PRO 秘訣。

類型:Guid
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ReadCacheSizeMB

類型:UInt64
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ResiliencySettingName

指定虛擬磁碟的復原設定。 此參數可接受的值為:

  • 簡單
  • 鏡子
  • 平價
類型:String
接受的值:Simple, Mirror, Parity
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RunAsynchronously

表示作業會以異步方式執行,讓控件立即返回命令殼層。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SizeMB

指定記憶體檔案共用的大小,以 MB 為單位。

類型:UInt64
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-StorageClassification

指定記憶體分類物件。

類型:StorageClassification
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-StorageFileServer

指定記憶體檔案伺服器物件。

類型:StorageFileServer
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-StoragePool

指定存放集區物件。

類型:StoragePool
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-StorageTierSizeMB

指定以 MB 為單位的儲存層大小。

類型:UInt64[]
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-StorageVolume

指定特定虛擬機主機上的記憶體磁碟區物件。

類型:StorageVolume
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-VMMServer

指定 VMM 伺服器物件。

類型:ServerConnection
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False