Correction Vulnerabilities: microsoft-msxml-4-obsolete

Duchemin, Dominique 2,006 Reputation points
2023-09-16T00:16:25.91+00:00

Hello,

I am trying to get rid of the vulnerability

C:\Windows\system32> wmic product where "name like 'MSXML 4.0 SP%%'" call uninstall /nointeractive

but I am getting this result and the product is still on:

No Instance(s) Available.

I tried also to Upgrade msxml 4.0 to msxml 6.0 as proposed solutions:

msxml6-kb973686-enu-amd64_bb420ff844af4603437396d775fa34a47d0718a5

But it does not work either...

2023-09-15_16-55-16 VSTROCHE01 Upgrade MSXML 6 failed.jpg

Operating System: Windows Server 2012 R2

Thanks,

Dom

	microsoft-msxml-4-obsolete													
Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,580 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,945 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Wesley Li 8,345 Reputation points
    2024-01-19T06:41:09.36+00:00

    Hello

    It seems that you are trying to remove the vulnerability of microsoft-msxml-4-obsolete from your Windows Server 2012 R2. According to a source, you can try the following steps to uninstall MSXML 4.0:

    1. Open the Control Panel.
    2. Click on Programs and Features.
    3. Select the MSXML 4.0 SP2 entry.
    4. Click on Uninstall.

    Description of an update for Microsoft XML Core Services 4.0 Service Pack 2 - Microsoft Support If the above steps do not work, you can try running the following command in an elevated PowerShell prompt:

    Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -like "MSXML 4.0 SP*"} | ForEach-Object { $_.Uninstall() }
    

    This command should uninstall MSXML 4.0 from your system.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.