foreman_discovery 15.0.0 → 15.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/app/models/discovery_attribute_set.rb +0 -1
  3. data/app/models/host/discovered.rb +1 -2
  4. data/app/services/foreman_discovery/import_hooks/discovery_attribute.rb +9 -2
  5. data/lib/foreman_discovery/version.rb +1 -1
  6. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  7. data/locale/ca/foreman_discovery.edit.po +81 -170
  8. data/locale/ca/foreman_discovery.po +1 -1
  9. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  10. data/locale/de/foreman_discovery.edit.po +79 -169
  11. data/locale/de/foreman_discovery.po +1 -1
  12. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  13. data/locale/en/foreman_discovery.edit.po +12 -12
  14. data/locale/en/foreman_discovery.po +1 -1
  15. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  16. data/locale/en_GB/foreman_discovery.edit.po +81 -170
  17. data/locale/en_GB/foreman_discovery.po +1 -1
  18. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  19. data/locale/es/foreman_discovery.edit.po +81 -170
  20. data/locale/es/foreman_discovery.po +1 -1
  21. data/locale/foreman_discovery.pot +13 -13
  22. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  23. data/locale/fr/foreman_discovery.edit.po +79 -169
  24. data/locale/fr/foreman_discovery.po +1 -1
  25. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/gl/foreman_discovery.edit.po +81 -170
  27. data/locale/gl/foreman_discovery.po +1 -1
  28. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/it/foreman_discovery.edit.po +81 -170
  30. data/locale/it/foreman_discovery.po +1 -1
  31. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/ja/foreman_discovery.edit.po +83 -170
  33. data/locale/ja/foreman_discovery.po +1 -1
  34. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/ko/foreman_discovery.edit.po +81 -169
  36. data/locale/ko/foreman_discovery.po +1 -1
  37. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/pt_BR/foreman_discovery.edit.po +81 -170
  39. data/locale/pt_BR/foreman_discovery.po +1 -1
  40. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/ru/foreman_discovery.edit.po +84 -171
  42. data/locale/ru/foreman_discovery.po +1 -1
  43. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/sv_SE/foreman_discovery.edit.po +81 -170
  45. data/locale/sv_SE/foreman_discovery.po +1 -1
  46. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/zh_CN/foreman_discovery.edit.po +83 -170
  48. data/locale/zh_CN/foreman_discovery.po +1 -1
  49. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  50. data/locale/zh_TW/foreman_discovery.edit.po +83 -170
  51. data/locale/zh_TW/foreman_discovery.po +1 -1
  52. data/test/functional/discovered_hosts_controller_test.rb +1 -1
  53. data/test/unit/discovery_attribute_set_test.rb +12 -8
  54. data/test/unit/managed_extensions_test.rb +2 -2
  55. metadata +29 -34
  56. data/test/facts/asswweb061.json +0 -2967
  57. data/test/facts/qemu_noip.json +0 -2
@@ -5,7 +5,7 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 14.0.0\n"
8
+ "Project-Id-Version: foreman_discovery 15.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "PO-Revision-Date: 2019-04-18 19:36+0000\n"
11
11
  "Last-Translator: Lukáš Zapletal\n"
@@ -86,7 +86,7 @@ class DiscoveredHostsControllerTest < ActionController::TestCase
86
86
  def test_edit_form_quick_submit
87
87
  domain = FactoryBot.create(:domain)
88
88
  hostgroup = FactoryBot.create(:hostgroup, :with_subnet, :with_environment, :with_rootpass, :with_os, :domain => domain)
