Jump to content


smaunsell

Specific Windows Update required dependency for application

Recommended Posts

I have an application that requires a specific Windows Update to be installed before the application can be. Is there a way to check for this update before installing?

Specifically, this is the Sophos Endpoint Protection from Sophos Central. Manually attempting to install without this update gives the message:

Quote

Azure Code Signing is not supported. This version of Windows does not support Azure Code Signing. Update your computer before installation. See Sophos KB-000045019

The KB article says:

Quote

Operating System support for Azure Code Signing was first made available in September 2021 and requires the appropriate Windows Security Updates to be installed.  Full details on required updates can be found in Microsoft’s official KB5022661 on this topic. 

Downloading the .msu file from the Microsoft Update Catalog fails the install saying "The update is not applicable to your computer" so it appears there are other updates that are needed before this one can be installed.

SCCM will push out all the updates that are required. It just takes time. I'd like an installer in Software Centre that either installs the dependencies or doesn't display as available until the dependencies have been installed. Is this possible? If so, how?

Share this post


Link to post
Share on other sites

you could have a detection script for the KB like so, change the kb number to whatever kb you are looking for

 

# niall brady 2023/10/04
# check if the KB is actually installed
#

$result = systeminfo.exe | findstr KB5030310

if ($result){
write-output "Found KB5030310"
exit 0}

else {
write-output "Could not find KB5030310"
exit 1}

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.