Mount image
DISM /Mount-Wim /WimFile:<dir>:\<path>\<filename>.wim /Index:<#> /MountDir:<dir>:\<path_to_empty_folder>
Integrate MSU/CAB updates
DISM /Add-Package /Image:<dir>:\<mounted_image_path> /PackagePath:<dir>:\<folder_with_updates>
Integrate multiple drivers
DISM /Add-Driver /Image:<dir>:\<mounted_image_path> /Driver:<dir>:\<folder_with_drivers> /recurse
Integrate unsigned driver
DISM /Add-Driver /Image:<dir>:\<mounted_image_path> /Driver:<dir>:\<folder_with_driver>\<inf_name>.inf /forceunsigned
Remove driver
DISM /Remove-Driver /Image:<dir>:\<mounted_image_path> /Driver:oem<#>.inf
Turn off feature
DISM /Disable-Feature /Image:<dir>:\<mounted_image_path> /FeatureName:<feature_name>
Turn off features (multi)
FOR %i IN (<featurename1> "<feature name 2>" <feature-name-3>) DO DISM /Disable-Feature /Image:<dir>:\<mounted_image_path> /FeatureName:%i
Unhide packages (optional)
install_wim_tweak /p <dir>:\<mounted_image_path> /m
Remove package
DISM /Remove-Package /Image:<dir>:\<mounted_image_path> /PackageName:Microsoft-Windows-<example>-Package~31bf3856ad364e35~x86~~6.1.7600.16385
Unmount image
DISM /Unmount-Wim /MountDir:<dir>:\<mounted_image_path> /commit [/discard]