RUN Command for "View Update History" and "Installed Updates" Windows

0

Is there any direct way to open the following control panel windows using a RUN command (or even a cmd /c command):
1. View Update History
2. Installed Updates
Thanks in advance.

M_M

Posted 2018-04-02T21:26:06.627

Reputation: 35

try wmic qfe
you can also specify a search by using wmic qfe | find "search string" this will just give you a list. Opening updates is a little different
– warfy – 2018-04-03T00:03:25.930

A batch file will open it in a nicer format wmic qfe list full /format:htable > C:\WinUpdateList\updates.htm start iexplore C:\WinUpdateList\updates.htm Closest I can see to open the control panel is rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl – warfy – 2018-04-03T00:10:38.653

No answers