├── .gitignore ├── CHANGELOG.md ├── CMDLINE.md ├── LICENSE.txt ├── README.md ├── collector ├── Custom_20190321.csv ├── collect_bulletin.ps1 ├── collect_msrc.ps1 ├── collect_nvd.ps1 └── push_definitions.ps1 ├── definitions.zip ├── demo.gif ├── missingkbs.ps1 ├── missingkbs.vbs ├── muc_lookup.py ├── setup.py ├── validation ├── 10_1803_x64_education_en-us_systeminfo.txt ├── 10_1803_x64_enterprise_es-ar_20190307_systeminfo.txt ├── 10_1803_x64_pro_it_systeminfo.txt ├── 10_1803_x64_proforworkstations_en-us_A_20190305_qfe.txt ├── 10_1803_x64_proforworkstations_en-us_A_20190305_systeminfo.txt ├── 10_1803_x64_proforworkstations_en-us_A_20190305_updates.txt ├── 10_1803_x64_proforworkstations_en-us_B_20190306_qfe.txt ├── 10_1803_x64_proforworkstations_en-us_B_20190306_systeminfo.txt ├── 10_1803_x64_proforworkstations_en-us_B_20190306_updates.txt ├── 10_1803_x64_proforworkstations_en-us_systeminfo.txt ├── 10_1803_x86_enterprise_nl_systeminfo.txt ├── 10_1809_x64_education_en-us_20190306_qfe.txt ├── 10_1809_x64_education_en-us_20190306_systeminfo.txt ├── 10_1809_x64_education_en-us_20190306_updates.txt ├── 10_1809_x64_education_en-us_systeminfo.txt ├── 10_1809_x64_education_es_systeminfo.txt ├── 10_1809_x64_enterprise_zh-cn_systeminfo.txt ├── 10_1809_x64_pro_en-us_20190307_qfe.txt ├── 10_1809_x64_pro_en-us_20190307_systeminfo.txt ├── 10_21H1_x64_enterprise_systeminfo.txt ├── 10_21H2_x64_pro_systeminfo.txt ├── 10_22H2_x64_enterprise_en-us_systeminfo.txt ├── 10_rtm_x64_pro_en-us_systeminfo.txt ├── 11_21H2_x64_enterprise_systeminfo.txt ├── 11_22H2_x64_home-single-language_systeminfo.txt ├── 11_23H2_x64_enterprise_systeminfo.txt ├── 11_24H2_x64_enterprise_systeminfo.txt ├── 7_sp1_x64_enterprise_en-us_20190305_qfe.txt ├── 7_sp1_x64_enterprise_en-us_20190305_systeminfo.txt ├── 7_sp1_x64_enterprise_en-us_20190305_updates.txt ├── 7_sp1_x64_enterprise_en-us_A_systeminfo.txt ├── 7_sp1_x64_enterprise_en-us_B_qfe.txt ├── 7_sp1_x64_enterprise_en-us_B_systeminfo.txt ├── 7_sp1_x64_enterprise_fr_systeminfo_cmd.txt ├── 7_sp1_x64_enterprise_fr_systeminfo_powershell.txt ├── 7_sp1_x64_ultimaten_de_systeminfo.txt ├── 7_sp1_x86_enterprise_en-us_systeminfo.txt ├── 8.1_u1_x64_enterprise_en-us_systeminfo.txt ├── _listupdates.vbs ├── srv_2003_rtm_x86_standard_en-us_systeminfo.txt ├── srv_2003_sp1_x64_standard_en-us_systeminfo.txt ├── srv_2003r2_sp2_rtm_x64_standard_en-us_systeminfo.txt ├── srv_2003r2_sp2_x86_standard_en-us_systeminfo.txt ├── srv_2008_rtm_x64_standard_en-us_systeminfo.txt ├── srv_2008_rtm_x86_standard_en-us_systeminfo.txt ├── srv_2008r2_sp1_x64_standard_en-us_systeminfo.txt ├── srv_2012r2_u1_qfe.txt ├── srv_2012r2_u1_systeminfo.txt ├── srv_2012r2_u1_systeminfo2.txt ├── srv_2012r2_u1_updates_optional.txt ├── srv_2012r2_x64_standard_ru_qfe.txt ├── srv_2012r2_x64_standard_ru_systeminfo.txt ├── srv_2016_1607_datacenter_en-us_systeminfo.txt ├── srv_2019_rtm_datacenter_en-us_systeminfo.txt ├── srv_2022_systeminfo.txt ├── vista_x64_sp0_systeminfo.txt ├── vista_x64_sp1_qfe.txt ├── vista_x64_sp1_systeminfo.txt ├── vista_x64_sp2_qfe.txt ├── vista_x64_sp2_systeminfo.txt ├── xp_rtm_x86_professional_en-us_qfe.txt ├── xp_rtm_x86_professional_en-us_systeminfo.txt ├── xp_sp1_x86_qfe.txt ├── xp_sp1_x86_systeminfo.txt ├── xp_sp2_x64_qfe.txt ├── xp_sp2_x64_systeminfo.txt ├── xp_sp2_x86_qfe.txt ├── xp_sp2_x86_systeminfo.txt ├── xp_sp3_x86_professional_en-us_qfe.txt └── xp_sp3_x86_professional_en-us_systeminfo.txt └── wes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMDLINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/CMDLINE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/README.md -------------------------------------------------------------------------------- /collector/Custom_20190321.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/collector/Custom_20190321.csv -------------------------------------------------------------------------------- /collector/collect_bulletin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/collector/collect_bulletin.ps1 -------------------------------------------------------------------------------- /collector/collect_msrc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/collector/collect_msrc.ps1 -------------------------------------------------------------------------------- /collector/collect_nvd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/collector/collect_nvd.ps1 -------------------------------------------------------------------------------- /collector/push_definitions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/collector/push_definitions.ps1 -------------------------------------------------------------------------------- /definitions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/definitions.zip -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/demo.gif -------------------------------------------------------------------------------- /missingkbs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/missingkbs.ps1 -------------------------------------------------------------------------------- /missingkbs.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/missingkbs.vbs -------------------------------------------------------------------------------- /muc_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/muc_lookup.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/setup.py -------------------------------------------------------------------------------- /validation/10_1803_x64_education_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_education_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_enterprise_es-ar_20190307_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_enterprise_es-ar_20190307_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_pro_it_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_pro_it_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_A_20190305_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_A_20190305_qfe.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_A_20190305_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_A_20190305_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_A_20190305_updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_A_20190305_updates.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_B_20190306_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_B_20190306_qfe.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_B_20190306_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_B_20190306_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_B_20190306_updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_B_20190306_updates.txt -------------------------------------------------------------------------------- /validation/10_1803_x64_proforworkstations_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x64_proforworkstations_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1803_x86_enterprise_nl_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1803_x86_enterprise_nl_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_education_en-us_20190306_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_education_en-us_20190306_qfe.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_education_en-us_20190306_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_education_en-us_20190306_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_education_en-us_20190306_updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_education_en-us_20190306_updates.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_education_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_education_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_education_es_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_education_es_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_enterprise_zh-cn_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_enterprise_zh-cn_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_pro_en-us_20190307_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_pro_en-us_20190307_qfe.txt -------------------------------------------------------------------------------- /validation/10_1809_x64_pro_en-us_20190307_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_1809_x64_pro_en-us_20190307_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_21H1_x64_enterprise_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_21H1_x64_enterprise_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_21H2_x64_pro_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_21H2_x64_pro_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_22H2_x64_enterprise_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_22H2_x64_enterprise_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/10_rtm_x64_pro_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/10_rtm_x64_pro_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/11_21H2_x64_enterprise_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/11_21H2_x64_enterprise_systeminfo.txt -------------------------------------------------------------------------------- /validation/11_22H2_x64_home-single-language_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/11_22H2_x64_home-single-language_systeminfo.txt -------------------------------------------------------------------------------- /validation/11_23H2_x64_enterprise_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/11_23H2_x64_enterprise_systeminfo.txt -------------------------------------------------------------------------------- /validation/11_24H2_x64_enterprise_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/11_24H2_x64_enterprise_systeminfo.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_20190305_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_20190305_qfe.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_20190305_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_20190305_systeminfo.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_20190305_updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_20190305_updates.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_A_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_A_systeminfo.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_B_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_B_qfe.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_en-us_B_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_en-us_B_systeminfo.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_fr_systeminfo_cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_fr_systeminfo_cmd.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_enterprise_fr_systeminfo_powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_enterprise_fr_systeminfo_powershell.txt -------------------------------------------------------------------------------- /validation/7_sp1_x64_ultimaten_de_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x64_ultimaten_de_systeminfo.txt -------------------------------------------------------------------------------- /validation/7_sp1_x86_enterprise_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/7_sp1_x86_enterprise_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/8.1_u1_x64_enterprise_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/8.1_u1_x64_enterprise_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/_listupdates.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/_listupdates.vbs -------------------------------------------------------------------------------- /validation/srv_2003_rtm_x86_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2003_rtm_x86_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2003_sp1_x64_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2003_sp1_x64_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2003r2_sp2_rtm_x64_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2003r2_sp2_rtm_x64_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2003r2_sp2_x86_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2003r2_sp2_x86_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2008_rtm_x64_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2008_rtm_x64_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2008_rtm_x86_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2008_rtm_x86_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2008r2_sp1_x64_standard_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2008r2_sp1_x64_standard_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_u1_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_u1_qfe.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_u1_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_u1_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_u1_systeminfo2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_u1_systeminfo2.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_u1_updates_optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_u1_updates_optional.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_x64_standard_ru_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_x64_standard_ru_qfe.txt -------------------------------------------------------------------------------- /validation/srv_2012r2_x64_standard_ru_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2012r2_x64_standard_ru_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2016_1607_datacenter_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2016_1607_datacenter_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2019_rtm_datacenter_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2019_rtm_datacenter_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/srv_2022_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/srv_2022_systeminfo.txt -------------------------------------------------------------------------------- /validation/vista_x64_sp0_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/vista_x64_sp0_systeminfo.txt -------------------------------------------------------------------------------- /validation/vista_x64_sp1_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/vista_x64_sp1_qfe.txt -------------------------------------------------------------------------------- /validation/vista_x64_sp1_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/vista_x64_sp1_systeminfo.txt -------------------------------------------------------------------------------- /validation/vista_x64_sp2_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/vista_x64_sp2_qfe.txt -------------------------------------------------------------------------------- /validation/vista_x64_sp2_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/vista_x64_sp2_systeminfo.txt -------------------------------------------------------------------------------- /validation/xp_rtm_x86_professional_en-us_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_rtm_x86_professional_en-us_qfe.txt -------------------------------------------------------------------------------- /validation/xp_rtm_x86_professional_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_rtm_x86_professional_en-us_systeminfo.txt -------------------------------------------------------------------------------- /validation/xp_sp1_x86_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp1_x86_qfe.txt -------------------------------------------------------------------------------- /validation/xp_sp1_x86_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp1_x86_systeminfo.txt -------------------------------------------------------------------------------- /validation/xp_sp2_x64_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp2_x64_qfe.txt -------------------------------------------------------------------------------- /validation/xp_sp2_x64_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp2_x64_systeminfo.txt -------------------------------------------------------------------------------- /validation/xp_sp2_x86_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp2_x86_qfe.txt -------------------------------------------------------------------------------- /validation/xp_sp2_x86_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp2_x86_systeminfo.txt -------------------------------------------------------------------------------- /validation/xp_sp3_x86_professional_en-us_qfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp3_x86_professional_en-us_qfe.txt -------------------------------------------------------------------------------- /validation/xp_sp3_x86_professional_en-us_systeminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/validation/xp_sp3_x86_professional_en-us_systeminfo.txt -------------------------------------------------------------------------------- /wes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsadmin/wesng/HEAD/wes.py --------------------------------------------------------------------------------