PowerShell DISMのコマンドレット一覧

自分用メモです。
展開イメージのサービスと管理(DISM)はDism.exeのコマンドだけかと思っていましたが、PowerShell のコマンドレットが用意されている事を知りましたのでメモ。
下記対比表は、msdnのコンテンツ「Windows PowerShell での DISM の使用」とものと同一です。
こういったコンテンツが用意されているのは非常にうれしいですね。
コマンドプロンプトからPowerShellに移行してね!という意思があるのかな・・・


Dism.exe のコマンド DISM のコマンドレット
Dism.exe /Append-Image
Add-WindowsImage
Dism.exe /Apply-Image
Expand-WindowsImage
Dism.exe /Capture-Image
New-WindowsImage
Dism.exe /Cleanup-MountPoints
Clear-WindowsCorruptMountPoint
Dism.exe /Commit-Image
Save-WindowsImage
Dism.exe /Export-Image
Export-WindowsImage
Dism.exe /Get-ImageInfo
Get-WindowsImage
Dism.exe /Get-MountedImageInfo
Get-WindowsImage -Mounted
Dism.exe /Get-WimBootEntry
Get-WIMBootEntry
Dism.exe /List-Image
Get-WindowsImageContent
Dism.exe /Mount-Image
Mount-WindowsImage
Dism.exe /Split-Image
Split-WindowsImage
Dism.exe /Remove-Image
Remove-WindowsImage
Dism.exe /Remount-Image
Mount-WindowsImage -Remount
Dism.exe /Unmount-Image
Dismount-WindowsImage
Dism.exe /Update-WimBootEntry
Update-WIMBootEntry
Dism.exe /Image:<…> /Add-Driver
Add-WindowsDriver
Dism.exe /Image:<...> /Add-Package
Add-WindowsPackage
Dism.exe /Image:<...> /Add-ProvisionedAppxPackage
Add-AppxProvisionedPackage
Dism.exe /Image:<...> /Apply-Unattend
Apply-WindowsUnattend
Dism.exe /Image:<...> /Cleanup-Image /CheckHealth
Repair-WindowsImage -CheckHealth
Dism.exe /Image:<...> /Cleanup-Image /ScanHealth
Repair-WindowsImage –ScanHealth
Dism.exe /Image:<...> /Cleanup-Image /RestoreHealth
Repair-WindowsImage –RestoreHealth
Dism.exe /Image:<...> /Disable-Feature
Disable-WindowsOptionalFeature
Dism.exe /Image:<...> /Enable-Feature
Enable-WindowsOptionalFeature
Dism.exe /Image:<...> /Export-Driver
Export-WindowsDriver
Dism.exe /Image:<...> /Get-CurrentEdition
Get-WindowsEdition -Current
Dism.exe /Image:<...> /Get-Driverinfo
Get-WindowsDriver -Driver
Dism.exe /Image:<...> /Get-Drivers
Get-WindowsDriver
Dism.exe /Image:<...> /Get-Featureinfo
Get-WindowsOptionalFeature -FeatureName
Dism.exe /Image:<...> /Get-Features
Get-WindowsOptionalFeature
Dism.exe /Image:<...> /Get-Packageinfo
Get-WindowsPackage -PackagePath | -PackageName
Dism.exe /Image:<...> /Get-Packages
Get-WindowsPackage
Dism.exe /Image:<...> /Get-ProvisionedAppxPackages
Get-AppxProvisionedPackage
Dism.exe /Image:<...> /Get-TargetEditions
Get-WindowsEdition -Target
Dism.exe /Image:<...> /Optimize-Image
Optimize-WindowsImage
Dism.exe /Image:<...> /Remove-Driver
Remove-WindowsDriver
Dism.exe /Image:<...> /Remove-Package
Remove-WindowsPackage
Dism.exe /Image:<...> /Remove-ProvisionedAppxPackage
Remove-AppxProvisionedPackage
Dism.exe /Image:<...> /Set-Edition
Set-WindowsEdition
Dism.exe /Image:<...> /Set-ProductKey
Set-WindowsProductKey
Dism.exe /Image:<...> /Set-ProvisionedAppxDataFile
Set-AppXProvisionedDataFile
スポンサーリンク

スポンサーリンク