Open-AudIT
https://www.open-audit.org/phpBB3/

Windows 10 - Updates page empty
https://www.open-audit.org/phpBB3/viewtopic.php?f=20&t=6593
Page 1 of 1

Author:  cburbs [ Fri May 19, 2017 2:22 am ]
Post subject:  Windows 10 - Updates page empty

The windows 10 machines don't show any info under menu, software, updates. Is there a way to get this info?

Author:  jpa [ Fri May 19, 2017 7:55 am ]
Post subject:  Re: Windows 10 - Updates page empty

There are several places in the Windows audit code that only audit certain versions of windows and have not been updated for Win10 or Server 2016. Updating these may do what you want.

Quick hack to extend existing checks for hard coded names rather than build_number newer than some value.

Around lines 3735 and 4055 in audit_windows.vbs find the existing if statement
[code]if (system_os_family = "Windows 2008" or system_os_family = "Windows 7" or system_os_family = "Windows Vista" or system_os_family = "Windows 8" or system_os_family = "Windows 2012" or system_os_family = "Windows 10" or system_os_family = "Windows 2016") then[/code]
and replace with
[code]if (system_os_family = "Windows 2008" or system_os_family = "Windows 7" or system_os_family = "Windows Vista" or system_os_family = "Windows 8" or system_os_family = "Windows 2012" or system_os_family = "Windows 10" or system_os_family = "Windows 2016") then[/code]
There may be / probably are other places in the code that should be updated as well for similar reasons.

Author:  cburbs [ Sat May 20, 2017 12:27 am ]
Post subject:  Re: Windows 10 - Updates page empty

Ok that helped and was easy enough. As always thanks for your assistance!

Page 1 of 1 All times are UTC + 10 hours
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/