Skip to content

Instantly share code, notes, and snippets.

@stknohg
Last active May 8, 2018 03:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save stknohg/99db4d60a6b31cd2c3ef58764ec422db to your computer and use it in GitHub Desktop.
Windows 10 Spring Creators Update(RS4)で変更されたPowerShellモジュールについてのメモ

バージョン情報

PS C:\> $PSVersionTable | sort Name

Name                           Value
----                           -----
PSVersion                      5.1.17134.1
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.17134.1
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1

追加されたモジュール

PersistentMemory

PS C:\> Get-Command -Module PersistentMemory

CommandType     Name                                               Version    Source
-----------     ----                                               -------    ------
Cmdlet          Get-PmemDisk                                       1.0.0.0    PersistentMemory
Cmdlet          Get-PmemPhysicalDevice                             1.0.0.0    PersistentMemory
Cmdlet          Get-PmemUnusedRegion                               1.0.0.0    PersistentMemory
Cmdlet          Initialize-PmemPhysicalDevice                      1.0.0.0    PersistentMemory
Cmdlet          New-PmemDisk                                       1.0.0.0    PersistentMemory
Cmdlet          Remove-PmemDisk                                    1.0.0.0    PersistentMemory

永続性メモリ(Persistent Memory)を操作するためのモジュールっぽい。
Windows Server 1803にも追加されていたので、基本的にはサーバー向けモジュールがクライアントOSにも導入されている雰囲気を感じる。

Persistent Memoryついて適当にググったところ

がヒットした。

変更のあったモジュール

Appx

Add-AppxPackageStageパラメーターが増えている。

DeliveryOptimization

Get-DeliveryOptimizationLogGet-DeliveryOptimizationPerfSnapThisMonthGet-DODownloadMode,Get-DOPercentageMaxBackgroundBandwidthGet-DOPercentageMaxForegroundBandwidthSet-DODownloadModeSet-DOPercentageMaxBackgroundBandwidthSet-DOPercentageMaxForegroundBandwidthが追加されている。

Dism

Add-AppxProvisionedPackageAdd-ProvisionedAppxPackageRegionsパラメーターが増えている。

Add-WindowsCapabilityRecipeパラメーターが増えている。

Export-WindowsCapabilitySourceOptimize-AppXProvisionedPackagesOptimize-ProvisionedAppxPackagesが追加されている。

Get-WindowsCapabilityLimitAccessSourceパラメーターが増えている。

PKI

Export-PfxCertificateCryptoAlgorithmOptionパラメーターが増えている。

StartLayout

Export-StartLayoutUseDesktopApplicationIDパラメーターが増えている。

Storage

New-StoragePoolVersionパラメーターが増えている。

New-VolumeNumberOfDataCopiesパラメーターが増えている。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment