Jibin
Jibin

Reputation: 464

Unable to uninstall IIS 10 from windows server 2016 Datacenter

enter image description here

I am getting below error while trying to uninstall IIS 10, am using windows server 2016 . Please help me to resolve the error.

Upvotes: 0

Views: 1576

Answers (2)

Jibin
Jibin

Reputation: 464

The issue got resolved after updating the visual c++ packages.

Upvotes: 0

Theobald Du
Theobald Du

Reputation: 1024

Try this way:

Run PowerShell as administrator and type the next command.

Get-WindowsOptionalFeature -online | ? featurename -like "IIS" | Disable-WindowsOptionalFeature -Online -Remove

Upvotes: 1

Related Questions