[How To] Use DISM To Manage Feature Updates In Windows 10

If you're using Windows 10 V1803 or later, here's how to use DISM to manage feature updates in your Windows 10 operating system.

Kapil Arya
11x Microsoft MVP · Admin
2 min read
Add as a preferred
source on Google

With Windows 10 V1803 (April 2018 Update), Deployment Image Servicing and Management (DISM) has got some abilities. Microsoft has now added feature updates management capabilities to DISM. This means you can now use DISM to manage feature updates for Windows 10, in following manners:

  • Initiate removal of the feature update, in other words, rolling the installation back to previous Windows version
  • Prevent users from uninstalling Windows feature update
  • You can set the number of days, after which an user can initiate uninstall of Windows upgrade
  • Identify the number of days after which OS can be uninstalled, after the Windows upgrade.

Since these options are added to command-line, they will be very helpful to IT professionals and system administrators. Now the system administrators can easily manage their client machines with few commands.

How To Use DISM To Manage Feature Updates In Windows 10

The command-line switches added to DISM are mentioned below. These are usually run against an online image. You must be running administrative Command Prompt to operate these switches.

/Get-OSUninstallWindow

This switch is useful to find out after how many days after Windows upgrade, an uninstall can be initiated.

To use this switch, in the administrative Command Prompt window, type DISM /Online /Get-OSUninstallWindow and press Enter key.

How To Use DISM To Manage Feature Updates In Windows 10

/Remove-OSUninstall

Be careful to use this switch because it will remove the ability of user to uninstall the feature update.

To use this switch, in the administrative Command Prompt window, type DISM /Online /Remove-OSUninstall and press Enter key.

/Set-OSUninstallWindow

This command-line switch can be used to set the number of days after an upgrade, an uninstall can be initiated.

To use this switch, in the administrative Command Prompt window, type DISM /Online /Set-OSUninstallWindow /Value:15 and press Enter key. You can can replace 15 with number of days of your wish.

/Initiate-OSUninstall

Using this switch will initiate uninstall of the feature update. This works actually like downgrading your Windows to previous edition.

To use this switch, in the administrative Command Prompt window, type DISM /Online /Initiate-OSUninstall and press Enter key.

Hope you find these DISM switches helpful!

Share this article
https://www.kapilarya.com/how-to-use-dism-to-manage-feature-updates-in-windows-10

Shareable URL

Article by

Kapil Arya
11x Microsoft MVP · Admin

Kapil holds Microsoft MVP title in Windows IT Pro expertise, 11-times in a row (2014-2025). He is 8-times Windows Insider MVP as well, and author of 'Windows Group Policy Troubleshooting' book. In 2015, Microsoft India accomplished him as 'Windows 10 Champion'. Being passionate Windows blogger, he loves to help others on fixing their system issues. Kapil has worked with official Microsoft Community Engagement Team (CET) on several community projects. You can subscribe him for news/updates and fixes for Windows.

1 Comment
Ken Kiesal

This command seems to no longer be an option

Leave a Comment

Your email address will not be published. Required fields are marked *