c# - How to programmatically detect if Windows 8.1 Update is installed -


I will check with the C # application whether the latest (KB 2919355) is installed

There is nothing available on any Microsoft site or through Google which indicates how this can be done.

Thank you!

This update is actually a collection of "rollup" or other small updates. If you go to "File Notification" and see below, then you can see the update. In fact the combination of the following other updates.

  • KB2919442
  • KB2919355
  • KB2937592
  • KB2938439
  • KB2934018
  • Then you will need to either examine all the updates listed above are applied or a single master update applies. I'm not sure how to do it in C #, but through the command line you can do it by console command

      get wmic qfe hotfixid. Search "KB2919355"  

    Comments

    Popular posts from this blog

    import - Python ImportError: No module named wmi -

    Editing Python Class in Shell and SQLAlchemy -

    c# - MySQL Parameterized Select Query joining tables issue -