kerm007 0 Posted February 28 Share Posted February 28 hello i have one user that when i check on the protect portal i see there is windows updates available for office 2007 i check on add remove program there is no office 2007 app installed but it keep proposing me the patch why is that ? Thanks Quote Link to comment Share on other sites More sharing options...
itman 1,510 Posted February 28 Share Posted February 28 Suspect those Office 2007 updates are not legit: Quote Support for Office 2007 ended on October 10, 2017. All of your Office 2007 apps will continue to function. However, you could expose yourself to serious and potentially harmful security risks. Upgrade to a newer version of Office so you can stay up to date with all the latest features, patches, and security updates. https://support.microsoft.com/en-us/office/end-of-support-for-office-2007-942272d3-bd72-4944-9f82-02ed307cf934 Question is why Eset Protect would even acknowledge them regardless if Office 2007 is installed or not. Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted February 28 Author Share Posted February 28 but sometime when i run windows update it show up 2 KB but not all the time but eset keep saying i have windows updates available strange Quote Link to comment Share on other sites More sharing options...
itman 1,510 Posted February 28 Share Posted February 28 4 minutes ago, kerm007 said: but eset keep saying i have windows updates available Check Control Panel -> Programs on that device again. Is Office 2017 installed? This could be a bug with Eset Protect properly detecting what Office ver. is installed. Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted February 28 Author Share Posted February 28 hello no office 2007 installed very strange Quote Link to comment Share on other sites More sharing options...
itman 1,510 Posted February 28 Share Posted February 28 37 minutes ago, kerm007 said: hello no office 2007 installed Is any Office version install on the device? Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted March 1 Author Share Posted March 1 Yes 2021 Thanks Quote Link to comment Share on other sites More sharing options...
Administrators Marcos 4,614 Posted March 1 Administrators Share Posted March 1 You can run this Powershell script to determine if there are any Windows updates available: $searcher = New-Object -ComObject Microsoft.Update.Searcher Write-Host "**********************************************************" Write-Host "*** IsInstalled=0" Write-Host "**********************************************************" $objSearchResult = $Searcher.Search("IsInstalled=0") foreach($objUpdate in $objSearchResult.Updates) { Write-Host ( " UpdateID : {" + $objUpdate.Identity.UpdateID + "}" ) Write-Host ( " RevisionNumber : " + $objUpdate.Identity.RevisionNumber ) Write-Host ( " InstallationBehavior : " + "CanRequestUserInput=" + $objUpdate.InstallationBehavior.CanRequestUserInput + ", Impact=" + $objUpdate.InstallationBehavior.Impact + ", RebootBehavior=" + $objUpdate.InstallationBehavior.RebootBehavior + ", RequiresNetworkConnectivity=" + $objUpdate.InstallationBehavior.RequiresNetworkConnectivity ) $objUpdate } Write-Host "**********************************************************" Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted March 1 Author Share Posted March 1 ok but the fact that when i run windows update and it's not showing any 😞 Quote Link to comment Share on other sites More sharing options...
Administrators Marcos 4,614 Posted March 1 Administrators Share Posted March 1 We merely query Windows for available updates, ie. do the very same what the above script does. It's a question for MS why it offers updates for Office 2007 that you don't have installed. For various types of optional updates, please refer to https://www.howtogeek.com/751889/should-you-install-windows-10s-optional-driver-updates. Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted March 1 Author Share Posted March 1 hello i tries to run the script nothing happen Thanks Quote Link to comment Share on other sites More sharing options...
Administrators Marcos 4,614 Posted March 1 Administrators Share Posted March 1 You may need to run the PowerShell console as an administrator or temporarily change executionpolicy to bypass for instance. Quote Link to comment Share on other sites More sharing options...
kerm007 0 Posted March 1 Author Share Posted March 1 ok i run it on my system 0 updates listed Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.