89
- new_ip = hostgroup.subnet.ipaddr
89
+ new_ip = hostgroup.subnet.ipaddr.to_s
90
90
  host = discover_host_from_facts(@facts.merge({
91
91
  'ipaddress' => new_ip,
92
92
  'ipaddress_eth0' => new_ip
@@ -18,34 +18,38 @@ class DiscoveryAttributeSetTest < ActiveSupport::TestCase
18
18
 
19
19
  test "can search discovered hosts by cpu" do
20
20
  host = discover_host_from_facts(@facts)
21
- results = Host::Discovered.search_for("cpu_count = #{host.facts_hash['physicalprocessorcount'].to_i}")
21
+ results = Host::Discovered.unscoped.search_for("cpu_count = #{host.facts_hash['physicalprocessorcount'].to_i}")
22
22
  assert_equal 1, results.count
23
- results = Host::Discovered.search_for("cpu_count > #{host.facts_hash['physicalprocessorcount'].to_i}")
23
+ results = Host::Discovered.unscoped.search_for("cpu_count > #{host.facts_hash['physicalprocessorcount'].to_i}")
24
24
  assert_equal 0, results.count
25
25
  end
26
26
 
27
27
  test "can search discovered hosts by memory" do
28
28
  host = discover_host_from_facts(@facts)
29
- results = Host::Discovered.search_for("memory = #{host.facts_hash['memorysize_mb'].to_f.ceil}")
29
+ results = Host::Discovered.unscoped.search_for("memory = #{host.facts_hash['memorysize_mb'].to_f.ceil}")
30
30
  assert_equal 1, results.count
31
- results = Host::Discovered.search_for("memory > #{host.facts_hash['memorysize_mb'].to_f.ceil}")
31
+ results = Host::Discovered.unscoped.search_for("memory > #{host.facts_hash['memorysize_mb'].to_f.ceil}")
32
32
  assert_equal 0, results.count
33
33
  end
34
34
 
35
35
  test "can search discovered hosts by disk_count" do
36
36
  host = discover_host_from_facts(@facts)
37
- results = Host::Discovered.search_for("disk_count = 1")
37
+ results = Host::Discovered.unscoped.search_for("disk_count = 1")
38
38
  assert_equal 1, results.count
39
- results = Host::Discovered.search_for("disk_count = 3")
39
+ results = Host::Discovered.unscoped.search_for("disk_count = 3")
40
40
  assert_equal 0, results.count
41
41
  end
42
42
 
43
43
  test "can search discovered hosts by disks_size" do
44
+ excluded = Setting[:excluded_facts]
45
+ Setting[:excluded_facts] = ["test"]
44
46
  host = discover_host_from_facts(@facts)
45
47
  disks_size = (host.facts_hash['blockdevice_sda_size'].to_f / 1024 / 1024).ceil
46
- results = Host::Discovered.search_for("disks_size = #{disks_size}")
48
+ results = Host::Discovered.unscoped.search_for("disks_size = #{disks_size}")
47
49
  assert_equal 1, results.count
48
- results = Host::Discovered.search_for("disks_size > #{disks_size}")
50
+ results = Host::Discovered.unscoped.search_for("disks_size > #{disks_size}")
49
51
  assert_equal 0, results.count
52
+ ensure
53
+ Setting[:excluded_facts] = excluded
50
54
  end
51
55
  end
@@ -65,8 +65,8 @@ class ManagedExtensionsTest < ActiveSupport::TestCase
65
65
  end
66
66
 
67
67
  test "setKexec calls renderer" do
68
- Host::Discovered.any_instance.expects(:render_template).with() { |json| JSON.parse(json) }.once
69
- Foreman::Renderer.expects(:render).returns({})
68
+ @host.expects(:render_kexec_template).once.returns({})
69
+ Host::Discovered.any_instance.expects(:kexec).once
70
70
  @host.setKexec
71
71
  end
72
72
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_discovery
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.0
4
+ version: 15.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aditi Puntambekar
@@ -68,7 +68,7 @@ authors:
68
68
  autorequire:
69
69
  bindir: bin
70
70
  cert_chain: []
71
- date: 2019-05-13 00:00:00.000000000 Z
71
+ date: 2019-07-23 00:00:00.000000000 Z
72
72
  dependencies: []
73
73
  description: MaaS Discovery Plugin engine for Foreman
74
74
  email: gsutclif@redhat.com
@@ -234,14 +234,12 @@ files:
234
234
  - locale/zh_TW/foreman_discovery.po
235
235
  - test/factories/discovery_host_related.rb
236
236
  - test/factories/discovery_rule_related.rb
237
- - test/facts/asswweb061.json
238
237
  - test/facts/default.json
239
238
  - test/facts/dell_npars.json
240
239
  - test/facts/dell_vlan.json
241
240
  - test/facts/facts_with_lldp.json
242
241
  - test/facts/facts_with_lldp_bond_candidate.json
243
242
  - test/facts/pxeless-vlan.json
244
- - test/facts/qemu_noip.json
245
243
  - test/facts/regular_host.json
246
244
  - test/facts/rhel-dl380-1kdisks.json
247
245
  - test/facts/rhel-r730.json
@@ -291,49 +289,46 @@ required_rubygems_version: !ruby/object:Gem::Requirement
291
289
  - !ruby/object:Gem::Version
292
290
  version: '0'
293
291
  requirements: []
294
- rubyforge_project:
295
- rubygems_version: 2.7.6
292
+ rubygems_version: 3.0.3
296
293
  signing_key:
297
294
  specification_version: 4
298
295
  summary: MaaS Discovery Plugin for Foreman
299
296
  test_files:
300
- - test/models/setting_test.rb
301
- - test/test_plugin_helper.rb
302
- - test/test_helper_discovery.rb
297
+ - test/functional/foreman_discovery/concerns/hosts_controller_extensions_test.rb
298
+ - test/functional/discovered_hosts_controller_test.rb
299
+ - test/functional/api/v2/discovered_hosts_controller_test.rb
300
+ - test/functional/api/v2/fact_value_extensions_test.rb
301
+ - test/functional/api/v2/settings_controller_test.rb
302
+ - test/functional/api/v2/discovery_rules_controller_test.rb
303
+ - test/functional/discovery_rules_controller_test.rb
303
304
  - test/integration/discovered_hosts_test.rb
305
+ - test/test_plugin_helper.rb
304
306
  - test/facts/facts_with_lldp.json
305
307
  - test/facts/dell_vlan.json
306
- - test/facts/asswweb061.json
308
+ - test/facts/simple-bond.json
307
309
  - test/facts/rhel-r730.json
308
- - test/facts/qemu_noip.json
309
- - test/facts/regular_host.json
310
- - test/facts/vmware_local.json
311
- - test/facts/pxeless-vlan.json
312
310
  - test/facts/dell_npars.json
313
- - test/facts/simple-bond.json
311
+ - test/facts/pxeless-vlan.json
312
+ - test/facts/regular_host.json
313
+ - test/facts/facts_with_lldp_bond_candidate.json
314
+ - test/facts/rhel7-vlan.json
315
+ - test/facts/default.json
314
316
  - test/facts/rhel-dl380-1kdisks.json
315
317
  - test/facts/suse-vmware.json
316
- - test/facts/default.json
317
- - test/facts/rhel7-vlan.json
318
- - test/facts/facts_with_lldp_bond_candidate.json
319
- - test/unit/lldp_neighbors_test.rb
320
- - test/unit/discovery_attribute_set_test.rb
321
- - test/unit/discovered_mailer_test.rb
322
- - test/unit/managed_extensions_test.rb
318
+ - test/facts/vmware_local.json
323
319
  - test/unit/discovery_rule_test.rb
324
- - test/unit/discovered_extensions_test.rb
325
320
  - test/unit/discovery_taxonomy_extensions_test.rb
326
- - test/unit/ui_notifications/new_host_test.rb
327
- - test/unit/ui_notifications/destroy_host_test.rb
321
+ - test/unit/discovered_mailer_test.rb
322
+ - test/unit/fact_parser_test.rb
323
+ - test/unit/discovered_extensions_test.rb
328
324
  - test/unit/setting_discovered_test.rb
329
325
  - test/unit/host_discovered_test.rb
330
- - test/unit/fact_parser_test.rb
331
- - test/factories/discovery_host_related.rb
326
+ - test/unit/lldp_neighbors_test.rb
327
+ - test/unit/ui_notifications/destroy_host_test.rb
328
+ - test/unit/ui_notifications/new_host_test.rb
329
+ - test/unit/discovery_attribute_set_test.rb
330
+ - test/unit/managed_extensions_test.rb
331
+ - test/models/setting_test.rb
332
+ - test/test_helper_discovery.rb
332
333
  - test/factories/discovery_rule_related.rb
333
- - test/functional/foreman_discovery/concerns/hosts_controller_extensions_test.rb
334
- - test/functional/api/v2/fact_value_extensions_test.rb
335
- - test/functional/api/v2/discovered_hosts_controller_test.rb
336
- - test/functional/api/v2/settings_controller_test.rb
337
- - test/functional/api/v2/discovery_rules_controller_test.rb
338
- - test/functional/discovered_hosts_controller_test.rb
339
- - test/functional/discovery_rules_controller_test.rb
334
+ - test/factories/discovery_host_related.rb
@@ -1,2967 +0,0 @@
1
- {
2
- "aio_agent_version": "5.5.7",
3
- "choco_install_path": "C:\\ProgramData\\chocolatey",
4
- "chocolateyversion": "0.10.8",
5
- "dmi": {
6
- "manufacturer": "Phoenix Technologies LTD",
7
- "product": {
8
- "name": "VMware Virtual Platform",
9
- "serial_number": "VMware-42 37 e5 e8 bd 59 88 48-5f 1d 8a 98 55 88 23 91",
10
- "uuid": "E8E53742-59BD-4888-5F1D-8A9855882391"
11
- }
12
- },
13
- "env_temp_variable": "C:\\Users\\EJACKS~1\\AppData\\Local\\Temp\\11",
14
- "env_windows_installdir": "C:\\Program Files\\Puppet Labs\\Puppet",
15
- "facterversion": "3.11.5",
16
- "ha_bios_version": "6.00",
17
- "ha_defaultgateway": "10.89.120.1",
18
- "ha_dns_servers": "10.89.224.102 10.89.224.101 10.89.224.100",
19
- "ha_ips_total": "10.89.121.91 10.89.121.92 10.89.121.93 10.89.121.94 10.89.121.95 10.89.121.96 10.89.121.97 10.89.121.98 10.89.121.99 fe80::b9c2:f4b5:55d1:9d82",
20
- "ha_ips_v4": "10.89.121.91 10.89.121.92 10.89.121.93 10.89.121.94 10.89.121.95 10.89.121.96 10.89.121.97 10.89.121.98 10.89.121.99",
21
- "ha_ips_v4_count": "9",
22
- "ha_ips_v6": "fe80::b9c2:f4b5:55d1:9d82",
23
- "ha_livedate": "2012-10-16",
24
- "ha_local_administrator_groups": "WVRGROUP\\XG-Hosting-ServiceAccountAdminAccess,WVRGROUP\\XG-hasp-dev-lmssoftware,HAHOSTING\\Domain Admins,WVRGROUP\\Dev - Instant,WVRGROUP\\Dev - HASP Modular,WVRGROUP\\PMSolutionsDevs,HAHOSTING\\LocalAdmins_Non-Restricted,HAHOSTING\\dev-localadmins,HAHOSTING\\OctopusAdmins,HAHOSTING\\Service Admins - AD Computers",
25
- "ha_local_administrator_users": "ASSWWEB061\\Administrator,ASSWWEB061\\xaroot,WVRGROUP\\eLmsService,ASSWWEB061\\WDeployAdmin,WVRGROUP\\EHauser",
26
- "ha_memory_free_kb": "4757300",
27
- "ha_memory_free_percent": "57 %",
28
- "ha_memory_total_kb": "8388152",
29
- "ha_memory_used_percent": "43 %",
30
- "ha_nicname": "primary",
31
- "ha_openmanage": "False",
32
- "ha_opsview_roles": "base,iis,octopusdeploy-tentacle,splunk-forwarder",
33
- "ha_ov_app_contacts": "LMS",
34
- "ha_ov_hw_contact": "opit-systems",
35
- "ha_ov_pager_schedule": "workhours",
36
- "ha_system_cpu_total_cores": "1",
37
- "ha_system_id": "VMware-42 37 e5 e8 bd 59 88 48-5f 1d 8a 98 55 88 23 91",
38
- "ha_system_nic_type_primary": "vmxnet3 Ethernet Adapter #2",
39
- "ha_win_ad_comp_description": "",
40
- "ha_win_ad_site": "Sungard-Aus",
41
- "ha_win_ad_site_dc": "ASHWDC100",
42
- "ha_win_app_chocolatey": "True",
43
- "ha_win_app_pswinupdate_version": "1.6.1.1",
44
- "ha_win_apps": {
45
- "64_bit_hp_cio_components_installer": {
46
- "architecture": "x64",
47
- "displayversion": "3.2.1",
48
- "installdate": "20120906",
49
- "publisher": "Hewlett-Packard",
50
- "uninstallstring": "MsiExec.exe /I{68451E5C-0A9C-4D5C-8D06-6E296242E908}"
51
- },
52
- "7zip_9.20_x64_edition": {
53
- "architecture": "x64",
54
- "displayversion": "9.20.00.0",
55
- "installdate": "20121220",
56
- "publisher": "Igor Pavlov",
57
- "uninstallstring": "MsiExec.exe /I{23170F69-40C1-2702-0920-000001000000}"
58
- },
59
- "iis_url_rewrite_module_2": {
60
- "architecture": "x64",
61
- "displayversion": "7.2.2",
62
- "installdate": "20120814",
63
- "publisher": "Microsoft Corporation",
64
- "uninstallstring": "MsiExec.exe /X{EB675D0A-2C95-405B-BEE8-B42A65D23E11}"
65
- },
66
- "microsoft_application_request_routing_2.5": {
67
- "architecture": "x64",
68
- "displayversion": "2.5.1130",
69
- "installdate": "20120814",
70
- "publisher": "Microsoft Corporation",
71
- "uninstallstring": "MsiExec.exe /X{E2CA539D-F9F3-4AD7-9514-3C676C9026A3}"
72
- },
73
- "microsoft_external_cache_version_1_for_iis_7": {
74
- "architecture": "x64",
75
- "displayversion": "1.1.0490",
76
- "installdate": "20120814",
77
- "publisher": "Microsoft Corporation",
78
- "uninstallstring": "MsiExec.exe /X{4F11656E-9861-4A97-B224-CFF2996998C6}"
79
- },
80
- "microsoft_silverlight": {
81
- "architecture": "x64",
82
- "displayversion": "5.1.50907.0",
83
- "installdate": "20180324",
84
- "publisher": "Microsoft Corporation",
85
- "uninstallstring": "MsiExec.exe /X{89F4137D-6C26-4A84-BDB8-2E5A4BB71E00}"
86
- },
87
- "microsoft_sql_server_2012_management_objects_": {
88
- "architecture": "x86",
89
- "displayversion": "11.0.2100.60",
90
- "installdate": "20120816",
91
- "publisher": "Microsoft Corporation",
92
- "uninstallstring": "MsiExec.exe /I{DA1C1761-5F4F-4332-AB9D-29EDF3F8EA0A}"
93
- },
94
- "microsoft_sql_server_2012_management_objects__x64": {
95
- "architecture": "x64",
96
- "displayversion": "11.0.2100.60",
97
- "installdate": "20120816",
98
- "publisher": "Microsoft Corporation",
99
- "uninstallstring": "MsiExec.exe /I{FA0A244E-F3C2-4589-B42A-3D522DE79A42}"
100
- },
101
- "microsoft_sql_server_2012_native_client_": {
102
- "architecture": "x64",
103
- "displayversion": "11.0.2100.60",
104
- "installdate": "20120816",
105
- "publisher": "Microsoft Corporation",
106
- "uninstallstring": "MsiExec.exe /I{49D665A2-4C2A-476E-9AB8-FCC425F526FC}"
107
- },
108
- "microsoft_sql_server_2012_transactsql_scriptdom_": {
109
- "architecture": "x64",
110
- "displayversion": "11.0.2100.60",
111
- "installdate": "20120816",
112
- "publisher": "Microsoft Corporation",
113
- "uninstallstring": "MsiExec.exe /I{0E8670B8-3965-4930-ADA6-570348B67153}"
114
- },
115
- "microsoft_visual_c_2008_redistributable__x64_9.0.30729.4148": {
116
- "architecture": "x64",
117
- "displayversion": "9.0.30729.4148",
118
- "installdate": "20120510",
119
- "publisher": "Microsoft Corporation",
120
- "uninstallstring": "MsiExec.exe /X{4B6C7001-C7D6-3710-913E-5BC23FCE91E6}"
121
- },
122
- "microsoft_visual_c_2008_redistributable__x64_9.0.30729.6161": {
123
- "architecture": "x64",
124
- "displayversion": "9.0.30729.6161",
125
- "installdate": "20130429",
126
- "publisher": "Microsoft Corporation",
127
- "uninstallstring": "MsiExec.exe /X{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4}"
128
- },
129
- "microsoft_visual_c_2008_redistributable__x86_9.0.30729.4148": {
130
- "architecture": "x86",
131
- "displayversion": "9.0.30729.4148",
132
- "installdate": "20120510",
133
- "publisher": "Microsoft Corporation",
134
- "uninstallstring": "MsiExec.exe /X{1F1C2DFC-2D24-3E06-BCB8-725134ADF989}"
135
- },
136
- "microsoft_visual_c_2008_redistributable__x86_9.0.30729.6161": {
137
- "architecture": "x86",
138
- "displayversion": "9.0.30729.6161",
139
- "installdate": "20130429",
140
- "publisher": "Microsoft Corporation",
141
- "uninstallstring": "MsiExec.exe /X{9BE518E6-ECC6-35A9-88E4-87755C07200F}"
142
- },
143
- "microsoft_visual_c_2010__x64_redistributable__10.0.40219": {
144
- "architecture": "x64",
145
- "displayversion": "10.0.40219",
146
- "installdate": "20131018",
147
- "publisher": "Microsoft Corporation",
148
- "uninstallstring": "MsiExec.exe /X{1D8E6291-B0D5-35EC-8441-6616F567A0F7}"
149
- },
150
- "microsoft_web_deploy_3.5": {
151
- "architecture": "x64",
152
- "displayversion": "3.1237.1762",
153
- "installdate": "20140102",
154
- "publisher": "Microsoft Corporation",
155
- "uninstallstring": "MsiExec.exe /I{3674F088-9B90-473A-AAC3-20A00D8D810C}"
156
- },
157
- "microsoft_web_platform_installer_4.6": {
158
- "architecture": "x64",
159
- "displayversion": "4.0.40719.0",
160
- "installdate": "20140102",
161
- "publisher": "Microsoft Corporation",
162
- "uninstallstring": "MsiExec.exe /X{16C7D2AD-20CA-491E-80BC-8607A9AACED9}"
163
- },
164
- "new_relic_.net_agent_64bit": {
165
- "architecture": "x64",
166
- "displayversion": "5.14.43.0",
167
- "installdate": "20160224",
168
- "publisher": "New Relic",
169
- "uninstallstring": "MsiExec.exe /I{60AFA307-DF2E-4100-B444-DBDBE00EC596}"
170
- },
171
- "octopus_deploy_tentacle": {
172
- "architecture": "x64",
173
- "displayversion": "3.23.2",
174
- "installdate": "20181126",
175
- "publisher": "Octopus Deploy Pty. Ltd.",
176
- "uninstallstring": "MsiExec.exe /X{B2C494B7-E6E4-4819-9EDA-BC38D4FE37D8}"
177
- },
178
- "opsview_agent": {
179
- "architecture": "x64",
180
- "displayversion": "3.9.1.5490.0.3.8",
181
- "installdate": "20130825",
182
- "publisher": "Opsera Ltd"
183
- },
184
- "opsview_nsclient_windows_agent_x64": {
185
- "architecture": "x64",
186
- "displayversion": "0.3.9.502",
187
- "installdate": "20180323",
188
- "publisher": "Opsview Ltd",
189
- "uninstallstring": "MsiExec.exe /I{52BD1381-4AF0-4ADF-97A5-891B4217D77A}"
190
- },
191
- "puppet_agent_64bit": {
192
- "architecture": "x64",
193
- "displayversion": "5.5.7",
194
- "installdate": "20190124",
195
- "publisher": "Puppet Inc",
196
- "uninstallstring": "MsiExec.exe /X{24BA8098-D110-47ED-949E-5CFAAD99ECDC}"
197
- },
198
- "symantec_endpoint_protection": {
199
- "architecture": "x64",
200
- "displayversion": "14.0.2415.0200",
201
- "installdate": "20171118",
202
- "publisher": "Symantec Corporation",
203
- "uninstallstring": "MsiExec.exe /I{3DCB7A99-79F6-4FC5-93F4-55DB5D275F12}"
204
- },
205
- "treesize_free_v4.0.3": {
206
- "architecture": "x86",
207
- "displayversion": "4.0.3",
208
- "installdate": "20170905",
209
- "publisher": "JAM Software",
210
- "uninstallstring": "\"C:\\Program Files (x86)\\JAM Software\\TreeSize Free\\unins000.exe\""
211
- },
212
- "universalforwarder": {
213
- "architecture": "x64",
214
- "displayversion": "7.1.1.0",
215
- "installdate": "20180817",
216
- "publisher": "Splunk, Inc.",
217
- "uninstallstring": "MsiExec.exe /X{7049E04C-C103-413B-A21A-A99CA63D4ED4}"
218
- },
219
- "vmware_tools": {
220
- "architecture": "x64",
221
- "displayversion": "10.0.0.3000743",
222
- "installdate": "20161010",
223
- "publisher": "VMware, Inc.",
224
- "uninstallstring": "MsiExec.exe /I{150A78E4-A6BA-4FA5-BE15-D2C4AB5E0AAA}"
225
- }
226
- },
227
- "ha_win_apps_count": 27,
228
- "ha_win_aws": {
229
- "is_aws_instance": false
230
- },
231
- "ha_win_canonical": "hahosting.local/Server Products - Stage/LMS/ASSWWEB061",
232
- "ha_win_disks": {
233
- "disks": {
234
- "C:": {
235
- "blocks": 167561216,
236
- "blocksize": 512,
237
- "bootpartition": false,
238
- "disk": 0,
239
- "diskfree": 16.91,
240
- "diskfreepercent": 21.16,
241
- "disksize": 79.9,
242
- "filesystem": "NTFS",
243
- "firmware": "1.0 ",
244
- "model": "VMware Virtual disk SCSI Disk Device",
245
- "partition": 1,
246
- "partitions": 2,
247
- "partitionsize(gb)": 79.9,
248
- "serialnumber": "6000c29b38c277873f92259776d20e25"
249
- },
250
- "D:": {
251
- "blocks": 41676800,
252
- "blocksize": 512,
253
- "bootpartition": false,
254
- "disk": 1,
255
- "diskfree": 11.11,
256
- "diskfreepercent": 55.91,
257
- "disksize": 19.87,
258
- "filesystem": "NTFS",
259
- "firmware": "1.0 ",
260
- "model": "VMware Virtual disk SCSI Disk Device",
261
- "partition": 0,
262
- "partitions": 2,
263
- "partitionsize(gb)": 19.87,
264
- "serialnumber": "6000c29f51839bd4b3630805ae233c6a"
265
- },
266
- "L:": {
267
- "blocks": 41676800,
268
- "blocksize": 512,
269
- "bootpartition": false,
270
- "disk": 2,
271
- "diskfree": 19.78,
272
- "diskfreepercent": 99.51,
273
- "disksize": 19.87,
274
- "filesystem": "NTFS",
275
- "firmware": "1.0 ",
276
- "model": "VMware Virtual disk SCSI Disk Device",
277
- "partition": 0,
278
- "partitions": 2,
279
- "partitionsize(gb)": 19.87,
280
- "serialnumber": "6000c2977eef8fc14357c27eab5d58bd"
281
- }
282
- },
283
- "drive_letters": [
284
- "C:",
285
- "D:",
286
- "L:"
287
- ],
288
- "filesystems": "NTFS",
289
- "logvol": {
290
- "free": 20,
291
- "free_percent": 100,
292
- "is_present": true,
293
- "size": 20
294
- },
295
- "osvol": {
296
- "free": 17,
297
- "free_percent": 21,
298
- "size": 80,
299
- "systemdrive": "C:"
300
- }
301
- },
302
- "ha_win_domain": "hahosting.local",
303
- "ha_win_dotnet": "4.7",
304
- "ha_win_dotnet_versions": "4.7.02558, 4.0.0.0, 3.5.30729.5420, 3.0.6920.5011, 3.0.4506.5420, 3.0.30729.5420, 2.0.50727.5420",
305
- "ha_win_edition": "Standard",
306
- "ha_win_environment": "stage",
307
- "ha_win_feature_installed_count": "75",
308
- "ha_win_features": {
309
- "is_feature_enabled_AD-Certificate": false,
310
- "is_feature_enabled_AD-Domain-Services": false,
311
- "is_feature_enabled_AD-Federation-Services": false,
312
- "is_feature_enabled_ADCS-Cert-Authority": false,
313
- "is_feature_enabled_ADCS-Enroll-Web-Pol": false,
314
- "is_feature_enabled_ADCS-Enroll-Web-Svc": false,
315
- "is_feature_enabled_ADCS-Web-Enrollment": false,
316
- "is_feature_enabled_ADDS-Domain-Controller": false,
317
- "is_feature_enabled_ADDS-IDMU-Tools": false,
318
- "is_feature_enabled_ADDS-Identity-Mgmt": false,
319
- "is_feature_enabled_ADDS-NIS": false,
320
- "is_feature_enabled_ADDS-Password-Sync": false,
321
- "is_feature_enabled_ADFS-Claims": false,
322
- "is_feature_enabled_ADFS-Federation": false,
323
- "is_feature_enabled_ADFS-Proxy": false,
324
- "is_feature_enabled_ADFS-Web-Agents": false,
325
- "is_feature_enabled_ADFS-Windows-Token": false,
326
- "is_feature_enabled_ADLDS": false,
327
- "is_feature_enabled_ADRMS": false,
328
- "is_feature_enabled_ADRMS-Identity": false,
329
- "is_feature_enabled_ADRMS-Server": false,
330
- "is_feature_enabled_AS-Dist-Transaction": false,
331
- "is_feature_enabled_AS-Ent-Services": false,
332
- "is_feature_enabled_AS-HTTP-Activation": true,
333
- "is_feature_enabled_AS-Incoming-Trans": false,
334
- "is_feature_enabled_AS-MSMQ-Activation": false,
335
- "is_feature_enabled_AS-NET-Framework": true,
336
- "is_feature_enabled_AS-Named-Pipes": true,
337
- "is_feature_enabled_AS-Outgoing-Trans": false,
338
- "is_feature_enabled_AS-TCP-Activation": true,
339
- "is_feature_enabled_AS-TCP-Port-Sharing": false,
340
- "is_feature_enabled_AS-WAS-Support": true,
341
- "is_feature_enabled_AS-WS-Atomic": false,
342
- "is_feature_enabled_AS-Web-Support": true,
343
- "is_feature_enabled_Application-Server": true,
344
- "is_feature_enabled_BITS": false,
345
- "is_feature_enabled_BITS-Compact-Server": false,
346
- "is_feature_enabled_BITS-IIS-Ext": false,
347
- "is_feature_enabled_Backup": false,
348
- "is_feature_enabled_Backup-Features": false,
349
- "is_feature_enabled_Backup-Tools": false,
350
- "is_feature_enabled_Biometric-Framework": false,
351
- "is_feature_enabled_BitLocker": false,
352
- "is_feature_enabled_BranchCache": false,
353
- "is_feature_enabled_CMAK": false,
354
- "is_feature_enabled_DAMC": false,
355
- "is_feature_enabled_DHCP": false,
356
- "is_feature_enabled_DNS": false,
357
- "is_feature_enabled_Desktop-Experience": false,
358
- "is_feature_enabled_FS-BranchCache": false,
359
- "is_feature_enabled_FS-DFS": false,
360
- "is_feature_enabled_FS-DFS-Namespace": false,
361
- "is_feature_enabled_FS-DFS-Replication": false,
362
- "is_feature_enabled_FS-FileServer": true,
363
- "is_feature_enabled_FS-Indexing-Service": false,
364
- "is_feature_enabled_FS-NFS-Services": false,
365
- "is_feature_enabled_FS-Resource-Manager": false,
366
- "is_feature_enabled_FS-Search-Service": false,
367
- "is_feature_enabled_FS-Win2003-Services": false,
368
- "is_feature_enabled_Fax": false,
369
- "is_feature_enabled_File-Services": true,
370
- "is_feature_enabled_GPMC": false,
371
- "is_feature_enabled_Hyper-V": false,
372
- "is_feature_enabled_IH-Handwriting": false,
373
- "is_feature_enabled_IH-Ink-Support": false,
374
- "is_feature_enabled_ISNS": false,
375
- "is_feature_enabled_Ink-Handwriting": false,
376
- "is_feature_enabled_Internet-Print-Client": false,
377
- "is_feature_enabled_LPR-Port-Monitor": false,
378
- "is_feature_enabled_MSMQ": false,
379
- "is_feature_enabled_MSMQ-DCOM": false,
380
- "is_feature_enabled_MSMQ-Directory": false,
381
- "is_feature_enabled_MSMQ-HTTP-Support": false,
382
- "is_feature_enabled_MSMQ-Multicasting": false,
383
- "is_feature_enabled_MSMQ-Routing": false,
384
- "is_feature_enabled_MSMQ-Server": false,
385
- "is_feature_enabled_MSMQ-Services": false,
386
- "is_feature_enabled_MSMQ-Triggers": false,
387
- "is_feature_enabled_Migration": false,
388
- "is_feature_enabled_Multipath-IO": false,
389
- "is_feature_enabled_NET-Framework": true,
390
- "is_feature_enabled_NET-Framework-Core": true,
391
- "is_feature_enabled_NET-HTTP-Activation": true,
392
- "is_feature_enabled_NET-Non-HTTP-Activ": true,
393
- "is_feature_enabled_NET-Win-CFAC": true,
394
- "is_feature_enabled_NLB": false,
395
- "is_feature_enabled_NPAS": false,
396
- "is_feature_enabled_NPAS-Health": false,
397
- "is_feature_enabled_NPAS-Host-Cred": false,
398
- "is_feature_enabled_NPAS-Policy-Server": false,
399
- "is_feature_enabled_NPAS-RRAS": false,
400
- "is_feature_enabled_NPAS-RRAS-Services": false,
401
- "is_feature_enabled_NPAS-Routing": false,
402
- "is_feature_enabled_OOB-WSUS": false,
403
- "is_feature_enabled_PNRP": false,
404
- "is_feature_enabled_PowerShell-ISE": true,
405
- "is_feature_enabled_Print-Internet": false,
406
- "is_feature_enabled_Print-LPD-Service": false,
407
- "is_feature_enabled_Print-Scan-Server": false,
408
- "is_feature_enabled_Print-Server": false,
409
- "is_feature_enabled_Print-Services": false,
410
- "is_feature_enabled_RDC": false,
411
- "is_feature_enabled_RDS-Connection-Broker": false,
412
- "is_feature_enabled_RDS-Gateway": false,
413
- "is_feature_enabled_RDS-Licensing": false,
414
- "is_feature_enabled_RDS-RD-Server": false,
415
- "is_feature_enabled_RDS-RemoteFX": false,
416
- "is_feature_enabled_RDS-Virtualization": false,
417
- "is_feature_enabled_RDS-Virtualization-Core": false,
418
- "is_feature_enabled_RDS-Web-Access": false,
419
- "is_feature_enabled_RPC-over-HTTP-Proxy": false,
420
- "is_feature_enabled_RSAT": true,
421
- "is_feature_enabled_RSAT-AD-AdminCenter": false,
422
- "is_feature_enabled_RSAT-AD-PowerShell": true,
423
- "is_feature_enabled_RSAT-AD-Tools": true,
424
- "is_feature_enabled_RSAT-ADCS": false,
425
- "is_feature_enabled_RSAT-ADCS-Mgmt": false,
426
- "is_feature_enabled_RSAT-ADDS": false,
427
- "is_feature_enabled_RSAT-ADDS-Tools": false,
428
- "is_feature_enabled_RSAT-ADLDS": false,
429
- "is_feature_enabled_RSAT-BitLocker": false,
430
- "is_feature_enabled_RSAT-Bitlocker-DriveEnc": false,
431
- "is_feature_enabled_RSAT-Bitlocker-RecPwd": false,
432
- "is_feature_enabled_RSAT-Bits-Server": false,
433
- "is_feature_enabled_RSAT-Clustering": false,
434
- "is_feature_enabled_RSAT-DFS-Mgmt-Con": false,
435
- "is_feature_enabled_RSAT-DHCP": false,
436
- "is_feature_enabled_RSAT-DNS-Server": false,
437
- "is_feature_enabled_RSAT-FSRM-Mgmt": false,
438
- "is_feature_enabled_RSAT-Fax": false,
439
- "is_feature_enabled_RSAT-Feature-Tools": true,
440
- "is_feature_enabled_RSAT-File-Services": false,
441
- "is_feature_enabled_RSAT-Hyper-V": false,
442
- "is_feature_enabled_RSAT-NFS-Admin": false,
443
- "is_feature_enabled_RSAT-NLB": false,
444
- "is_feature_enabled_RSAT-NPAS": false,
445
- "is_feature_enabled_RSAT-Print-Services": false,
446
- "is_feature_enabled_RSAT-RDS": false,
447
- "is_feature_enabled_RSAT-RDS-Conn-Broker": false,
448
- "is_feature_enabled_RSAT-RDS-Gateway": false,
449
- "is_feature_enabled_RSAT-RDS-Licensing": false,
450
- "is_feature_enabled_RSAT-RDS-RemoteApp": false,
451
- "is_feature_enabled_RSAT-RMS": false,
452
- "is_feature_enabled_RSAT-Role-Tools": true,
453
- "is_feature_enabled_RSAT-SMTP": true,
454
- "is_feature_enabled_RSAT-SNIS": false,
455
- "is_feature_enabled_RSAT-WDS": false,
456
- "is_feature_enabled_RSAT-WINS": false,
457
- "is_feature_enabled_RSAT-Web-Server": true,
458
- "is_feature_enabled_Remote-Assistance": false,
459
- "is_feature_enabled_Remote-Desktop-Services": false,
460
- "is_feature_enabled_SMTP-Server": true,
461
- "is_feature_enabled_SNMP-Service": true,
462
- "is_feature_enabled_SNMP-Services": true,
463
- "is_feature_enabled_SNMP-WMI-Provider": true,
464
- "is_feature_enabled_Simple-TCPIP": false,
465
- "is_feature_enabled_Storage-Mgr-SANS": false,
466
- "is_feature_enabled_Subsystem-UNIX-Apps": false,
467
- "is_feature_enabled_TFTP-Client": false,
468
- "is_feature_enabled_TIFF-IFilter": false,
469
- "is_feature_enabled_Telnet-Client": true,
470
- "is_feature_enabled_Telnet-Server": false,
471
- "is_feature_enabled_WAS": true,
472
- "is_feature_enabled_WAS-Config-APIs": true,
473
- "is_feature_enabled_WAS-NET-Environment": true,
474
- "is_feature_enabled_WAS-Process-Model": true,
475
- "is_feature_enabled_WDS": false,
476
- "is_feature_enabled_WDS-Deployment": false,
477
- "is_feature_enabled_WDS-Transport": false,
478
- "is_feature_enabled_WINS-Server": false,
479
- "is_feature_enabled_WSRM": false,
480
- "is_feature_enabled_Web-ASP": true,
481
- "is_feature_enabled_Web-App-Dev": true,
482
- "is_feature_enabled_Web-Asp-Net": true,
483
- "is_feature_enabled_Web-Basic-Auth": true,
484
- "is_feature_enabled_Web-CGI": true,
485
- "is_feature_enabled_Web-Cert-Auth": true,
486
- "is_feature_enabled_Web-Client-Auth": true,
487
- "is_feature_enabled_Web-Common-Http": true,
488
- "is_feature_enabled_Web-Custom-Logging": true,
489
- "is_feature_enabled_Web-DAV-Publishing": false,
490
- "is_feature_enabled_Web-Default-Doc": true,
491
- "is_feature_enabled_Web-Digest-Auth": true,
492
- "is_feature_enabled_Web-Dir-Browsing": true,
493
- "is_feature_enabled_Web-Dyn-Compression": true,
494
- "is_feature_enabled_Web-Filtering": true,
495
- "is_feature_enabled_Web-Ftp-Ext": false,
496
- "is_feature_enabled_Web-Ftp-Server": false,
497
- "is_feature_enabled_Web-Ftp-Service": false,
498
- "is_feature_enabled_Web-Health": true,
499
- "is_feature_enabled_Web-Http-Errors": true,
500
- "is_feature_enabled_Web-Http-Logging": true,
501
- "is_feature_enabled_Web-Http-Redirect": true,
502
- "is_feature_enabled_Web-Http-Tracing": true,
503
- "is_feature_enabled_Web-IP-Security": true,
504
- "is_feature_enabled_Web-ISAPI-Ext": true,
505
- "is_feature_enabled_Web-ISAPI-Filter": true,
506
- "is_feature_enabled_Web-Includes": true,
507
- "is_feature_enabled_Web-Lgcy-Mgmt-Console": true,
508
- "is_feature_enabled_Web-Lgcy-Scripting": true,
509
- "is_feature_enabled_Web-Log-Libraries": true,
510
- "is_feature_enabled_Web-Metabase": true,
511
- "is_feature_enabled_Web-Mgmt-Compat": true,
512
- "is_feature_enabled_Web-Mgmt-Console": true,
513
- "is_feature_enabled_Web-Mgmt-Service": true,
514
- "is_feature_enabled_Web-Mgmt-Tools": true,
515
- "is_feature_enabled_Web-Net-Ext": true,
516
- "is_feature_enabled_Web-ODBC-Logging": true,
517
- "is_feature_enabled_Web-Performance": true,
518
- "is_feature_enabled_Web-Request-Monitor": true,
519
- "is_feature_enabled_Web-Scripting-Tools": true,
520
- "is_feature_enabled_Web-Security": true,
521
- "is_feature_enabled_Web-Server": true,
522
- "is_feature_enabled_Web-Stat-Compression": true,
523
- "is_feature_enabled_Web-Static-Content": true,
524
- "is_feature_enabled_Web-Url-Auth": true,
525
- "is_feature_enabled_Web-WHC": false,
526
- "is_feature_enabled_Web-WMI": true,
527
- "is_feature_enabled_Web-WebServer": true,
528
- "is_feature_enabled_Web-Windows-Auth": true,
529
- "is_feature_enabled_WinRM-IIS-Ext": false,
530
- "is_feature_enabled_Windows-Internal-DB": false,
531
- "is_feature_enabled_Wireless-Networking": false,
532
- "is_feature_enabled_XPS-Viewer": false,
533
- "is_feature_enabled_qWave": false
534
- },
535
- "ha_win_hostsfile": {
536
- "entries": [
537
- "ASSWWEB061 127.0.0.1 stage.pmscore.samplecoreservice",
538
- "ASSWWEB061 127.0.0.1 stg.hasplms.emaildaemonweb.homeaway.com",
539
- "ASSWWEB061 10.28.130.189 services.escapia.stg #Web Services"
540
- ],
541
- "entries_count": 3
542
- },
543
- "ha_win_iis": {
544
- "sites": "LMS.Api,LMS.Web.UI,Dragoman Mock End System Service,LMS.EmailDaemon.Web,RezGrid.Web.UI,RezGrid.Api,BusinessConsole.API,BusinessConsole.UI",
545
- "sites_started": "LMS.Api,LMS.Web.UI,Dragoman Mock End System Service,LMS.EmailDaemon.Web,RezGrid.Web.UI,RezGrid.Api,BusinessConsole.API,BusinessConsole.UI",
546
- "sites_stopped": "",
547
- "sites_total": 8,
548
- "version": "IIS 7.5"
549
- },
550
- "ha_win_license_status": "Licensed",
551
- "ha_win_ou": "LMS/Server Products - Stage",
552
- "ha_win_ou_root": "LMS",
553
- "ha_win_pendingreboot": "False",
554
- "ha_win_pigconx": {
555
- "ca_conx": true,
556
- "master_conx": true
557
- },
558
- "ha_win_processes": {
559
- "gte_24_hours": {
560
- "Idle_0": {
561
- "Id": 0,
562
- "Name": "Idle",
563
- "PagedMemorySize": 0,
564
- "PrivateMemorySize": 0,
565
- "StartTime": "",
566
- "ThreadCount": 1,
567
- "VirtualMemorySize": 0
568
- },
569
- "LogonUI_836": {
570
- "Id": 836,
571
- "Name": "LogonUI",
572
- "PagedMemorySize": 10588160,
573
- "Path": "C:\\Windows\\system32\\LogonUI.exe",
574
- "PrivateMemorySize": 10588160,
575
- "StartTime": "09/20/2018 09:59:50",
576
- "ThreadCount": 6,
577
- "VirtualMemorySize": 92385280
578
- },
579
- "MsDepSvc_1484": {
580
- "Id": 1484,
581
- "Name": "MsDepSvc",
582
- "PagedMemorySize": 18448384,
583
- "Path": "C:\\Program Files\\IIS\\Microsoft Web Deploy\\MsDepSvc.exe",
584
- "PrivateMemorySize": 18448384,
585
- "StartTime": "09/20/2018 09:59:55",
586
- "ThreadCount": 8,
587
- "VirtualMemorySize": 536252416
588
- },
589
- "NSClient++_1668": {
590
- "Id": 1668,
591
- "Name": "NSClient++",
592
- "PagedMemorySize": 35545088,
593
- "Path": "C:\\Program Files\\Opsview Agent\\NSClient++.exe",
594
- "PrivateMemorySize": 35545088,
595
- "StartTime": "09/20/2018 09:59:58",
596
- "ThreadCount": 11,
597
- "VirtualMemorySize": 116408320
598
- },
599
- "SMSvcHost_1604": {
600
- "Id": 1604,
601
- "Name": "SMSvcHost",
602
- "PagedMemorySize": 26353664,
603
- "Path": "C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\SMSvcHost.exe",
604
- "PrivateMemorySize": 26353664,
605
- "StartTime": "09/20/2018 09:59:58",
606
- "ThreadCount": 8,
607
- "VirtualMemorySize": 563757056
608
- },
609
- "System_4": {
610
- "Id": 4,
611
- "Name": "System",
612
- "PagedMemorySize": 126976,
613
- "PrivateMemorySize": 126976,
614
- "StartTime": "09/20/2018 09:59:43",
615
- "ThreadCount": 101,
616
- "VirtualMemorySize": 3420160
617
- },
618
- "Tentacle_17952": {
619
- "Id": 17952,
620
- "Name": "Tentacle",
621
- "PagedMemorySize": 55361536,
622
- "Path": "C:\\Program Files\\Octopus Deploy\\Tentacle\\Tentacle.exe",
623
- "PrivateMemorySize": 55361536,
624
- "StartTime": "11/26/2018 10:29:37",
625
- "ThreadCount": 11,
626
- "VirtualMemorySize": 629506048
627
- },
628
- "VGAuthService_2164": {
629
- "Id": 2164,
630
- "Name": "VGAuthService",
631
- "PagedMemorySize": 6086656,
632
- "Path": "C:\\Program Files\\VMware\\VMware Tools\\VMware VGAuth\\VGAuthService.exe",
633
- "PrivateMemorySize": 6086656,
634
- "StartTime": "09/20/2018 10:00:09",
635
- "ThreadCount": 4,
636
- "VirtualMemorySize": 66232320
637
- },
638
- "WMSvc_2608": {
639
- "Id": 2608,
640
- "Name": "WMSvc",
641
- "PagedMemorySize": 27029504,
642
- "Path": "C:\\Windows\\system32\\inetsrv\\wmsvc.exe",
643
- "PrivateMemorySize": 27029504,
644
- "StartTime": "09/20/2018 10:00:14",
645
- "ThreadCount": 17,
646
- "VirtualMemorySize": 543043584
647
- },
648
- "WmiPrvSE_2312": {
649
- "Id": 2312,
650
- "Name": "WmiPrvSE",
651
- "PagedMemorySize": 19501056,
652
- "Path": "C:\\Windows\\system32\\wbem\\wmiprvse.exe",
653
- "PrivateMemorySize": 19501056,
654
- "StartTime": "09/20/2018 10:00:19",
655
- "ThreadCount": 20,
656
- "VirtualMemorySize": 102809600
657
- },
658
- "WmiPrvSE_29864": {
659
- "Id": 29864,
660
- "Name": "WmiPrvSE",
661
- "PagedMemorySize": 52879360,
662
- "Path": "C:\\Windows\\system32\\wbem\\wmiprvse.exe",
663
- "PrivateMemorySize": 52879360,
664
- "StartTime": "02/11/2019 19:01:28",
665
- "ThreadCount": 17,
666
- "VirtualMemorySize": 168280064
667
- },
668
- "ccSvcHst_25368": {
669
- "Id": 25368,
670
- "Name": "ccSvcHst",
671
- "PagedMemorySize": 287449088,
672
- "Path": "C:\\Program Files (x86)\\Symantec\\Symantec Endpoint Protection\\14.0.2415.0200.105\\Bin\\ccSvcHst.exe",
673
- "PrivateMemorySize": 287449088,
674
- "StartTime": "01/15/2019 11:24:50",
675
- "ThreadCount": 95,
676
- "VirtualMemorySize": 772861952
677
- },
678
- "conhost_28912": {
679
- "Id": 28912,
680
- "Name": "conhost",
681
- "PagedMemorySize": 1277952,
682
- "Path": "C:\\Windows\\system32\\conhost.exe",
683
- "PrivateMemorySize": 1277952,
684
- "StartTime": "01/29/2019 14:47:03",
685
- "ThreadCount": 2,
686
- "VirtualMemorySize": 27107328
687
- },
688
- "csrss_376": {
689
- "Id": 376,
690
- "Name": "csrss",
691
- "PagedMemorySize": 2646016,
692
- "Path": "C:\\Windows\\system32\\csrss.exe",
693
- "PrivateMemorySize": 2646016,
694
- "StartTime": "09/20/2018 09:59:46",
695
- "ThreadCount": 10,
696
- "VirtualMemorySize": 54059008
697
- },
698
- "csrss_444": {
699
- "Id": 444,
700
- "Name": "csrss",
701
- "PagedMemorySize": 11358208,
702
- "Path": "C:\\Windows\\system32\\csrss.exe",
703
- "PrivateMemorySize": 11358208,
704
- "StartTime": "09/20/2018 09:59:47",
705
- "ThreadCount": 9,
706
- "VirtualMemorySize": 52793344
707
- },
708
- "dllhost_3448": {
709
- "Id": 3448,
710
- "Name": "dllhost",
711
- "PagedMemorySize": 4579328,
712
- "Path": "C:\\Windows\\system32\\dllhost.exe",
713
- "PrivateMemorySize": 4579328,
714
- "StartTime": "09/20/2018 10:00:36",
715
- "ThreadCount": 14,
716
- "VirtualMemorySize": 59584512
717
- },
718
- "inetinfo_1260": {
719
- "Id": 1260,
720
- "Name": "inetinfo",
721
- "PagedMemorySize": 6340608,
722
- "Path": "C:\\Windows\\system32\\inetsrv\\inetinfo.exe",
723
- "PrivateMemorySize": 6340608,
724
- "StartTime": "09/20/2018 09:59:54",
725
- "ThreadCount": 6,
726
- "VirtualMemorySize": 71647232
727
- },
728
- "lsass_568": {
729
- "Id": 568,
730
- "Name": "lsass",
731
- "PagedMemorySize": 18034688,
732
- "Path": "C:\\Windows\\system32\\lsass.exe",
733
- "PrivateMemorySize": 18034688,
734
- "StartTime": "09/20/2018 09:59:48",
735
- "ThreadCount": 10,
736
- "VirtualMemorySize": 70320128
737
- },
738
- "lsm_576": {
739
- "Id": 576,
740
- "Name": "lsm",
741
- "PagedMemorySize": 3719168,
742
- "Path": "C:\\Windows\\system32\\lsm.exe",
743
- "PrivateMemorySize": 3719168,
744
- "StartTime": "09/20/2018 09:59:48",
745
- "ThreadCount": 11,
746
- "VirtualMemorySize": 35889152
747
- },
748
- "mongod_1316": {
749
- "Id": 1316,
750
- "Name": "mongod",
751
- "PagedMemorySize": 74674176,
752
- "Path": "C:\\MongoDB\\bin\\mongod.exe",
753
- "PrivateMemorySize": 74674176,
754
- "StartTime": "09/20/2018 09:59:54",
755
- "ThreadCount": 15,
756
- "VirtualMemorySize": 1282486272
757
- },
758
- "msdtc_3652": {
759
- "Id": 3652,
760
- "Name": "msdtc",
761
- "PagedMemorySize": 3452928,
762
- "Path": "C:\\Windows\\System32\\msdtc.exe",
763
- "PrivateMemorySize": 3452928,
764
- "StartTime": "09/20/2018 10:00:38",
765
- "ThreadCount": 13,
766
- "VirtualMemorySize": 62259200
767
- },
768
- "newrelic-infra_6932": {
769
- "Id": 6932,
770
- "Name": "newrelic-infra",
771
- "PagedMemorySize": 127569920,
772
- "Path": "C:\\Program Files\\New Relic\\newrelic-infra\\newrelic-infra.exe",
773
- "PrivateMemorySize": 127569920,
774
- "StartTime": "10/05/2018 17:37:12",
775
- "ThreadCount": 19,
776
- "VirtualMemorySize": 1207308288
777
- },
778
- "ruby_27876": {
779
- "Id": 27876,
780
- "Name": "ruby",
781
- "PagedMemorySize": 18145280,
782
- "Path": "C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin\\ruby.exe",
783
- "PrivateMemorySize": 18145280,
784
- "StartTime": "01/24/2019 17:49:03",
785
- "ThreadCount": 12,
786
- "VirtualMemorySize": 97591296
787
- },
788
- "services_556": {
789
- "Id": 556,
790
- "Name": "services",
791
- "PagedMemorySize": 8138752,
792
- "Path": "C:\\Windows\\system32\\services.exe",
793
- "PrivateMemorySize": 8138752,
794
- "StartTime": "09/20/2018 09:59:48",
795
- "ThreadCount": 8,
796
- "VirtualMemorySize": 58716160
797
- },
798
- "smss_252": {
799
- "Id": 252,
800
- "Name": "smss",
801
- "PagedMemorySize": 389120,
802
- "Path": "C:\\Windows\\system32\\smss.exe",
803
- "PrivateMemorySize": 389120,
804
- "StartTime": "09/20/2018 09:59:43",
805
- "ThreadCount": 2,
806
- "VirtualMemorySize": 4079616
807
- },
808
- "snmp_952": {
809
- "Id": 952,
810
- "Name": "snmp",
811
- "PagedMemorySize": 4927488,
812
- "Path": "C:\\Windows\\System32\\snmp.exe",
813
- "PrivateMemorySize": 4927488,
814
- "StartTime": "09/20/2018 10:00:07",
815
- "ThreadCount": 8,
816
- "VirtualMemorySize": 44720128
817
- },
818
- "splunkd_29992": {
819
- "Id": 29992,
820
- "Name": "splunkd",
821
- "PagedMemorySize": 143728640,
822
- "Path": "C:\\Program Files\\SplunkUniversalForwarder\\bin\\splunkd.exe",
823
- "PrivateMemorySize": 143728640,
824
- "StartTime": "01/29/2019 14:47:02",
825
- "ThreadCount": 46,
826
- "VirtualMemorySize": 238243840
827
- },
828
- "spoolsv_1164": {
829
- "Id": 1164,
830
- "Name": "spoolsv",
831
- "PagedMemorySize": 6987776,
832
- "Path": "C:\\Windows\\System32\\spoolsv.exe",
833
- "PrivateMemorySize": 6987776,
834
- "StartTime": "09/20/2018 09:59:54",
835
- "ThreadCount": 14,
836
- "VirtualMemorySize": 86929408
837
- },
838
- "svchost_1012": {
839
- "Id": 1012,
840
- "Name": "svchost",
841
- "PagedMemorySize": 5365760,
842
- "Path": "C:\\Windows\\System32\\svchost.exe",
843
- "PrivateMemorySize": 5365760,
844
- "StartTime": "09/20/2018 09:59:50",
845
- "ThreadCount": 9,
846
- "VirtualMemorySize": 75722752
847
- },
848
- "svchost_1204": {
849
- "Id": 1204,
850
- "Name": "svchost",
851
- "PagedMemorySize": 5509120,
852
- "Path": "C:\\Windows\\system32\\svchost.exe",
853
- "PrivateMemorySize": 5509120,
854
- "StartTime": "09/20/2018 09:59:54",
855
- "ThreadCount": 8,
856
- "VirtualMemorySize": 57712640
857
- },
858
- "svchost_1232": {
859
- "Id": 1232,
860
- "Name": "svchost",
861
- "PagedMemorySize": 4268032,
862
- "Path": "C:\\Windows\\System32\\svchost.exe",
863
- "PrivateMemorySize": 4268032,
864
- "StartTime": "09/20/2018 09:59:54",
865
- "ThreadCount": 11,
866
- "VirtualMemorySize": 69435392
867
- },
868
- "svchost_1572": {
869
- "Id": 1572,
870
- "Name": "svchost",
871
- "PagedMemorySize": 1515520,
872
- "Path": "C:\\Windows\\System32\\svchost.exe",
873
- "PrivateMemorySize": 1515520,
874
- "StartTime": "09/20/2018 09:59:58",
875
- "ThreadCount": 5,
876
- "VirtualMemorySize": 23965696
877
- },
878
- "svchost_1876": {
879
- "Id": 1876,
880
- "Name": "svchost",
881
- "PagedMemorySize": 1478656,
882
- "Path": "C:\\Windows\\System32\\svchost.exe",
883
- "PrivateMemorySize": 1478656,
884
- "StartTime": "09/20/2018 10:00:03",
885
- "ThreadCount": 5,
886
- "VirtualMemorySize": 23986176
887
- },
888
- "svchost_2000": {
889
- "Id": 2000,
890
- "Name": "svchost",
891
- "PagedMemorySize": 1323008,
892
- "Path": "C:\\Windows\\system32\\svchost.exe",
893
- "PrivateMemorySize": 1323008,
894
- "StartTime": "09/20/2018 10:00:06",
895
- "ThreadCount": 4,
896
- "VirtualMemorySize": 15278080
897
- },
898
- "svchost_2332": {
899
- "Id": 2332,
900
- "Name": "svchost",
901
- "PagedMemorySize": 2019328,
902
- "Path": "C:\\Windows\\system32\\svchost.exe",
903
- "PrivateMemorySize": 2019328,
904
- "StartTime": "09/20/2018 10:00:29",
905
- "ThreadCount": 6,
906
- "VirtualMemorySize": 35221504
907
- },
908
- "svchost_2564": {
909
- "Id": 2564,
910
- "Name": "svchost",
911
- "PagedMemorySize": 8990720,
912
- "Path": "C:\\Windows\\system32\\svchost.exe",
913
- "PrivateMemorySize": 8990720,
914
- "StartTime": "09/20/2018 10:00:13",
915
- "ThreadCount": 16,
916
- "VirtualMemorySize": 63942656
917
- },
918
- "svchost_3044": {
919
- "Id": 3044,
920
- "Name": "svchost",
921
- "PagedMemorySize": 3866624,
922
- "Path": "C:\\Windows\\System32\\svchost.exe",
923
- "PrivateMemorySize": 3866624,
924
- "StartTime": "09/20/2018 10:00:28",
925
- "ThreadCount": 10,
926
- "VirtualMemorySize": 43483136
927
- },
928
- "svchost_320": {
929
- "Id": 320,
930
- "Name": "svchost",
931
- "PagedMemorySize": 25432064,
932
- "Path": "C:\\Windows\\system32\\svchost.exe",
933
- "PrivateMemorySize": 25432064,
934
- "StartTime": "09/20/2018 09:59:51",
935
- "ThreadCount": 18,
936
- "VirtualMemorySize": 181071872
937
- },
938
- "svchost_676": {
939
- "Id": 676,
940
- "Name": "svchost",
941
- "PagedMemorySize": 4898816,
942
- "Path": "C:\\Windows\\system32\\svchost.exe",
943
- "PrivateMemorySize": 4898816,
944
- "StartTime": "09/20/2018 09:59:49",
945
- "ThreadCount": 11,
946
- "VirtualMemorySize": 52383744
947
- },
948
- "svchost_756": {
949
- "Id": 756,
950
- "Name": "svchost",
951
- "PagedMemorySize": 5087232,
952
- "Path": "C:\\Windows\\system32\\svchost.exe",
953
- "PrivateMemorySize": 5087232,
954
- "StartTime": "09/20/2018 09:59:50",
955
- "ThreadCount": 8,
956
- "VirtualMemorySize": 43405312
957
- },
958
- "svchost_844": {
959
- "Id": 844,
960
- "Name": "svchost",
961
- "PagedMemorySize": 23035904,
962
- "Path": "C:\\Windows\\System32\\svchost.exe",
963
- "PrivateMemorySize": 23035904,
964
- "StartTime": "09/20/2018 09:59:50",
965
- "ThreadCount": 13,
966
- "VirtualMemorySize": 97062912
967
- },
968
- "svchost_904": {
969
- "Id": 904,
970
- "Name": "svchost",
971
- "PagedMemorySize": 412434432,
972
- "Path": "C:\\Windows\\system32\\svchost.exe",
973
- "PrivateMemorySize": 412434432,
974
- "StartTime": "09/20/2018 09:59:50",
975
- "ThreadCount": 65,
976
- "VirtualMemorySize": 918466560
977
- },
978
- "svchost_960": {
979
- "Id": 960,
980
- "Name": "svchost",
981
- "PagedMemorySize": 9007104,
982
- "Path": "C:\\Windows\\system32\\svchost.exe",
983
- "PrivateMemorySize": 9007104,
984
- "StartTime": "09/20/2018 09:59:50",
985
- "ThreadCount": 13,
986
- "VirtualMemorySize": 78462976
987
- },
988
- "svchost_988": {
989
- "Id": 988,
990
- "Name": "svchost",
991
- "PagedMemorySize": 9809920,
992
- "Path": "C:\\Windows\\system32\\svchost.exe",
993
- "PrivateMemorySize": 9809920,
994
- "StartTime": "09/20/2018 09:59:53",
995
- "ThreadCount": 17,
996
- "VirtualMemorySize": 57094144
997
- },
998
- "unsecapp_3972": {
999
- "Id": 3972,
1000
- "Name": "unsecapp",
1001
- "PagedMemorySize": 1527808,
1002
- "Path": "C:\\Windows\\system32\\wbem\\unsecapp.exe",
1003
- "PrivateMemorySize": 1527808,
1004
- "StartTime": "09/20/2018 10:00:41",
1005
- "ThreadCount": 3,
1006
- "VirtualMemorySize": 29749248
1007
- },
1008
- "vmtoolsd_2420": {
1009
- "Id": 2420,
1010
- "Name": "vmtoolsd",
1011
- "PagedMemorySize": 145694720,
1012
- "Path": "C:\\Program Files\\VMware\\VMware Tools\\vmtoolsd.exe",
1013
- "PrivateMemorySize": 145694720,
1014
- "StartTime": "09/20/2018 10:00:12",
1015
- "ThreadCount": 8,
1016
- "VirtualMemorySize": 237400064
1017
- },
1018
- "wininit_432": {
1019
- "Id": 432,
1020
- "Name": "wininit",
1021
- "PagedMemorySize": 1343488,
1022
- "Path": "C:\\Windows\\system32\\wininit.exe",
1023
- "PrivateMemorySize": 1343488,
1024
- "StartTime": "09/20/2018 09:59:47",
1025
- "ThreadCount": 3,
1026
- "VirtualMemorySize": 45408256
1027
- },
1028
- "winlogon_480": {
1029
- "Id": 480,
1030
- "Name": "winlogon",
1031
- "PagedMemorySize": 1576960,
1032
- "Path": "C:\\Windows\\system32\\winlogon.exe",
1033
- "PrivateMemorySize": 1576960,
1034
- "StartTime": "09/20/2018 09:59:47",
1035
- "ThreadCount": 3,
1036
- "VirtualMemorySize": 27299840
1037
- }
1038
- },
1039
- "lt_24_hours": {
1040
- "TrustedInstaller_35580": {
1041
- "Id": 35580,
1042
- "Name": "TrustedInstaller",
1043
- "PagedMemorySize": 2269184,
1044
- "Path": "C:\\Windows\\servicing\\TrustedInstaller.exe",
1045
- "PrivateMemorySize": 2269184,
1046
- "StartTime": "02/18/2019 11:29:00",
1047
- "ThreadCount": 5,
1048
- "VirtualMemorySize": 59842560
1049
- },
1050
- "WmiApSrv_35600": {
1051
- "Id": 35600,
1052
- "Name": "WmiApSrv",
1053
- "PagedMemorySize": 2289664,
1054
- "Path": "C:\\Windows\\system32\\wbem\\WmiApSrv.exe",
1055
- "PrivateMemorySize": 2289664,
1056
- "StartTime": "02/18/2019 11:38:53",
1057
- "ThreadCount": 7,
1058
- "VirtualMemorySize": 38907904
1059
- },
1060
- "WmiPrvSE_35332": {
1061
- "Id": 35332,
1062
- "Name": "WmiPrvSE",
1063
- "PagedMemorySize": 27746304,
1064
- "Path": "C:\\Windows\\system32\\wbem\\wmiprvse.exe",
1065
- "PrivateMemorySize": 27746304,
1066
- "StartTime": "02/18/2019 10:29:47",
1067
- "ThreadCount": 8,
1068
- "VirtualMemorySize": 67604480
1069
- },
1070
- "ccSvcHst_31868": {
1071
- "Id": 31868,
1072
- "Name": "ccSvcHst",
1073
- "PagedMemorySize": 5869568,
1074
- "Path": "C:\\Program Files (x86)\\Symantec\\Symantec Endpoint Protection\\14.0.2415.0200.105\\Bin\\ccSvcHst.exe",
1075
- "PrivateMemorySize": 5869568,
1076
- "StartTime": "02/18/2019 11:28:13",
1077
- "ThreadCount": 21,
1078
- "VirtualMemorySize": 114077696
1079
- },
1080
- "cmd_28236": {
1081
- "Id": 28236,
1082
- "Name": "cmd",
1083
- "PagedMemorySize": 2297856,
1084
- "Path": "C:\\Windows\\system32\\cmd.exe",
1085
- "PrivateMemorySize": 2297856,
1086
- "StartTime": "02/18/2019 11:39:43",
1087
- "ThreadCount": 1,
1088
- "VirtualMemorySize": 44765184
1089
- },
1090
- "conhost_33936": {
1091
- "Id": 33936,
1092
- "Name": "conhost",
1093
- "PagedMemorySize": 2170880,
1094
- "Path": "C:\\Windows\\system32\\conhost.exe",
1095
- "PrivateMemorySize": 2170880,
1096
- "StartTime": "02/18/2019 11:28:21",
1097
- "ThreadCount": 2,
1098
- "VirtualMemorySize": 49582080
1099
- },
1100
- "conhost_35508": {
1101
- "Id": 35508,
1102
- "Name": "conhost",
1103
- "PagedMemorySize": 1236992,
1104
- "Path": "C:\\Windows\\system32\\conhost.exe",
1105
- "PrivateMemorySize": 1236992,
1106
- "StartTime": "02/18/2019 11:39:59",
1107
- "ThreadCount": 1,
1108
- "VirtualMemorySize": 46993408
1109
- },
1110
- "csrss_29076": {
1111
- "Id": 29076,
1112
- "Name": "csrss",
1113
- "PagedMemorySize": 1847296,
1114
- "Path": "C:\\Windows\\system32\\csrss.exe",
1115
- "PrivateMemorySize": 1847296,
1116
- "StartTime": "02/18/2019 11:28:04",
1117
- "ThreadCount": 8,
1118
- "VirtualMemorySize": 49971200
1119
- },
1120
- "dwm_34164": {
1121
- "Id": 34164,
1122
- "Name": "dwm",
1123
- "PagedMemorySize": 1572864,
1124
- "Path": "C:\\Windows\\system32\\Dwm.exe",
1125
- "PrivateMemorySize": 1572864,
1126
- "StartTime": "02/18/2019 11:28:13",
1127
- "ThreadCount": 3,
1128
- "VirtualMemorySize": 53768192
1129
- },
1130
- "explorer_35304": {
1131
- "Id": 35304,
1132
- "Name": "explorer",
1133
- "PagedMemorySize": 17055744,
1134
- "Path": "C:\\Windows\\Explorer.EXE",
1135
- "PrivateMemorySize": 17055744,
1136
- "StartTime": "02/18/2019 11:28:13",
1137
- "ThreadCount": 21,
1138
- "VirtualMemorySize": 191811584
1139
- },
1140
- "facter_32428": {
1141
- "Id": 32428,
1142
- "Name": "facter",
1143
- "PagedMemorySize": 54927360,
1144
- "Path": "C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin\\facter.exe",
1145
- "PrivateMemorySize": 54927360,
1146
- "StartTime": "02/18/2019 11:39:43",
1147
- "ThreadCount": 8,
1148
- "VirtualMemorySize": 161890304
1149
- },
1150
- "powershell_34040": {
1151
- "Id": 34040,
1152
- "Name": "powershell",
1153
- "PagedMemorySize": 59097088,
1154
- "Path": "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe",
1155
- "PrivateMemorySize": 59097088,
1156
- "StartTime": "02/18/2019 11:39:59",
1157
- "ThreadCount": 16,
1158
- "VirtualMemorySize": 646168576
1159
- },
1160
- "powershell_35316": {
1161
- "Id": 35316,
1162
- "Name": "powershell",
1163
- "PagedMemorySize": 177467392,
1164
- "Path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
1165
- "PrivateMemorySize": 177467392,
1166
- "StartTime": "02/18/2019 11:28:21",
1167
- "ThreadCount": 17,
1168
- "VirtualMemorySize": 720519168
1169
- },
1170
- "rdpclip_34880": {
1171
- "Id": 34880,
1172
- "Name": "rdpclip",
1173
- "PagedMemorySize": 1957888,
1174
- "Path": "C:\\Windows\\System32\\rdpclip.exe",
1175
- "PrivateMemorySize": 1957888,
1176
- "StartTime": "02/18/2019 11:28:13",
1177
- "ThreadCount": 7,
1178
- "VirtualMemorySize": 63619072
1179
- },
1180
- "sppsvc_35496": {
1181
- "Id": 35496,
1182
- "Name": "sppsvc",
1183
- "PagedMemorySize": 3452928,
1184
- "Path": "C:\\Windows\\system32\\sppsvc.exe",
1185
- "PrivateMemorySize": 3452928,
1186
- "StartTime": "02/18/2019 11:38:42",
1187
- "ThreadCount": 5,
1188
- "VirtualMemorySize": 43823104
1189
- },
1190
- "taskhost_34384": {
1191
- "Id": 34384,
1192
- "Name": "taskhost",
1193
- "PagedMemorySize": 5857280,
1194
- "Path": "C:\\Windows\\system32\\taskhost.exe",
1195
- "PrivateMemorySize": 5857280,
1196
- "StartTime": "02/18/2019 11:28:12",
1197
- "ThreadCount": 6,
1198
- "VirtualMemorySize": 95739904
1199
- },
1200
- "vmtoolsd_32056": {
1201
- "Id": 32056,
1202
- "Name": "vmtoolsd",
1203
- "PagedMemorySize": 4378624,
1204
- "Path": "C:\\Program Files\\VMware\\VMware Tools\\vmtoolsd.exe",
1205
- "PrivateMemorySize": 4378624,
1206
- "StartTime": "02/18/2019 11:28:14",
1207
- "ThreadCount": 3,
1208
- "VirtualMemorySize": 86827008
1209
- },
1210
- "w3wp_28120": {
1211
- "Id": 28120,
1212
- "Name": "w3wp",
1213
- "PagedMemorySize": 156917760,
1214
- "Path": "c:\\windows\\system32\\inetsrv\\w3wp.exe",
1215
- "PrivateMemorySize": 156917760,
1216
- "StartTime": "02/18/2019 10:11:46",
1217
- "ThreadCount": 34,
1218
- "VirtualMemorySize": 699330560
1219
- },
1220
- "w3wp_29960": {
1221
- "Id": 29960,
1222
- "Name": "w3wp",
1223
- "PagedMemorySize": 201695232,
1224
- "Path": "c:\\windows\\system32\\inetsrv\\w3wp.exe",
1225
- "PrivateMemorySize": 201695232,
1226
- "StartTime": "02/18/2019 10:11:12",
1227
- "ThreadCount": 46,
1228
- "VirtualMemorySize": 773173248
1229
- },
1230
- "winlogon_35808": {
1231
- "Id": 35808,
1232
- "Name": "winlogon",
1233
- "PagedMemorySize": 1658880,
1234
- "Path": "C:\\Windows\\system32\\winlogon.exe",
1235
- "PrivateMemorySize": 1658880,
1236
- "StartTime": "02/18/2019 11:28:04",
1237
- "ThreadCount": 3,
1238
- "VirtualMemorySize": 28553216
1239
- },
1240
- "wuauclt_35576": {
1241
- "Id": 35576,
1242
- "Name": "wuauclt",
1243
- "PagedMemorySize": 1884160,
1244
- "Path": "C:\\Windows\\system32\\wuauclt.exe",
1245
- "PrivateMemorySize": 1884160,
1246
- "StartTime": "02/18/2019 11:28:19",
1247
- "ThreadCount": 3,
1248
- "VirtualMemorySize": 77897728
1249
- }
1250
- }
1251
- },
1252
- "ha_win_ps_version": "5.1.14409.1012",
1253
- "ha_win_reboot_reason": "None",
1254
- "ha_win_service_count": "145",
1255
- "ha_win_serviceaccount_hahosting": [],
1256
- "ha_win_serviceaccount_homeaway": [],
1257
- "ha_win_serviceaccount_wvrgroup": [],
1258
- "ha_win_services": {
1259
- "ALG": {
1260
- "Name": "ALG",
1261
- "ProcessID": 0,
1262
- "StartMode": "Manual",
1263
- "StartName": "NT AUTHORITY\\LocalService",
1264
- "State": "Stopped"
1265
- },
1266
- "AeLookupSvc": {
1267
- "Name": "AeLookupSvc",
1268
- "ProcessID": 0,
1269
- "StartMode": "Manual",
1270
- "StartName": "localSystem",
1271
- "State": "Stopped"
1272
- },
1273
- "AppHostSvc": {
1274
- "Name": "AppHostSvc",
1275
- "ProcessID": 1204,
1276
- "StartMode": "Auto",
1277
- "StartName": "LocalSystem",
1278
- "State": "Running"
1279
- },
1280
- "AppIDSvc": {
1281
- "Name": "AppIDSvc",
1282
- "ProcessID": 0,
1283
- "StartMode": "Manual",
1284
- "StartName": "NT Authority\\LocalService",
1285
- "State": "Stopped"
1286
- },
1287
- "AppMgmt": {
1288
- "Name": "AppMgmt",
1289
- "ProcessID": 0,
1290
- "StartMode": "Manual",
1291
- "StartName": "LocalSystem",
1292
- "State": "Stopped"
1293
- },
1294
- "Appinfo": {
1295
- "Name": "Appinfo",
1296
- "ProcessID": 0,
1297
- "StartMode": "Manual",
1298
- "StartName": "LocalSystem",
1299
- "State": "Stopped"
1300
- },
1301
- "AudioEndpointBuilder": {
1302
- "Name": "AudioEndpointBuilder",
1303
- "ProcessID": 0,
1304
- "StartMode": "Manual",
1305
- "StartName": "LocalSystem",
1306
- "State": "Stopped"
1307
- },
1308
- "AudioSrv": {
1309
- "Name": "AudioSrv",
1310
- "ProcessID": 0,
1311
- "StartMode": "Manual",
1312
- "StartName": "NT AUTHORITY\\LocalService",
1313
- "State": "Stopped"
1314
- },
1315
- "BFE": {
1316
- "Name": "BFE",
1317
- "ProcessID": 988,
1318
- "StartMode": "Auto",
1319
- "StartName": "NT AUTHORITY\\LocalService",
1320
- "State": "Running"
1321
- },
1322
- "BITS": {
1323
- "Name": "BITS",
1324
- "ProcessID": 904,
1325
- "StartMode": "Manual",
1326
- "StartName": "LocalSystem",
1327
- "State": "Running"
1328
- },
1329
- "Browser": {
1330
- "Name": "Browser",
1331
- "ProcessID": 0,
1332
- "StartMode": "Disabled",
1333
- "StartName": "LocalSystem",
1334
- "State": "Stopped"
1335
- },
1336
- "COMSysApp": {
1337
- "Name": "COMSysApp",
1338
- "ProcessID": 3448,
1339
- "StartMode": "Manual",
1340
- "StartName": "LocalSystem",
1341
- "State": "Running"
1342
- },
1343
- "CertPropSvc": {
1344
- "Name": "CertPropSvc",
1345
- "ProcessID": 904,
1346
- "StartMode": "Manual",
1347
- "StartName": "LocalSystem",
1348
- "State": "Running"
1349
- },
1350
- "CryptSvc": {
1351
- "Name": "CryptSvc",
1352
- "ProcessID": 320,
1353
- "StartMode": "Auto",
1354
- "StartName": "NT Authority\\NetworkService",
1355
- "State": "Running"
1356
- },
1357
- "DPS": {
1358
- "Name": "DPS",
1359
- "ProcessID": 988,
1360
- "StartMode": "Auto",
1361
- "StartName": "NT AUTHORITY\\LocalService",
1362
- "State": "Running"
1363
- },
1364
- "DcomLaunch": {
1365
- "Name": "DcomLaunch",
1366
- "ProcessID": 676,
1367
- "StartMode": "Auto",
1368
- "StartName": "LocalSystem",
1369
- "State": "Running"
1370
- },
1371
- "Dhcp": {
1372
- "Name": "Dhcp",
1373
- "ProcessID": 844,
1374
- "StartMode": "Auto",
1375
- "StartName": "NT Authority\\LocalService",
1376
- "State": "Running"
1377
- },
1378
- "DiagTrack": {
1379
- "Name": "DiagTrack",
1380
- "ProcessID": 1232,
1381
- "StartMode": "Auto",
1382
- "StartName": "LocalSystem",
1383
- "State": "Running"
1384
- },
1385
- "Dnscache": {
1386
- "Name": "Dnscache",
1387
- "ProcessID": 320,
1388
- "StartMode": "Auto",
1389
- "StartName": "NT AUTHORITY\\NetworkService",
1390
- "State": "Running"
1391
- },
1392
- "EFS": {
1393
- "Name": "EFS",
1394
- "ProcessID": 0,
1395
- "StartMode": "Manual",
1396
- "StartName": "LocalSystem",
1397
- "State": "Stopped"
1398
- },
1399
- "EapHost": {
1400
- "Name": "EapHost",
1401
- "ProcessID": 0,
1402
- "StartMode": "Manual",
1403
- "StartName": "localSystem",
1404
- "State": "Stopped"
1405
- },
1406
- "EventSystem": {
1407
- "Name": "EventSystem",
1408
- "ProcessID": 960,
1409
- "StartMode": "Auto",
1410
- "StartName": "NT AUTHORITY\\LocalService",
1411
- "State": "Running"
1412
- },
1413
- "FCRegSvc": {
1414
- "Name": "FCRegSvc",
1415
- "ProcessID": 0,
1416
- "StartMode": "Manual",
1417
- "StartName": "NT AUTHORITY\\LocalService",
1418
- "State": "Stopped"
1419
- },
1420
- "FDResPub": {
1421
- "Name": "FDResPub",
1422
- "ProcessID": 0,
1423
- "StartMode": "Manual",
1424
- "StartName": "NT AUTHORITY\\LocalService",
1425
- "State": "Stopped"
1426
- },
1427
- "FontCache": {
1428
- "Name": "FontCache",
1429
- "ProcessID": 960,
1430
- "StartMode": "Auto",
1431
- "StartName": "NT AUTHORITY\\LocalService",
1432
- "State": "Running"
1433
- },
1434
- "FontCache3.0.0.0": {
1435
- "Name": "FontCache3.0.0.0",
1436
- "ProcessID": 0,
1437
- "StartMode": "Manual",
1438
- "StartName": "NT Authority\\LocalService",
1439
- "State": "Stopped"
1440
- },
1441
- "IISADMIN": {
1442
- "Name": "IISADMIN",
1443
- "ProcessID": 1260,
1444
- "StartMode": "Auto",
1445
- "StartName": "LocalSystem",
1446
- "State": "Running"
1447
- },
1448
- "IKEEXT": {
1449
- "Name": "IKEEXT",
1450
- "ProcessID": 904,
1451
- "StartMode": "Auto",
1452
- "StartName": "LocalSystem",
1453
- "State": "Running"
1454
- },
1455
- "IPBusEnum": {
1456
- "Name": "IPBusEnum",
1457
- "ProcessID": 0,
1458
- "StartMode": "Disabled",
1459
- "StartName": "LocalSystem",
1460
- "State": "Stopped"
1461
- },
1462
- "KeyIso": {
1463
- "Name": "KeyIso",
1464
- "ProcessID": 568,
1465
- "StartMode": "Manual",
1466
- "StartName": "LocalSystem",
1467
- "State": "Running"
1468
- },
1469
- "KtmRm": {
1470
- "Name": "KtmRm",
1471
- "ProcessID": 0,
1472
- "StartMode": "Manual",
1473
- "StartName": "NT AUTHORITY\\NetworkService",
1474
- "State": "Stopped"
1475
- },
1476
- "LanmanServer": {
1477
- "Name": "LanmanServer",
1478
- "ProcessID": 904,
1479
- "StartMode": "Auto",
1480
- "StartName": "LocalSystem",
1481
- "State": "Running"
1482
- },
1483
- "LanmanWorkstation": {
1484
- "Name": "LanmanWorkstation",
1485
- "ProcessID": 320,
1486
- "StartMode": "Auto",
1487
- "StartName": "NT AUTHORITY\\NetworkService",
1488
- "State": "Running"
1489
- },
1490
- "MMCSS": {
1491
- "Name": "MMCSS",
1492
- "ProcessID": 0,
1493
- "StartMode": "Manual",
1494
- "StartName": "LocalSystem",
1495
- "State": "Stopped"
1496
- },
1497
- "MSDTC": {
1498
- "Name": "MSDTC",
1499
- "ProcessID": 3652,
1500
- "StartMode": "Auto",
1501
- "StartName": "NT AUTHORITY\\NetworkService",
1502
- "State": "Running"
1503
- },
1504
- "MSiSCSI": {
1505
- "Name": "MSiSCSI",
1506
- "ProcessID": 0,
1507
- "StartMode": "Manual",
1508
- "StartName": "LocalSystem",
1509
- "State": "Stopped"
1510
- },
1511
- "MongoDB": {
1512
- "Name": "MongoDB",
1513
- "ProcessID": 1316,
1514
- "StartMode": "Auto",
1515
- "StartName": "LocalSystem",
1516
- "State": "Running"
1517
- },
1518
- "MpsSvc": {
1519
- "Name": "MpsSvc",
1520
- "ProcessID": 988,
1521
- "StartMode": "Auto",
1522
- "StartName": "NT Authority\\LocalService",
1523
- "State": "Running"
1524
- },
1525
- "MsDepSvc": {
1526
- "Name": "MsDepSvc",
1527
- "ProcessID": 1484,
1528
- "StartMode": "Auto",
1529
- "StartName": "NT AUTHORITY\\NetworkService",
1530
- "State": "Running"
1531
- },
1532
- "NSClientpp": {
1533
- "Name": "NSClientpp",
1534
- "ProcessID": 1668,
1535
- "StartMode": "Auto",
1536
- "StartName": "LocalSystem",
1537
- "State": "Running"
1538
- },
1539
- "Net Driver HPZ12": {
1540
- "Name": "Net Driver HPZ12",
1541
- "ProcessID": 1572,
1542
- "StartMode": "Auto",
1543
- "StartName": "NT AUTHORITY\\LocalService",
1544
- "State": "Running"
1545
- },
1546
- "NetMsmqActivator": {
1547
- "Name": "NetMsmqActivator",
1548
- "ProcessID": 0,
1549
- "StartMode": "Disabled",
1550
- "StartName": "NT AUTHORITY\\NetworkService",
1551
- "State": "Stopped"
1552
- },
1553
- "NetPipeActivator": {
1554
- "Name": "NetPipeActivator",
1555
- "ProcessID": 1604,
1556
- "StartMode": "Auto",
1557
- "StartName": "NT AUTHORITY\\LocalService",
1558
- "State": "Running"
1559
- },
1560
- "NetTcpActivator": {
1561
- "Name": "NetTcpActivator",
1562
- "ProcessID": 1604,
1563
- "StartMode": "Auto",
1564
- "StartName": "NT AUTHORITY\\LocalService",
1565
- "State": "Running"
1566
- },
1567
- "NetTcpPortSharing": {
1568
- "Name": "NetTcpPortSharing",
1569
- "ProcessID": 1604,
1570
- "StartMode": "Manual",
1571
- "StartName": "NT AUTHORITY\\LocalService",
1572
- "State": "Running"
1573
- },
1574
- "Netlogon": {
1575
- "Name": "Netlogon",
1576
- "ProcessID": 568,
1577
- "StartMode": "Auto",
1578
- "StartName": "LocalSystem",
1579
- "State": "Running"
1580
- },
1581
- "Netman": {
1582
- "Name": "Netman",
1583
- "ProcessID": 1012,
1584
- "StartMode": "Manual",
1585
- "StartName": "LocalSystem",
1586
- "State": "Running"
1587
- },
1588
- "NlaSvc": {
1589
- "Name": "NlaSvc",
1590
- "ProcessID": 320,
1591
- "StartMode": "Auto",
1592
- "StartName": "NT AUTHORITY\\NetworkService",
1593
- "State": "Running"
1594
- },
1595
- "OctopusDeploy Tentacle": {
1596
- "Name": "OctopusDeploy Tentacle",
1597
- "ProcessID": 17952,
1598
- "StartMode": "Auto",
1599
- "StartName": "prd-octopus-svc@homeaway.live",
1600
- "State": "Running"
1601
- },
1602
- "PerfHost": {
1603
- "Name": "PerfHost",
1604
- "ProcessID": 0,
1605
- "StartMode": "Manual",
1606
- "StartName": "NT AUTHORITY\\LocalService",
1607
- "State": "Stopped"
1608
- },
1609
- "PlugPlay": {
1610
- "Name": "PlugPlay",
1611
- "ProcessID": 676,
1612
- "StartMode": "Auto",
1613
- "StartName": "LocalSystem",
1614
- "State": "Running"
1615
- },
1616
- "Pml Driver HPZ12": {
1617
- "Name": "Pml Driver HPZ12",
1618
- "ProcessID": 1876,
1619
- "StartMode": "Auto",
1620
- "StartName": "NT AUTHORITY\\LocalService",
1621
- "State": "Running"
1622
- },
1623
- "PolicyAgent": {
1624
- "Name": "PolicyAgent",
1625
- "ProcessID": 2332,
1626
- "StartMode": "Manual",
1627
- "StartName": "NT Authority\\NetworkService",
1628
- "State": "Running"
1629
- },
1630
- "Power": {
1631
- "Name": "Power",
1632
- "ProcessID": 676,
1633
- "StartMode": "Auto",
1634
- "StartName": "LocalSystem",
1635
- "State": "Running"
1636
- },
1637
- "ProfSvc": {
1638
- "Name": "ProfSvc",
1639
- "ProcessID": 904,
1640
- "StartMode": "Auto",
1641
- "StartName": "LocalSystem",
1642
- "State": "Running"
1643
- },
1644
- "ProtectedStorage": {
1645
- "Name": "ProtectedStorage",
1646
- "ProcessID": 0,
1647
- "StartMode": "Manual",
1648
- "StartName": "LocalSystem",
1649
- "State": "Stopped"
1650
- },
1651
- "RSoPProv": {
1652
- "Name": "RSoPProv",
1653
- "ProcessID": 0,
1654
- "StartMode": "Manual",
1655
- "StartName": "LocalSystem",
1656
- "State": "Stopped"
1657
- },
1658
- "RasAuto": {
1659
- "Name": "RasAuto",
1660
- "ProcessID": 0,
1661
- "StartMode": "Manual",
1662
- "StartName": "localSystem",
1663
- "State": "Stopped"
1664
- },
1665
- "RasMan": {
1666
- "Name": "RasMan",
1667
- "ProcessID": 0,
1668
- "StartMode": "Manual",
1669
- "StartName": "localSystem",
1670
- "State": "Stopped"
1671
- },
1672
- "RemoteAccess": {
1673
- "Name": "RemoteAccess",
1674
- "ProcessID": 0,
1675
- "StartMode": "Disabled",
1676
- "StartName": "localSystem",
1677
- "State": "Stopped"
1678
- },
1679
- "RemoteRegistry": {
1680
- "Name": "RemoteRegistry",
1681
- "ProcessID": 2000,
1682
- "StartMode": "Auto",
1683
- "StartName": "NT AUTHORITY\\LocalService",
1684
- "State": "Running"
1685
- },
1686
- "RpcEptMapper": {
1687
- "Name": "RpcEptMapper",
1688
- "ProcessID": 756,
1689
- "StartMode": "Auto",
1690
- "StartName": "NT AUTHORITY\\NetworkService",
1691
- "State": "Running"
1692
- },
1693
- "RpcLocator": {
1694
- "Name": "RpcLocator",
1695
- "ProcessID": 0,
1696
- "StartMode": "Manual",
1697
- "StartName": "NT AUTHORITY\\NetworkService",
1698
- "State": "Stopped"
1699
- },
1700
- "RpcSs": {
1701
- "Name": "RpcSs",
1702
- "ProcessID": 756,
1703
- "StartMode": "Auto",
1704
- "StartName": "NT AUTHORITY\\NetworkService",
1705
- "State": "Running"
1706
- },
1707
- "SCPolicySvc": {
1708
- "Name": "SCPolicySvc",
1709
- "ProcessID": 0,
1710
- "StartMode": "Manual",
1711
- "StartName": "LocalSystem",
1712
- "State": "Stopped"
1713
- },
1714
- "SCardSvr": {
1715
- "Name": "SCardSvr",
1716
- "ProcessID": 0,
1717
- "StartMode": "Manual",
1718
- "StartName": "NT AUTHORITY\\LocalService",
1719
- "State": "Stopped"
1720
- },
1721
- "SENS": {
1722
- "Name": "SENS",
1723
- "ProcessID": 904,
1724
- "StartMode": "Auto",
1725
- "StartName": "LocalSystem",
1726
- "State": "Running"
1727
- },
1728
- "SMTPSVC": {
1729
- "Name": "SMTPSVC",
1730
- "ProcessID": 0,
1731
- "StartMode": "Manual",
1732
- "StartName": "LocalSystem",
1733
- "State": "Stopped"
1734
- },
1735
- "SNAC": {
1736
- "Name": "SNAC",
1737
- "ProcessID": 0,
1738
- "StartMode": "Manual",
1739
- "StartName": "LocalSystem",
1740
- "State": "Stopped"
1741
- },
1742
- "SNMP": {
1743
- "Name": "SNMP",
1744
- "ProcessID": 952,
1745
- "StartMode": "Auto",
1746
- "StartName": "LocalSystem",
1747
- "State": "Running"
1748
- },
1749
- "SNMPTRAP": {
1750
- "Name": "SNMPTRAP",
1751
- "ProcessID": 0,
1752
- "StartMode": "Manual",
1753
- "StartName": "NT AUTHORITY\\LocalService",
1754
- "State": "Stopped"
1755
- },
1756
- "SSDPSRV": {
1757
- "Name": "SSDPSRV",
1758
- "ProcessID": 0,
1759
- "StartMode": "Disabled",
1760
- "StartName": "NT AUTHORITY\\LocalService",
1761
- "State": "Stopped"
1762
- },
1763
- "SamSs": {
1764
- "Name": "SamSs",
1765
- "ProcessID": 568,
1766
- "StartMode": "Auto",
1767
- "StartName": "LocalSystem",
1768
- "State": "Running"
1769
- },
1770
- "Schedule": {
1771
- "Name": "Schedule",
1772
- "ProcessID": 904,
1773
- "StartMode": "Auto",
1774
- "StartName": "LocalSystem",
1775
- "State": "Running"
1776
- },
1777
- "SepMasterService": {
1778
- "Name": "SepMasterService",
1779
- "ProcessID": 25368,
1780
- "StartMode": "Auto",
1781
- "StartName": "LocalSystem",
1782
- "State": "Running"
1783
- },
1784
- "SessionEnv": {
1785
- "Name": "SessionEnv",
1786
- "ProcessID": 904,
1787
- "StartMode": "Manual",
1788
- "StartName": "localSystem",
1789
- "State": "Running"
1790
- },
1791
- "SharedAccess": {
1792
- "Name": "SharedAccess",
1793
- "ProcessID": 0,
1794
- "StartMode": "Disabled",
1795
- "StartName": "LocalSystem",
1796
- "State": "Stopped"
1797
- },
1798
- "ShellHWDetection": {
1799
- "Name": "ShellHWDetection",
1800
- "ProcessID": 904,
1801
- "StartMode": "Auto",
1802
- "StartName": "LocalSystem",
1803
- "State": "Running"
1804
- },
1805
- "Smcinst": {
1806
- "Name": "Smcinst",
1807
- "ProcessID": 0,
1808
- "StartMode": "Manual",
1809
- "StartName": "LocalSystem",
1810
- "State": "Stopped"
1811
- },
1812
- "SplunkForwarder": {
1813
- "Name": "SplunkForwarder",
1814
- "ProcessID": 29992,
1815
- "StartMode": "Auto",
1816
- "StartName": "LocalSystem",
1817
- "State": "Running"
1818
- },
1819
- "Spooler": {
1820
- "Name": "Spooler",
1821
- "ProcessID": 1164,
1822
- "StartMode": "Auto",
1823
- "StartName": "LocalSystem",
1824
- "State": "Running"
1825
- },
1826
- "SstpSvc": {
1827
- "Name": "SstpSvc",
1828
- "ProcessID": 0,
1829
- "StartMode": "Manual",
1830
- "StartName": "NT Authority\\LocalService",
1831
- "State": "Stopped"
1832
- },
1833
- "THREADORDER": {
1834
- "Name": "THREADORDER",
1835
- "ProcessID": 0,
1836
- "StartMode": "Manual",
1837
- "StartName": "NT AUTHORITY\\LocalService",
1838
- "State": "Stopped"
1839
- },
1840
- "TapiSrv": {
1841
- "Name": "TapiSrv",
1842
- "ProcessID": 0,
1843
- "StartMode": "Manual",
1844
- "StartName": "NT AUTHORITY\\NetworkService",
1845
- "State": "Stopped"
1846
- },
1847
- "TermService": {
1848
- "Name": "TermService",
1849
- "ProcessID": 3044,
1850
- "StartMode": "Manual",
1851
- "StartName": "NT Authority\\NetworkService",
1852
- "State": "Running"
1853
- },
1854
- "TrkWks": {
1855
- "Name": "TrkWks",
1856
- "ProcessID": 1012,
1857
- "StartMode": "Auto",
1858
- "StartName": "LocalSystem",
1859
- "State": "Running"
1860
- },
1861
- "TrustedInstaller": {
1862
- "Name": "TrustedInstaller",
1863
- "ProcessID": 35580,
1864
- "StartMode": "Manual",
1865
- "StartName": "localSystem",
1866
- "State": "Running"
1867
- },
1868
- "UI0Detect": {
1869
- "Name": "UI0Detect",
1870
- "ProcessID": 0,
1871
- "StartMode": "Manual",
1872
- "StartName": "LocalSystem",
1873
- "State": "Stopped"
1874
- },
1875
- "UmRdpService": {
1876
- "Name": "UmRdpService",
1877
- "ProcessID": 1012,
1878
- "StartMode": "Manual",
1879
- "StartName": "localSystem",
1880
- "State": "Running"
1881
- },
1882
- "UxSms": {
1883
- "Name": "UxSms",
1884
- "ProcessID": 1012,
1885
- "StartMode": "Auto",
1886
- "StartName": "localSystem",
1887
- "State": "Running"
1888
- },
1889
- "VGAuthService": {
1890
- "Name": "VGAuthService",
1891
- "ProcessID": 2164,
1892
- "StartMode": "Auto",
1893
- "StartName": "LocalSystem",
1894
- "State": "Running"
1895
- },
1896
- "VMTools": {
1897
- "Name": "VMTools",
1898
- "ProcessID": 2420,
1899
- "StartMode": "Auto",
1900
- "StartName": "LocalSystem",
1901
- "State": "Running"
1902
- },
1903
- "VSS": {
1904
- "Name": "VSS",
1905
- "ProcessID": 0,
1906
- "StartMode": "Manual",
1907
- "StartName": "LocalSystem",
1908
- "State": "Stopped"
1909
- },
1910
- "VaultSvc": {
1911
- "Name": "VaultSvc",
1912
- "ProcessID": 0,
1913
- "StartMode": "Manual",
1914
- "StartName": "LocalSystem",
1915
- "State": "Stopped"
1916
- },
1917
- "W32Time": {
1918
- "Name": "W32Time",
1919
- "ProcessID": 960,
1920
- "StartMode": "Manual",
1921
- "StartName": "NT AUTHORITY\\LocalService",
1922
- "State": "Running"
1923
- },
1924
- "W3SVC": {
1925
- "Name": "W3SVC",
1926
- "ProcessID": 2564,
1927
- "StartMode": "Auto",
1928
- "StartName": "LocalSystem",
1929
- "State": "Running"
1930
- },
1931
- "WAS": {
1932
- "Name": "WAS",
1933
- "ProcessID": 2564,
1934
- "StartMode": "Manual",
1935
- "StartName": "LocalSystem",
1936
- "State": "Running"
1937
- },
1938
- "WMSVC": {
1939
- "Name": "WMSVC",
1940
- "ProcessID": 2608,
1941
- "StartMode": "Auto",
1942
- "StartName": "NT AUTHORITY\\LocalService",
1943
- "State": "Running"
1944
- },
1945
- "WPDBusEnum": {
1946
- "Name": "WPDBusEnum",
1947
- "ProcessID": 0,
1948
- "StartMode": "Manual",
1949
- "StartName": "LocalSystem",
1950
- "State": "Stopped"
1951
- },
1952
- "WcsPlugInService": {
1953
- "Name": "WcsPlugInService",
1954
- "ProcessID": 0,
1955
- "StartMode": "Manual",
1956
- "StartName": "NT AUTHORITY\\LocalService",
1957
- "State": "Stopped"
1958
- },
1959
- "WdiServiceHost": {
1960
- "Name": "WdiServiceHost",
1961
- "ProcessID": 0,
1962
- "StartMode": "Manual",
1963
- "StartName": "NT AUTHORITY\\LocalService",
1964
- "State": "Stopped"
1965
- },
1966
- "WdiSystemHost": {
1967
- "Name": "WdiSystemHost",
1968
- "ProcessID": 0,
1969
- "StartMode": "Manual",
1970
- "StartName": "LocalSystem",
1971
- "State": "Stopped"
1972
- },
1973
- "Wecsvc": {
1974
- "Name": "Wecsvc",
1975
- "ProcessID": 0,
1976
- "StartMode": "Manual",
1977
- "StartName": "NT AUTHORITY\\NetworkService",
1978
- "State": "Stopped"
1979
- },
1980
- "WerSvc": {
1981
- "Name": "WerSvc",
1982
- "ProcessID": 0,
1983
- "StartMode": "Manual",
1984
- "StartName": "localSystem",
1985
- "State": "Stopped"
1986
- },
1987
- "WinHttpAutoProxySvc": {
1988
- "Name": "WinHttpAutoProxySvc",
1989
- "ProcessID": 960,
1990
- "StartMode": "Manual",
1991
- "StartName": "NT AUTHORITY\\LocalService",
1992
- "State": "Running"
1993
- },
1994
- "WinRM": {
1995
- "Name": "WinRM",
1996
- "ProcessID": 320,
1997
- "StartMode": "Auto",
1998
- "StartName": "NT AUTHORITY\\NetworkService",
1999
- "State": "Running"
2000
- },
2001
- "Winmgmt": {
2002
- "Name": "Winmgmt",
2003
- "ProcessID": 904,
2004
- "StartMode": "Auto",
2005
- "StartName": "localSystem",
2006
- "State": "Running"
2007
- },
2008
- "aspnet_state": {
2009
- "Name": "aspnet_state",
2010
- "ProcessID": 0,
2011
- "StartMode": "Manual",
2012
- "StartName": "NT AUTHORITY\\NetworkService",
2013
- "State": "Stopped"
2014
- },
2015
- "clr_optimization_v2.0.50727_32": {
2016
- "Name": "clr_optimization_v2.0.50727_32",
2017
- "ProcessID": 0,
2018
- "StartMode": "Disabled",
2019
- "StartName": "LocalSystem",
2020
- "State": "Stopped"
2021
- },
2022
- "clr_optimization_v2.0.50727_64": {
2023
- "Name": "clr_optimization_v2.0.50727_64",
2024
- "ProcessID": 0,
2025
- "StartMode": "Disabled",
2026
- "StartName": "LocalSystem",
2027
- "State": "Stopped"
2028
- },
2029
- "clr_optimization_v4.0.30319_32": {
2030
- "Name": "clr_optimization_v4.0.30319_32",
2031
- "ProcessID": 0,
2032
- "StartMode": "Auto",
2033
- "StartName": "LocalSystem",
2034
- "State": "Stopped"
2035
- },
2036
- "clr_optimization_v4.0.30319_64": {
2037
- "Name": "clr_optimization_v4.0.30319_64",
2038
- "ProcessID": 0,
2039
- "StartMode": "Auto",
2040
- "StartName": "LocalSystem",
2041
- "State": "Stopped"
2042
- },
2043
- "defragsvc": {
2044
- "Name": "defragsvc",
2045
- "ProcessID": 0,
2046
- "StartMode": "Manual",
2047
- "StartName": "localSystem",
2048
- "State": "Stopped"
2049
- },
2050
- "dot3svc": {
2051
- "Name": "dot3svc",
2052
- "ProcessID": 0,
2053
- "StartMode": "Manual",
2054
- "StartName": "localSystem",
2055
- "State": "Stopped"
2056
- },
2057
- "eventlog": {
2058
- "Name": "eventlog",
2059
- "ProcessID": 844,
2060
- "StartMode": "Auto",
2061
- "StartName": "NT AUTHORITY\\LocalService",
2062
- "State": "Running"
2063
- },
2064
- "fdPHost": {
2065
- "Name": "fdPHost",
2066
- "ProcessID": 960,
2067
- "StartMode": "Manual",
2068
- "StartName": "NT AUTHORITY\\LocalService",
2069
- "State": "Running"
2070
- },
2071
- "gpsvc": {
2072
- "Name": "gpsvc",
2073
- "ProcessID": 904,
2074
- "StartMode": "Auto",
2075
- "StartName": "LocalSystem",
2076
- "State": "Running"
2077
- },
2078
- "hidserv": {
2079
- "Name": "hidserv",
2080
- "ProcessID": 0,
2081
- "StartMode": "Manual",
2082
- "StartName": "LocalSystem",
2083
- "State": "Stopped"
2084
- },
2085
- "hkmsvc": {
2086
- "Name": "hkmsvc",
2087
- "ProcessID": 0,
2088
- "StartMode": "Manual",
2089
- "StartName": "localSystem",
2090
- "State": "Stopped"
2091
- },
2092
- "idsvc": {
2093
- "Name": "idsvc",
2094
- "ProcessID": 0,
2095
- "StartMode": "Manual",
2096
- "StartName": "LocalSystem",
2097
- "State": "Stopped"
2098
- },
2099
- "iphlpsvc": {
2100
- "Name": "iphlpsvc",
2101
- "ProcessID": 904,
2102
- "StartMode": "Auto",
2103
- "StartName": "LocalSystem",
2104
- "State": "Running"
2105
- },
2106
- "lltdsvc": {
2107
- "Name": "lltdsvc",
2108
- "ProcessID": 0,
2109
- "StartMode": "Manual",
2110
- "StartName": "NT AUTHORITY\\LocalService",
2111
- "State": "Stopped"
2112
- },
2113
- "lmhosts": {
2114
- "Name": "lmhosts",
2115
- "ProcessID": 844,
2116
- "StartMode": "Auto",
2117
- "StartName": "NT AUTHORITY\\LocalService",
2118
- "State": "Running"
2119
- },
2120
- "mcollective": {
2121
- "Name": "mcollective",
2122
- "ProcessID": 0,
2123
- "StartMode": "Manual",
2124
- "StartName": "LocalSystem",
2125
- "State": "Stopped"
2126
- },
2127
- "msiserver": {
2128
- "Name": "msiserver",
2129
- "ProcessID": 0,
2130
- "StartMode": "Manual",
2131
- "StartName": "LocalSystem",
2132
- "State": "Stopped"
2133
- },
2134
- "napagent": {
2135
- "Name": "napagent",
2136
- "ProcessID": 0,
2137
- "StartMode": "Manual",
2138
- "StartName": "NT AUTHORITY\\NetworkService",
2139
- "State": "Stopped"
2140
- },
2141
- "netprofm": {
2142
- "Name": "netprofm",
2143
- "ProcessID": 960,
2144
- "StartMode": "Manual",
2145
- "StartName": "NT AUTHORITY\\LocalService",
2146
- "State": "Running"
2147
- },
2148
- "newrelic-infra": {
2149
- "Name": "newrelic-infra",
2150
- "ProcessID": 6932,
2151
- "StartMode": "Auto",
2152
- "StartName": "LocalSystem",
2153
- "State": "Running"
2154
- },
2155
- "nsi": {
2156
- "Name": "nsi",
2157
- "ProcessID": 960,
2158
- "StartMode": "Auto",
2159
- "StartName": "NT Authority\\LocalService",
2160
- "State": "Running"
2161
- },
2162
- "pla": {
2163
- "Name": "pla",
2164
- "ProcessID": 0,
2165
- "StartMode": "Manual",
2166
- "StartName": "NT AUTHORITY\\LocalService",
2167
- "State": "Stopped"
2168
- },
2169
- "puppet": {
2170
- "Name": "puppet",
2171
- "ProcessID": 27876,
2172
- "StartMode": "Auto",
2173
- "StartName": "LocalSystem",
2174
- "State": "Running"
2175
- },
2176
- "pxp-agent": {
2177
- "Name": "pxp-agent",
2178
- "ProcessID": 0,
2179
- "StartMode": "Manual",
2180
- "StartName": "LocalSystem",
2181
- "State": "Stopped"
2182
- },
2183
- "rpcapd": {
2184
- "Name": "rpcapd",
2185
- "ProcessID": 0,
2186
- "StartMode": "Manual",
2187
- "StartName": "LocalSystem",
2188
- "State": "Stopped"
2189
- },
2190
- "sacsvr": {
2191
- "Name": "sacsvr",
2192
- "ProcessID": 0,
2193
- "StartMode": "Manual",
2194
- "StartName": "LocalSystem",
2195
- "State": "Stopped"
2196
- },
2197
- "seclogon": {
2198
- "Name": "seclogon",
2199
- "ProcessID": 0,
2200
- "StartMode": "Manual",
2201
- "StartName": "LocalSystem",
2202
- "State": "Stopped"
2203
- },
2204
- "sppsvc": {
2205
- "Name": "sppsvc",
2206
- "ProcessID": 35496,
2207
- "StartMode": "Auto",
2208
- "StartName": "NT AUTHORITY\\NetworkService",
2209
- "State": "Running"
2210
- },
2211
- "sppuinotify": {
2212
- "Name": "sppuinotify",
2213
- "ProcessID": 0,
2214
- "StartMode": "Manual",
2215
- "StartName": "NT AUTHORITY\\LocalService",
2216
- "State": "Stopped"
2217
- },
2218
- "swprv": {
2219
- "Name": "swprv",
2220
- "ProcessID": 0,
2221
- "StartMode": "Manual",
2222
- "StartName": "LocalSystem",
2223
- "State": "Stopped"
2224
- },
2225
- "upnphost": {
2226
- "Name": "upnphost",
2227
- "ProcessID": 0,
2228
- "StartMode": "Disabled",
2229
- "StartName": "NT AUTHORITY\\LocalService",
2230
- "State": "Stopped"
2231
- },
2232
- "vds": {
2233
- "Name": "vds",
2234
- "ProcessID": 0,
2235
- "StartMode": "Manual",
2236
- "StartName": "LocalSystem",
2237
- "State": "Stopped"
2238
- },
2239
- "vmvss": {
2240
- "Name": "vmvss",
2241
- "ProcessID": 0,
2242
- "StartMode": "Manual",
2243
- "StartName": "LocalSystem",
2244
- "State": "Stopped"
2245
- },
2246
- "wercplsupport": {
2247
- "Name": "wercplsupport",
2248
- "ProcessID": 0,
2249
- "StartMode": "Manual",
2250
- "StartName": "localSystem",
2251
- "State": "Stopped"
2252
- },
2253
- "wmiApSrv": {
2254
- "Name": "wmiApSrv",
2255
- "ProcessID": 35600,
2256
- "StartMode": "Manual",
2257
- "StartName": "localSystem",
2258
- "State": "Running"
2259
- },
2260
- "wuauserv": {
2261
- "Name": "wuauserv",
2262
- "ProcessID": 904,
2263
- "StartMode": "Auto",
2264
- "StartName": "LocalSystem",
2265
- "State": "Running"
2266
- },
2267
- "wudfsvc": {
2268
- "Name": "wudfsvc",
2269
- "ProcessID": 0,
2270
- "StartMode": "Manual",
2271
- "StartName": "LocalSystem",
2272
- "State": "Stopped"
2273
- }
2274
- },
2275
- "ha_win_splunk": {
2276
- "apps": [
2277
- "forward_to_us_dts_peers",
2278
- "gthystg",
2279
- "homeaway-nonprod",
2280
- "introspection_generator_addon",
2281
- "learned",
2282
- "lms_dts",
2283
- "search",
2284
- "SplunkUniversalForwarder",
2285
- "splunk_httpinput",
2286
- "windows"
2287
- ],
2288
- "apps_count": 10,
2289
- "deployment_conf_count": 1,
2290
- "deployment_conf_path": "C:\\Program Files\\SplunkUniversalForwarder\\etc\\system\\local\\deploymentclient.conf",
2291
- "deployment_server_connection": true,
2292
- "fwd_to_apps": "forward_to_us_dts_peers",
2293
- "fwd_to_apps_count": 1,
2294
- "inputs_conf_fqdn": true,
2295
- "server_conf_fqdn": true
2296
- },
2297
- "ha_win_updates": {
2298
- "2017-05 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4019265)": "2017-06-03",
2299
- "2017-05 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4019264)": "2017-05-13",
2300
- "2017-05 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4019263)": "2017-05-13",
2301
- "2017-06 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4022168)": "2017-07-01",
2302
- "2017-06 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4022719)": "2017-06-17",
2303
- "2017-06 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4022722)": "2017-06-17",
2304
- "2017-07 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4025341)": "2017-07-15",
2305
- "2017-07 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4025337)": "2017-07-15",
2306
- "2017-08 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4034670)": "2017-08-26",
2307
- "2017-08 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4034664)": "2017-08-12",
2308
- "2017-08 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4034679)": "2017-08-12",
2309
- "2017-09 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4038803)": "2017-10-07",
2310
- "2017-09 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4038777)": "2017-10-07",
2311
- "2017-09 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4038779)": "2017-10-07",
2312
- "2017-09 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4041090)": "2017-10-21",
2313
- "2017-09 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4041083)": "2017-10-21",
2314
- "2017-10 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4041686)": "2017-10-21",
2315
- "2017-10 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4042076)": "2017-10-21",
2316
- "2017-10 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4041681)": "2017-10-14",
2317
- "2017-10 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4041678)": "2017-10-14",
2318
- "2017-10 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4043766)": "2017-10-21",
2319
- "2017-11 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4051034)": "2017-12-02",
2320
- "2017-11 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4048957)": "2017-11-18",
2321
- "2017-11 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4048960)": "2017-11-18",
2322
- "2017-12 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4054518)": "2017-12-16",
2323
- "2017-12 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4054521)": "2017-12-16",
2324
- "2018-01 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4056894)": "2018-01-06",
2325
- "2018-01 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4056897)": "2018-01-06",
2326
- "2018-01 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4055269)": "2018-01-13",
2327
- "2018-01 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4055532)": "2018-03-24",
2328
- "2018-02 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4074587)": "2018-03-24",
2329
- "2018-02 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4076492)": "2018-03-24",
2330
- "2018-03 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4088881)": "2018-03-24",
2331
- "2018-03 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4088875)": "2018-03-24",
2332
- "2018-03 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4088878)": "2018-03-24",
2333
- "2018-03 Security Update for Windows Server 2008 R2 for x64-based Systems (KB4100480)": "2018-04-07",
2334
- "2018-04 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4093113)": "2018-04-21",
2335
- "2018-04 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4093118)": "2018-04-14",
2336
- "2018-04 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4093108)": "2018-04-14",
2337
- "2018-04 Update for Windows Server 2008 R2 for x64-based Systems (KB4099950)": "2018-04-21",
2338
- "2018-05 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4103713)": "2018-06-09",
2339
- "2018-05 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4103472)": "2018-05-19",
2340
- "2018-05 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4103718)": "2018-05-12",
2341
- "2018-05 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4103712)": "2018-05-12",
2342
- "2018-05 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4099637)": "2018-05-12",
2343
- "2018-05 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4099633)": "2018-05-12",
2344
- "2018-06 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4284842)": "2018-07-07",
2345
- "2018-06 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1 on Windows 7 and Server 2008 R2 for x64 (KB4291493)": "2018-07-07",
2346
- "2018-06 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4284826)": "2018-07-07",
2347
- "2018-06 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4284867)": "2018-07-26",
2348
- "2018-07 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4338821)": "2018-07-26",
2349
- "2018-07 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4338818)": "2018-07-26",
2350
- "2018-07 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4338823)": "2018-07-26",
2351
- "2018-07 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4340004)": "2018-07-26",
2352
- "2018-07 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4340556)": "2018-07-26",
2353
- "2018-07 Update for Windows Server 2008 R2 for x64-based Systems (KB4345459)": "2018-07-21",
2354
- "2018-08 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4343894)": "2018-09-15",
2355
- "2018-08 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4346080)": "2018-09-15",
2356
- "2018-08 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4343900)": "2019-01-12",
2357
- "2018-08 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4343899)": "2019-02-16",
2358
- "2018-08 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4345679)": "2019-02-16",
2359
- "2018-08 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4345590)": "2019-01-12",
2360
- "2018-09 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4457139)": "2018-10-13",
2361
- "2018-09 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4458611)": "2018-10-06",
2362
- "2018-09 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4457145)": "2019-02-16",
2363
- "2018-09 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4457914)": "2019-02-09",
2364
- "2018-10 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4462927)": "2018-11-24",
2365
- "2018-10 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4462500)": "2018-11-10",
2366
- "2018-10 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4462915)": "2019-02-16",
2367
- "2018-10 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4459922)": "2018-11-10",
2368
- "2018-11 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4467108)": "2019-01-12",
2369
- "2018-11 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4467224)": "2019-01-12",
2370
- "2018-11 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4467106)": "2019-02-16",
2371
- "2018-11 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4467240)": "2019-01-12",
2372
- "2018-12 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4471328)": "2019-02-16",
2373
- "2018-12 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4471981)": "2019-02-16",
2374
- "2019-01 Preview of Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4480955)": "2019-02-09",
2375
- "2019-01 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4481488)": "2019-02-09",
2376
- "2019-01 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4480970)": "2019-02-09",
2377
- "2019-01 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4480960)": "2019-02-16",
2378
- "2019-01 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4481481)": "2019-02-09",
2379
- "2019-01 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4481480)": "2019-02-09",
2380
- "2019-02 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4486563)": "2019-02-16",
2381
- "2019-02 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4486564)": "2019-02-16",
2382
- "2019-02 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4487121)": "2019-02-16",
2383
- "2019-02 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2 for Windows 7 and Server 2008 R2 for x64 (KB4487078)": "2019-02-16",
2384
- "April, 2017 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4015549)": "2017-04-15",
2385
- "April, 2017 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4015546)": "2017-04-15",
2386
- "April, 2017 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Windows Server 2008 R2 for x64 (KB4014985)": "2017-04-15",
2387
- "April, 2017 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Windows Server 2008 R2 for x64 (KB4014981)": "2017-04-15",
2388
- "August, 2017 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4035036)": "2017-08-26",
2389
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 Service Pack 1 for x64-based Systems (KB2925418)": "2014-05-09",
2390
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3078071)": "2015-08-29",
2391
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3087038)": "2015-09-12",
2392
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3093983)": "2015-10-17",
2393
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3100773)": "2015-11-14",
2394
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3104002)": "2015-12-12",
2395
- "Cumulative Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3124275)": "2016-01-16",
2396
- "Cumulative Security Update for Internet Explorer 9 for Windows Server 2008 R2 x64 Edition (KB2879017)": "2013-10-18",
2397
- "Cumulative Update for Internet Explorer 10 for Windows Server 2008 R2 Service Pack 1 for x64-based Systems (KB2936068)": "2014-05-09",
2398
- "December, 2016 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB3207752)": "2016-12-17",
2399
- "December, 2016 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB3205394)": "2016-12-17",
2400
- "December, 2016 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Windows Server 2008 R2 for x64 (KB3205402)": "2016-12-17",
2401
- "Hotfix for Windows (KB2496898)": "2013-07-24",
2402
- "Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems": "2013-10-18",
2403
- "January, 2017 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB3212646)": "2017-01-14",
2404
- "January, 2017 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB3212642)": "2017-01-14",
2405
- "July, 2017 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 on Windows 7 and Server 2008 R2 for x64 (KB4032113)": "2017-07-22",
2406
- "March, 2017 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB4012215)": "2017-03-18",
2407
- "March, 2017 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB4012212)": "2017-03-18",
2408
- "May, 2017 Preview of Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Server 2008 R2 for x64 (KB4019288)": "2017-06-03",
2409
- "May, 2017 Security Only Update for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Windows Server 2008 R2 for x64 (KB4019108)": "2017-05-13",
2410
- "May, 2017 Security and Quality Rollup for .NET Framework 3.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2 on Windows 7 and Server 2008 R2 for x64 (KB4019112)": "2017-05-13",
2411
- "Microsoft .NET Framework 4.5.2 for Windows Server 2008 R2 x64-based Systems (KB2901983)": "2015-10-24",
2412
- "Microsoft .NET Framework 4.7 for Windows 7 and Windows Server 2008 R2 for x64 (KB3186497)": "2017-10-14",
2413
- "Microsoft .NET Framework 4.7.1 for Windows 7 and Windows Server 2008 R2 for x64 (KB4033342)": "2018-04-28",
2414
- "Microsoft .NET Framework 4.7.2 for Windows Server 2008 R2 for x64 (KB4054530)": "2019-02-16",
2415
- "Microsoft Silverlight (KB2668562)": "2013-10-18",
2416
- "November, 2016 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB3197868)": "2016-11-12",
2417
- "October, 2016 Security Monthly Quality Rollup for Windows Server 2008 R2 for x64-based Systems (KB3185330)": "2016-10-15",
2418
- "October, 2016 Security Only Quality Update for Windows Server 2008 R2 for x64-based Systems (KB3192391)": "2016-10-15",
2419
- "October, 2016 Security Only Update for .NET Framework 3.5.1 on Windows 7 SP1 and Windows Server 2008 R2 SP1 for x64 (KB3188730)": "2016-10-15",
2420
- "October, 2016 Security and Quality Rollup for .NET Framework 3.5.1 on Windows 7 SP1 and Windows Server 2008 R2 SP1 for x64 (KB3188740)": "2016-10-15",
2421
- "Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB2909210)": "2014-05-09",
2422
- "Security Update for Internet Explorer 10 for Windows Server 2008 R2 for x64-based Systems (KB3087985)": "2015-09-05",
2423
- "Security Update for Internet Explorer 10 for Windows Server 2008 R2 x64 Edition (KB2964358)": "2014-05-09",
2424
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 SP1 and Windows Server 2008 R2 SP1 for x64 (KB3072305)": "2015-08-29",
2425
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3122648)": "2016-02-13",
2426
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3127220)": "2016-02-13",
2427
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3135983)": "2016-03-12",
2428
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3135988)": "2016-03-12",
2429
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3142024)": "2016-05-14",
2430
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64 (KB3142042)": "2016-04-16",
2431
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2789645)": "2013-10-18",
2432
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2833946)": "2013-10-18",
2433
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2840631)": "2013-10-18",
2434
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2844286)": "2013-10-18",
2435
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2861698)": "2013-10-18",
2436
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2863240)": "2013-10-18",
2437
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2894844)": "2015-08-29",
2438
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2898857)": "2014-05-09",
2439
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2901112)": "2014-05-09",
2440
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2911501)": "2014-05-09",
2441
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2931356)": "2015-08-29",
2442
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2937610)": "2015-08-29",
2443
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2943357)": "2015-08-29",
2444
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2968294)": "2015-08-29",
2445
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2972100)": "2015-08-29",
2446
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2972211)": "2015-08-29",
2447
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2973112)": "2015-08-29",
2448
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2978120)": "2015-08-29",
2449
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2979570)": "2015-08-29",
2450
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3023215)": "2015-08-29",
2451
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3032655)": "2015-08-29",
2452
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3037574)": "2015-08-29",
2453
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3074543)": "2015-09-12",
2454
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3097989)": "2015-11-14",
2455
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3099862)": "2015-12-12",
2456
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3163245)": "2016-07-16",
2457
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 for x64-based Systems (KB2832414)": "2013-10-18",
2458
- "Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 for x64-based Systems (KB2861191)": "2013-10-18",
2459
- "Security Update for Microsoft .NET Framework 4.5 RC on Windows 7, Vista, Server 2008, and Server 2008 R2 for x64 (KB2729456)": "2013-10-18",
2460
- "Security Update for Microsoft .NET Framework 4.5 RC on Windows 7, Vista, Server 2008, and Server 2008 R2 for x64 (KB2737081)": "2013-10-18",
2461
- "Security Update for Microsoft .NET Framework 4.5 and 4.5.1 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB2894854)": "2015-08-29",
2462
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3023224)": "2015-08-29",
2463
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3035490)": "2015-08-29",
2464
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3074230)": "2015-09-12",
2465
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3074550)": "2015-09-12",
2466
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3097996)": "2015-11-14",
2467
- "Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3098781)": "2015-11-14",
2468
- "Security Update for Microsoft .NET Framework 4.5.1 on Windows 7, Vista, Server 2008, and Server 2008 R2 for x64 (KB2898869)": "2015-08-29",
2469
- "Security Update for Microsoft .NET Framework 4.5.2 on Windows 7, Vista, Server 2008, and Server 2008 R2 for x64 (KB3142033)": "2016-05-14",
2470
- "Security Update for Microsoft .NET Framework 4.5.2 on Windows 7, Vista, Server 2008, and Server 2008 R2 for x64 (KB3163251)": "2016-07-16",
2471
- "Security Update for Microsoft .NET Framework 4.5.2 on Windows 7, Vista, Windows Server 2008, Windows Server 2008 R2 for x64 (KB3122656)": "2016-02-13",
2472
- "Security Update for Microsoft .NET Framework 4.5.2 on Windows 7, Vista, Windows Server 2008, Windows Server 2008 R2 for x64 (KB3127229)": "2016-02-13",
2473
- "Security Update for Microsoft .NET Framework 4.5.2 on Windows 7, Vista, Windows Server 2008, Windows Server 2008 R2 for x64 (KB3135996)": "2016-08-13",
2474
- "Security Update for Microsoft Silverlight (KB2890788)": "2013-10-18",
2475
- "Security Update for Microsoft Silverlight (KB4023307)": "2018-03-24",
2476
- "Security Update for Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package (KB2565063)": "2013-10-18",
2477
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2847311)": "2013-10-18",
2478
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2855844)": "2013-10-18",
2479
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2862330)": "2013-10-18",
2480
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2862335)": "2013-10-18",
2481
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2864058)": "2013-10-18",
2482
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2864202)": "2013-10-18",
2483
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2868038)": "2013-10-18",
2484
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2876284)": "2013-10-18",
2485
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2883150)": "2013-10-18",
2486
- "Security Update for Windows Server 2008 R2 x64 Edition (KB2884256)": "2013-10-18",
2487
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3042058)": "2015-10-17",
2488
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3046017)": "2015-08-29",
2489
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3055642)": "2015-08-29",
2490
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3057154)": "2015-08-29",
2491
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3059317)": "2015-08-29",
2492
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3060716)": "2015-08-29",
2493
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3061518)": "2015-08-29",
2494
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3068457)": "2015-08-29",
2495
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3069392)": "2015-08-29",
2496
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3071756)": "2015-08-29",
2497
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3072595)": "2015-09-12",
2498
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3072630)": "2015-08-29",
2499
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3072633)": "2015-08-29",
2500
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3075226)": "2015-08-29",
2501
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3076895)": "2015-08-29",
2502
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3078601)": "2015-08-29",
2503
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3079757)": "2015-08-29",
2504
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3080446)": "2015-10-17",
2505
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3081320)": "2015-11-14",
2506
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3083992)": "2015-09-12",
2507
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3084135)": "2015-09-12",
2508
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3086255)": "2015-09-12",
2509
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3087039)": "2015-09-12",
2510
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3088195)": "2015-10-17",
2511
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3092601)": "2015-11-14",
2512
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3097877)": "2015-11-14",
2513
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3097966)": "2015-10-17",
2514
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3101246)": "2015-11-14",
2515
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3101722)": "2015-11-14",
2516
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3101746)": "2015-11-14",
2517
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3108371)": "2015-12-12",
2518
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3108381)": "2015-12-12",
2519
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3108664)": "2016-01-16",
2520
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3108670)": "2015-12-12",
2521
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3109094)": "2015-12-12",
2522
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3109103)": "2015-12-12",
2523
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3109560)": "2016-01-16",
2524
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3110329)": "2016-01-16",
2525
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3121212)": "2016-01-16",
2526
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3121918)": "2016-01-16",
2527
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3123479)": "2016-01-16",
2528
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3124000)": "2016-01-16",
2529
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3124001)": "2016-01-16",
2530
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3126587)": "2016-02-13",
2531
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3126593)": "2016-02-13",
2532
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3133043)": "2016-02-13",
2533
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3134214)": "2016-02-13",
2534
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3139398)": "2016-03-12",
2535
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3139852)": "2016-03-12",
2536
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3139914)": "2016-03-12",
2537
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3139940)": "2016-03-12",
2538
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3140410)": "2016-03-12",
2539
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3140735)": "2016-03-12",
2540
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3145739)": "2016-04-16",
2541
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3146706)": "2016-04-16",
2542
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3146963)": "2016-04-16",
2543
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3149090)": "2016-04-16",
2544
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3153171)": "2016-05-14",
2545
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3153199)": "2016-05-14",
2546
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3156013)": "2016-05-14",
2547
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3156016)": "2016-05-14",
2548
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3156017)": "2016-05-14",
2549
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3156019)": "2016-05-14",
2550
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3159398)": "2016-06-18",
2551
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3161561)": "2016-06-18",
2552
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3161664)": "2016-06-18",
2553
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3161949)": "2016-06-18",
2554
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3161958)": "2016-06-18",
2555
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3164033)": "2016-06-18",
2556
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3164035)": "2016-06-18",
2557
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3167679)": "2016-08-13",
2558
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3168965)": "2016-07-16",
2559
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3170455)": "2016-07-16",
2560
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3175024)": "2016-09-17",
2561
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3177186)": "2016-09-17",
2562
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3177725)": "2016-08-13",
2563
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3178034)": "2016-08-13",
2564
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3184122)": "2016-09-17",
2565
- "Security Update for Windows Server 2008 R2 x64 Edition (KB3185911)": "2016-09-17",
2566
- "Update for Best Practices Analyzer for Active Directory Rights Management Services for Windows Server 2008 R2 x64 Edition (KB981391)": "2013-10-18",
2567
- "Update for Best Practices Analyzer for Application Server for Windows Server 2008 R2 x64 Edition (KB2386667)": "2013-10-18",
2568
- "Update for Best Practices Analyzer for Application Server for Windows Server 2008 R2 x64 Edition (KB981392)": "2013-10-18",
2569
- "Update for Best Practices Analyzer for DHCP Server for Windows Server 2008 R2 x64 Edition (KB977236)": "2013-10-18",
2570
- "Update for Best Practices Analyzer for File Services for Windows Server 2008 R2 x64 Edition (KB981111)": "2013-10-18",
2571
- "Update for Best Practices Analyzer for HYPER-V for Windows Server 2008 R2 x64 Edition (KB977238)": "2013-10-18",
2572
- "Update for Best Practices Analyzer for Network Policy and Access Services for Windows Server 2008 R2 x64 Edition (NPAS) (KB977239)": "2013-10-18",
2573
- "Update for Best Practices Analyzer for Windows Server Update Services for Windows Server 2008 R2 x64 Edition (KB981390)": "2013-10-18",
2574
- "Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB2836943)": "2014-05-09",
2575
- "Update for Windows (KB2505438)": "2013-07-24",
2576
- "Update for Windows (KB2529073)": "2013-07-24",
2577
- "Update for Windows (KB2819745)": "2015-11-14",
2578
- "Update for Windows (KB3134760)": "2016-12-13",
2579
- "Update for Windows (KB3191566)": "2017-05-12",
2580
- "Update for Windows (KB917607)": "2013-08-21",
2581
- "Update for Windows (KB982018)": "2013-07-24",
2582
- "Update for Windows Server 2008 R2 for x64-based Systems (KB4468323)": "2019-02-16",
2583
- "Update for Windows Server 2008 R2 x64 Edition (KB2718704)": "2013-10-18",
2584
- "Update for Windows Server 2008 R2 x64 Edition (KB2786081)": "2013-10-18",
2585
- "Update for Windows Server 2008 R2 x64 Edition (KB2868116)": "2013-10-18",
2586
- "Update for Windows Server 2008 R2 x64 Edition (KB3020369)": "2015-08-29",
2587
- "Update for Windows Server 2008 R2 x64 Edition (KB3020370)": "2017-06-03",
2588
- "Update for Windows Server 2008 R2 x64 Edition (KB3054205)": "2017-06-03",
2589
- "Update for Windows Server 2008 R2 x64 Edition (KB3054476)": "2017-06-03",
2590
- "Update for Windows Server 2008 R2 x64 Edition (KB3068708)": "2017-06-03",
2591
- "Update for Windows Server 2008 R2 x64 Edition (KB3075851)": "2015-08-29",
2592
- "Update for Windows Server 2008 R2 x64 Edition (KB3077715)": "2015-09-12",
2593
- "Update for Windows Server 2008 R2 x64 Edition (KB3078667)": "2017-06-03",
2594
- "Update for Windows Server 2008 R2 x64 Edition (KB3080079)": "2017-06-03",
2595
- "Update for Windows Server 2008 R2 x64 Edition (KB3080149)": "2017-06-03",
2596
- "Update for Windows Server 2008 R2 x64 Edition (KB3083324)": "2015-09-12",
2597
- "Update for Windows Server 2008 R2 x64 Edition (KB3083710)": "2015-10-17",
2598
- "Update for Windows Server 2008 R2 x64 Edition (KB3092627)": "2017-06-03",
2599
- "Update for Windows Server 2008 R2 x64 Edition (KB3102429)": "2017-06-03",
2600
- "Update for Windows Server 2008 R2 x64 Edition (KB3102810)": "2015-11-14",
2601
- "Update for Windows Server 2008 R2 x64 Edition (KB3107998)": "2017-06-03",
2602
- "Update for Windows Server 2008 R2 x64 Edition (KB3112343)": "2015-12-12",
2603
- "Update for Windows Server 2008 R2 x64 Edition (KB3118401)": "2017-06-10",
2604
- "Update for Windows Server 2008 R2 x64 Edition (KB3121255)": "2017-06-03",
2605
- "Update for Windows Server 2008 R2 x64 Edition (KB3133977)": "2017-06-03",
2606
- "Update for Windows Server 2008 R2 x64 Edition (KB3137061)": "2017-06-03",
2607
- "Update for Windows Server 2008 R2 x64 Edition (KB3138612)": "2016-03-12",
2608
- "Update for Windows Server 2008 R2 x64 Edition (KB3140245)": "2017-06-03",
2609
- "Update for Windows Server 2008 R2 x64 Edition (KB3147071)": "2017-06-03",
2610
- "Update for Windows Server 2008 R2 x64 Edition (KB3172605)": "2017-06-03",
2611
- "Update for Windows Server 2008 R2 x64 Edition (KB3177467)": "2016-10-22",
2612
- "Update for Windows Server 2008 R2 x64 Edition (KB3179573)": "2017-06-03",
2613
- "Update for Windows Server 2008 R2 x64 Edition (KB3181988)": "2017-06-03",
2614
- "Update for Windows Server 2008 R2 x64 Edition (KB4019990)": "2017-06-03",
2615
- "Update for Windows Server 2008 R2 x64 Edition (KB4074837)": "2018-03-24",
2616
- "Update for Windows Server 2008 R2 x64 Edition (KB4093753)": "2018-04-21",
2617
- "Update for Windows Server 2008 R2 x64 Edition (KB4130978)": "2018-05-19",
2618
- "Update for Windows Server 2008 R2 x64 Edition (KB4339284)": "2018-07-26",
2619
- "Windows Malicious Software Removal Tool x64 - April 2014 (KB890830)": "2014-05-09",
2620
- "Windows Malicious Software Removal Tool x64 - February 2019 (KB890830)": "2019-02-16",
2621
- "Windows Malicious Software Removal Tool x64 - January 2019 (KB890830)": "2019-02-09",
2622
- "Windows Malicious Software Removal Tool x64 - October 2013 (KB890830)": "2013-10-18",
2623
- "Windows Update Agent 7.6.7600.320": "2014-08-26"
2624
- },
2625
- "ha_win_updates_installed": "2019-02-16",
2626
- "ha_win_updates_installed_count": 573,
2627
- "ha_win_vlan": "2120",
2628
- "ha_win_webconx": {
2629
- "Cipher Setting: AES 128": "Enabled (default)",
2630
- "Cipher Setting: AES 256": "Enabled (default)",
2631
- "Cipher Setting: DES 56": "Enabled (default)",
2632
- "Cipher Setting: RC4 128/128 ": "Enabled (default)",
2633
- "Cipher Setting: RC4 40/128": "Enabled (default)",
2634
- "Cipher Setting: RC4 56/128": "Enabled (default)",
2635
- "Cipher Setting: Triple DES 168": "Enabled (default)",
2636
- "Customized Settings": true,
2637
- "FIPS Setting": "Not Enabled (default)",
2638
- "MD5 Hash Algorithm Use": "Enabled (default)",
2639
- "PCT1 Client Setting": "Disabled (default)",
2640
- "PCT1 Server Setting": "Disabled (default)",
2641
- "RSA Key Exchange Use": "Enabled (default)",
2642
- "SSL Certificate Etypes Allowed": [
2643
- "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256",
2644
- "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384",
2645
- "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256",
2646
- "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P384",
2647
- "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P256",
2648
- "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P384",
2649
- "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P256",
2650
- "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P384",
2651
- "TLS_DHE_RSA_WITH_AES_256_GCM_SHA384",
2652
- "TLS_DHE_RSA_WITH_AES_128_GCM_SHA256",
2653
- "TLS_DHE_RSA_WITH_AES_256_CBC_SHA",
2654
- "TLS_DHE_RSA_WITH_AES_128_CBC_SHA",
2655
- "TLS_RSA_WITH_AES_256_GCM_SHA384",
2656
- "TLS_RSA_WITH_AES_128_GCM_SHA256",
2657
- "TLS_RSA_WITH_AES_256_CBC_SHA256",
2658
- "TLS_RSA_WITH_AES_128_CBC_SHA256",
2659
- "TLS_RSA_WITH_AES_256_CBC_SHA",
2660
- "TLS_RSA_WITH_AES_128_CBC_SHA",
2661
- "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384_P384",
2662
- "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256_P256",
2663
- "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256_P384",
2664
- "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384_P384",
2665
- "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256_P256",
2666
- "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256_P384",
2667
- "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA_P256",
2668
- "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA_P384",
2669
- "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA_P256",
2670
- "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA_P384",
2671
- "TLS_DHE_DSS_WITH_AES_256_CBC_SHA256",
2672
- "TLS_DHE_DSS_WITH_AES_128_CBC_SHA256",
2673
- "TLS_DHE_DSS_WITH_AES_256_CBC_SHA",
2674
- "TLS_DHE_DSS_WITH_AES_128_CBC_SHA",
2675
- "TLS_RSA_WITH_3DES_EDE_CBC_SHA",
2676
- "TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA",
2677
- "TLS_RSA_WITH_RC4_128_SHA",
2678
- "TLS_RSA_WITH_RC4_128_MD5",
2679
- "TLS_RSA_WITH_NULL_SHA256",
2680
- "TLS_RSA_WITH_NULL_SHA",
2681
- "SSL_CK_RC4_128_WITH_MD5",
2682
- "SSL_CK_DES_192_EDE3_CBC_WITH_MD5"
2683
- ],
2684
- "SSL Certificate Signature Etypes Allowed": [
2685
- "RSA/SHA512",
2686
- "ECDSA/SHA512",
2687
- "RSA/SHA256",
2688
- "RSA/SHA384",
2689
- "RSA/SHA1",
2690
- "ECDSA/SHA256",
2691
- "ECDSA/SHA384",
2692
- "ECDSA/SHA1",
2693
- "DSA/SHA1"
2694
- ],
2695
- "SSL2 Client Setting": "Enabled (default)",
2696
- "SSL2 Server Setting": "Enabled (default)",
2697
- "SSL3 Client Setting": "Disabled (NOT default) for POODLE",
2698
- "SSL3 Server Setting": "Disabled (NOT Default) for POODLE",
2699
- "Secure Hash Algorithm (SHA-1) Use": "Enabled (default)",
2700
- "TLS 1.0 Client Setting": "Enabled (default)",
2701
- "TLS 1.0 Server Setting": "Enabled (default)",
2702
- "TLS 1.1 Client Setting": "Enabled (default)",
2703
- "TLS 1.1 Server Setting": "Enabled (default)",
2704
- "TLS 1.2 Client Setting": "Enabled (default)",
2705
- "TLS 1.2 Server Setting": "Enabled (default)"
2706
- },
2707
- "ha_win_wmistatus": "WMI repository is consistent",
2708
- "hypervisors": {
2709
- "vmware": {}
2710
- },
2711
- "identity": {
2712
- "privileged": true,
2713
- "user": "WVRGROUP\\ejackson_sa"
2714
- },
2715
- "iis_version": "7.5",
2716
- "is_ad_site_exists": "True",
2717
- "is_armor_bookit": "False",
2718
- "is_artifactory_accessible": "True",
2719
- "is_choco_opit-opsview_agent": "True",
2720
- "is_choco_opit-sep_agent": "True",
2721
- "is_choco_opit-tanium_agent": "False",
2722
- "is_dell": "False",
2723
- "is_dns_reg_enabled": "True",
2724
- "is_dns_reg_heartbeat_enabled": "False",
2725
- "is_dns_reg_primary_enabled": "True",
2726
- "is_feature_telnet": "True",
2727
- "is_file_asep_2018": "True",
2728
- "is_ghostnic_present": "True",
2729
- "is_module_present_pswinupdate": "True",
2730
- "is_new_vlan": "True",
2731
- "is_nicname_primary_present": "True",
2732
- "is_pe": false,
2733
- "is_ps_v51": "True",
2734
- "is_virtual": true,
2735
- "is_win_license_mak": "True",
2736
- "is_win_server": "True",
2737
- "kernel": "windows",
2738
- "kernelmajversion": "6.1",
2739
- "kernelrelease": "6.1.7601",
2740
- "kernelversion": "6.1.7601",
2741
- "mco_confdir": "C:/ProgramData/PuppetLabs/mcollective/etc",
2742
- "meltdown": {
2743
- "CVE-2017-5753": {
2744
- "CVE": "2017-5753",
2745
- "description": "Spectre Variant 1",
2746
- "info": {
2747
- "hotfix_installed": true
2748
- },
2749
- "vulnerable": false
2750
- },
2751
- "CVE-2017-5754": {
2752
- "CVE": "2017-5754",
2753
- "description": "Spectre Variant 3 - also known as Meltdown",
2754
- "info": {
2755
- "hardware_support": false,
2756
- "hotfix_installed": true,
2757
- "hotfix_enabled": true,
2758
- "hardware_support_required": true
2759
- },
2760
- "vulnerable": false
2761
- },
2762
- "CVE-2017-5715": {
2763
- "CVE": "2017-5715",
2764
- "description": "Spectre Variant 2",
2765
- "info": {
2766
- "hardware_support": false,
2767
- "hotfix_installed": true,
2768
- "hotfix_enabled": false,
2769
- "hotfix_disable_due_to_lack_of_hardware_support": true,
2770
- "hotfix_disable_via_system_policy": false
2771
- },
2772
- "vulnerable": true
2773
- }
2774
- },
2775
- "memory": {
2776
- "system": {
2777
- "available": "4.55 GiB",
2778
- "available_bytes": 4885966848,
2779
- "capacity": "43.12%",
2780
- "total": "8.00 GiB",
2781
- "total_bytes": 8589467648,
2782
- "used": "3.45 GiB",
2783
- "used_bytes": 3703500800
2784
- }
2785
- },
2786
- "networking": {
2787
- "domain": "hahosting.local",
2788
- "fqdn": "ASSWWEB061.hahosting.local",
2789
- "hostname": "ASSWWEB061",
2790
- "interfaces": {
2791
- "primary": {
2792
- "bindings": [
2793
- {
2794
- "address": "10.89.121.91",
2795
- "netmask": "255.255.252.0",
2796
- "network": "10.89.120.0"
2797
- },
2798
- {
2799
- "address": "10.89.121.92",
2800
- "netmask": "255.255.252.0",
2801
- "network": "10.89.120.0"
2802
- },
2803
- {
2804
- "address": "10.89.121.93",
2805
- "netmask": "255.255.252.0",
2806
- "network": "10.89.120.0"
2807
- },
2808
- {
2809
- "address": "10.89.121.94",
2810
- "netmask": "255.255.252.0",
2811
- "network": "10.89.120.0"
2812
- },
2813
- {
2814
- "address": "10.89.121.95",
2815
- "netmask": "255.255.252.0",
2816
- "network": "10.89.120.0"
2817
- },
2818
- {
2819
- "address": "10.89.121.96",
2820
- "netmask": "255.255.252.0",
2821
- "network": "10.89.120.0"
2822
- },
2823
- {
2824
- "address": "10.89.121.97",
2825
- "netmask": "255.255.252.0",
2826
- "network": "10.89.120.0"
2827
- },
2828
- {
2829
- "address": "10.89.121.98",
2830
- "netmask": "255.255.252.0",
2831
- "network": "10.89.120.0"
2832
- },
2833
- {
2834
- "address": "10.89.121.99",
2835
- "netmask": "255.255.252.0",
2836
- "network": "10.89.120.0"
2837
- }
2838
- ],
2839
- "bindings6": [
2840
- {
2841
- "address": "fe80::b9c2:f4b5:55d1:9d82%14",
2842
- "netmask": "ffff:ffff:ffff:ffff::",
2843
- "network": "fe80::%14"
2844
- }
2845
- ],
2846
- "ip": "10.89.121.91",
2847
- "ip6": "fe80::b9c2:f4b5:55d1:9d82%14",
2848
- "mac": "00:50:56:B7:51:FB",
2849
- "mtu": 1500,
2850
- "netmask": "255.255.252.0",
2851
- "netmask6": "ffff:ffff:ffff:ffff::",
2852
- "network": "10.89.120.0",
2853
- "network6": "fe80::%14"
2854
- }
2855
- },
2856
- "ip": "10.89.121.91",
2857
- "ip6": "fe80::b9c2:f4b5:55d1:9d82%14",
2858
- "mac": "00:50:56:B7:51:FB",
2859
- "mtu": 1500,
2860
- "netmask": "255.255.252.0",
2861
- "netmask6": "ffff:ffff:ffff:ffff::",
2862
- "network": "10.89.120.0",
2863
- "network6": "fe80::%14",
2864
- "primary": "primary"
2865
- },
2866
- "os": {
2867
- "architecture": "x64",
2868
- "family": "windows",
2869
- "hardware": "x86_64",
2870
- "name": "windows",
2871
- "release": {
2872
- "full": "2008 R2",
2873
- "major": "2008 R2"
2874
- },
2875
- "windows": {
2876
- "system32": "C:\\Windows\\system32"
2877
- }
2878
- },
2879
- "package_provider": "windows",
2880
- "path": "C:\\Program Files\\Puppet Labs\\Puppet\\puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\facter\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\hiera\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\mcollective\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\ruby\\bin;C:\\Program Files\\Puppet Labs\\Puppet\\sys\\tools\\bin;%SystemRoot%\\system32\\WindowsPowerShell\\v1.0\\;C:\\ProgramData\\chocolatey\\bin;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\inetsrv;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Microsoft\\Web Platform Installer\\;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Program Files\\Puppet Labs\\Puppet\\bin",
2881
- "powershell_version": "5.1.14409.1005",
2882
- "processors": {
2883
- "count": 1,
2884
- "isa": "x64",
2885
- "models": [
2886
- "Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz"
2887
- ],
2888
- "physicalcount": 1
2889
- },
2890
- "puppet_agent_appdata": "C:\\ProgramData",
2891
- "puppet_agent_pid": 32428,
2892
- "puppet_client_datadir": "C:/ProgramData/PuppetLabs/puppet/var/client_data",
2893
- "puppet_confdir": "C:/ProgramData/PuppetLabs/puppet/etc",
2894
- "puppet_config": "C:/ProgramData/PuppetLabs/puppet/etc/puppet.conf",
2895
- "puppet_environmentpath": "C:/ProgramData/PuppetLabs/puppet/etc/environments",
2896
- "puppet_master_server": "winpuppet.notprod.away.blue",
2897
- "puppet_server": "winpuppet.notprod.away.blue",
2898
- "puppet_ssldir": "C:/ProgramData/PuppetLabs/puppet/etc/ssl",
2899
- "puppet_sslpaths": {
2900
- "privatedir": {
2901
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/private",
2902
- "path_exists": true
2903
- },
2904
- "privatekeydir": {
2905
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/private_keys",
2906
- "path_exists": true
2907
- },
2908
- "publickeydir": {
2909
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/public_keys",
2910
- "path_exists": true
2911
- },
2912
- "certdir": {
2913
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/certs",
2914
- "path_exists": true
2915
- },
2916
- "requestdir": {
2917
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/certificate_requests",
2918
- "path_exists": true
2919
- },
2920
- "hostcrl": {
2921
- "path": "C:/ProgramData/PuppetLabs/puppet/etc/ssl/crl.pem",
2922
- "path_exists": true
2923
- }
2924
- },
2925
- "puppet_stringify_facts": false,
2926
- "puppet_vardir": "C:/ProgramData/PuppetLabs/puppet/var",
2927
- "puppetversion": "5.5.7",
2928
- "ruby": {
2929
- "platform": "x64-mingw32",
2930
- "sitedir": "C:/Program Files/Puppet Labs/Puppet/sys/ruby/lib/ruby/site_ruby/2.4.0",
2931
- "version": "2.4.4"
2932
- },
2933
- "service_provider": "windows",
2934
- "system_uptime": {
2935
- "days": 151,
2936
- "hours": 3626,
2937
- "seconds": 13055438,
2938
- "uptime": "151 days"
2939
- },
2940
- "timezone": "Central Standard Time",
2941
- "vcsrepo_svn_ver": "",
2942
- "virtual": "vmware",
2943
- "windows_env": {
2944
- "ALLUSERSPROFILE": "C:\\ProgramData",
2945
- "APPDATA": "C:\\Users\\ejackson_sa\\AppData\\Roaming",
2946
- "COMMONPROGRAMFILES": "C:\\Program Files\\Common Files",
2947
- "COMMONPROGRAMFILES(X86)": "C:\\Program Files (x86)\\Common Files",
2948
- "HOMEDRIVE": "C:",
2949
- "HOMEPATH": "\\Users\\ejackson_sa",
2950
- "LOCALAPPDATA": "C:\\Users\\ejackson_sa\\AppData\\Local",
2951
- "PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL",
2952
- "PROCESSOR_IDENTIFIER": "Intel64 Family 6 Model 45 Stepping 2, GenuineIntel",
2953
- "PROCESSOR_LEVEL": "6",
2954
- "PROCESSOR_REVISION": "2d02",
2955
- "PROGRAMDATA": "C:\\ProgramData",
2956
- "PROGRAMFILES": "C:\\Program Files",
2957
- "PROGRAMFILES(X86)": "C:\\Program Files (x86)",
2958
- "PSMODULEPATH": "C:\\Users\\ejackson_sa\\Documents\\WindowsPowerShell\\Modules;C:\\Program Files\\WindowsPowerShell\\Modules;C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\",
2959
- "PUBLIC": "C:\\Users\\Public",
2960
- "SYSTEMDRIVE": "C:",
2961
- "SYSTEMROOT": "C:\\Windows",
2962
- "TEMP": "C:\\Users\\EJACKS~1\\AppData\\Local\\Temp\\11",
2963
- "TMP": "C:\\Users\\EJACKS~1\\AppData\\Local\\Temp\\11",
2964
- "USERPROFILE": "C:\\Users\\ejackson_sa",
2965
- "WINDIR": "C:\\Windows"
2966
- }
2967
- }