From b5002fee5c47448bc1ebb3850da479c0408b8d81 Mon Sep 17 00:00:00 2001 From: Adam Grare Date: Mon, 7 May 2018 12:24:36 -0400 Subject: [PATCH] Add resource_pools relationship collection --- .../inventory/collector/property_collector.rb | 1 + .../inventory/inventory_collections.rb | 10 +- .../vmware/infra_manager/inventory/parser.rb | 25 ++--- .../infra_manager/inventory/persister.rb | 8 +- .../infra_manager/inventory/collector_spec.rb | 4 +- .../infra_manager/inventory/collector.yml | 102 +++++++++--------- 6 files changed, 82 insertions(+), 68 deletions(-) diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/collector/property_collector.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/collector/property_collector.rb index 926ad5487..30aff642c 100644 --- a/app/models/manageiq/providers/vmware/infra_manager/inventory/collector/property_collector.rb +++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/collector/property_collector.rb @@ -28,6 +28,7 @@ module ManageIQ::Providers::Vmware::InfraManager::Inventory::Collector::Property "resourceConfig.memoryAllocation.reservation", "resourceConfig.memoryAllocation.shares.level", "resourceConfig.memoryAllocation.shares.shares", + "resourcePool", "snapshot", "summary.vm", "summary.config.annotation", diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/inventory_collections.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/inventory_collections.rb index 651cca636..e349dc2b5 100644 --- a/app/models/manageiq/providers/vmware/infra_manager/inventory/inventory_collections.rb +++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/inventory_collections.rb @@ -17,7 +17,7 @@ def vms_and_templates(extra_attributes = {}) attributes = { :model_class => ::VmOrTemplate, :association => :vms_and_templates, - :attributes_blacklist => %i(parent), + :attributes_blacklist => %i(parent resource_pool), :builder_params => { :ems_id => ->(persister) { persister.manager.id }, }, @@ -62,5 +62,13 @@ def guest_devices(extra_attributes = {}) attributes = {:parent_inventory_collections => [:vms_and_templates]} super(attributes.merge(extra_attributes)) end + + def parent_blue_folders(extra_attributes = {}) + relationships(:parent, :ems_metadata, :parent_blue_folders, extra_attributes) + end + + def vm_resource_pools(extra_attributes = {}) + relationships(:resource_pool, :ems_metadata, :vm_resource_pools, extra_attributes) + end end end diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb index 7c0ed87e8..4ce5fed5d 100644 --- a/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb +++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/parser.rb @@ -30,7 +30,7 @@ def parse_compute_resource(object, props) :ems_ref => object._ref, :uid_ems => object._ref, :name => CGI.unescape(props[:name]), - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } parse_compute_resource_summary(cluster_hash, props) @@ -51,7 +51,7 @@ def parse_datacenter(object, props) :uid_ems => object._ref, :type => "Datacenter", :name => CGI.unescape(props[:name]), - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } persister.ems_folders.build(dc_hash) @@ -63,7 +63,7 @@ def parse_datastore(object, props) storage_hash = { :ems_ref => object._ref, - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } parse_datastore_summary(storage_hash, props) @@ -84,7 +84,7 @@ def parse_distributed_virtual_switch(object, props) :uid_ems => object._ref, :type => type, :shared => true, - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } parse_dvs_config(switch_hash, props[:config]) @@ -105,7 +105,7 @@ def parse_folder(object, props) :uid_ems => object._ref, :type => "EmsFolder", :name => CGI.unescape(props[:name]), - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } persister.ems_folders.build(folder_hash) @@ -117,7 +117,7 @@ def parse_host_system(object, props) host_hash = { :ems_ref => object._ref, - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } parse_host_system_config(host_hash, props) @@ -184,7 +184,7 @@ def parse_resource_pool(object, props) :uid_ems => object._ref, :name => CGI.unescape(props[:name]), :vapp => object.kind_of?(RbVmomi::VIM::VirtualApp), - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } parse_resource_pool_memory_allocation(rp_hash, props) @@ -206,7 +206,7 @@ def parse_storage_pod(object, props) :uid_ems => object._ref, :type => "StorageCluster", :name => CGI.unescape(name), - :parent => parse_parent(props[:parent]), + :parent => lazy_find_managed_object(props[:parent]), } persister.ems_folders.build(pod_hash) @@ -217,9 +217,10 @@ def parse_virtual_machine(object, props) return if props.nil? vm_hash = { - :ems_ref => object._ref, - :vendor => "vmware", - :parent => parse_parent(props[:parent]), + :ems_ref => object._ref, + :vendor => "vmware", + :parent => lazy_find_managed_object(props[:parent]), + :resource_pool => lazy_find_managed_object(props[:resourcePool]), } parse_virtual_machine_config(vm_hash, props) @@ -234,7 +235,7 @@ def parse_virtual_machine(object, props) parse_virtual_machine_snapshots(vm, props) end - def parse_parent(managed_object) + def lazy_find_managed_object(managed_object) return if managed_object.nil? parent_collection = persister.vim_class_to_collection(managed_object) diff --git a/app/models/manageiq/providers/vmware/infra_manager/inventory/persister.rb b/app/models/manageiq/providers/vmware/infra_manager/inventory/persister.rb index a5131dd0c..e5536fe15 100644 --- a/app/models/manageiq/providers/vmware/infra_manager/inventory/persister.rb +++ b/app/models/manageiq/providers/vmware/infra_manager/inventory/persister.rb @@ -10,8 +10,12 @@ def initialize_inventory_collections end add_inventory_collection( - default_inventory_collections.relationships( - :parent, :ems_metadata, :relationships, :dependency_attributes => dependency_attributes + default_inventory_collections.parent_blue_folders(:dependency_attributes => dependency_attributes) + ) + + add_inventory_collection( + default_inventory_collections.vm_resource_pools( + :dependency_attributes => {:vms_and_templates => [collections[:vms_and_templates]]} ) ) end diff --git a/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb b/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb index 32f75a56a..d1d1010c6 100644 --- a/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb +++ b/spec/models/manageiq/providers/vmware/infra_manager/inventory/collector_spec.rb @@ -344,13 +344,13 @@ def assert_specific_vm # TODO: expect(vm.ems_cluster).not_to be_nil expect(vm.host).not_to be_nil - expect(vm.host.ems_ref).to eq("host-16") + expect(vm.host.ems_ref).to eq("host-17") expect(vm.parent_blue_folder).not_to be_nil expect(vm.parent_blue_folder.ems_ref).to eq("group-v3") # TODO: expect(vm.parent_yellow_folder).not_to be_nil - # TODO: expect(vm.parent_resource_pool).not_to be_nil + expect(vm.parent_resource_pool).not_to be_nil end end end diff --git a/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector.yml b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector.yml index a668215b4..dc71ef0af 100644 --- a/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector.yml +++ b/spec/vcr_cassettes/manageiq/providers/vmware/infra_manager/inventory/collector.yml @@ -25,9 +25,9 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:53 GMT + - Mon, 7 May 2018 16:15:24 GMT Set-Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Cache-Control: - no-cache @@ -52,7 +52,7 @@ http_interactions: http_version: - recorded_at: Thu, 03 May 2018 18:07:53 GMT + recorded_at: Mon, 07 May 2018 16:15:24 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -67,7 +67,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -81,7 +81,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:53 GMT + - Mon, 7 May 2018 16:15:24 GMT Cache-Control: - no-cache Connection: @@ -105,7 +105,7 @@ http_interactions: http_version: - recorded_at: Thu, 03 May 2018 18:07:53 GMT + recorded_at: Mon, 07 May 2018 16:15:24 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -120,7 +120,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -134,7 +134,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:54 GMT + - Mon, 7 May 2018 16:15:25 GMT Cache-Control: - no-cache Connection: @@ -144,7 +144,7 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '787' + - '785' body: encoding: UTF-8 string: |- @@ -154,11 +154,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 52f5b977-31c1-b169-fbc8-0d9022950ef6rootroot 2018-05-03T18:07:54.049172Z2018-05-03T18:07:54.049172Zenenfalse10.17.177.86Ruby0 + 52565381-9db9-db6c-5653-c5268d27fb19rootroot 2018-05-07T16:15:25.74981Z2018-05-07T16:15:25.74981Zenenfalse10.17.177.86Ruby0 http_version: - recorded_at: Thu, 03 May 2018 18:07:54 GMT + recorded_at: Mon, 07 May 2018 16:15:25 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -168,7 +168,7 @@ http_interactions: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><_this type="PropertyCollector">propertyCollectorManagedEntity0nameparentVirtualMachine0availableFieldconfig.cpuAffinity.affinitySetconfig.cpuHotAddEnabledconfig.cpuHotRemoveEnabledconfig.defaultPowerOps.standbyActionconfig.hardware.deviceconfig.hardware.numCoresPerSocketconfig.hotPlugMemoryIncrementSizeconfig.hotPlugMemoryLimitconfig.memoryHotAddEnabledconfig.versiondatastoreguest.netresourceConfig.cpuAllocation.expandableReservationresourceConfig.cpuAllocation.limitresourceConfig.cpuAllocation.reservationresourceConfig.cpuAllocation.shares.levelresourceConfig.cpuAllocation.shares.sharesresourceConfig.memoryAllocation.expandableReservationresourceConfig.memoryAllocation.limitresourceConfig.memoryAllocation.reservationresourceConfig.memoryAllocation.shares.levelresourceConfig.memoryAllocation.shares.sharessnapshotsummary.vmsummary.config.annotationsummary.config.ftInfo.instanceUuidssummary.config.guestFullNamesummary.config.guestIdsummary.config.memorySizeMBsummary.config.namesummary.config.numCpusummary.config.templatesummary.config.uuidsummary.config.vmPathNamesummary.customValuesummary.guest.hostNamesummary.guest.ipAddresssummary.guest.toolsStatussummary.runtime.bootTimesummary.runtime.connectionStatesummary.runtime.hostsummary.runtime.powerStatesummary.storage.unsharedsummary.storage.committedVirtualMachine0availableFieldconfig.cpuAffinity.affinitySetconfig.cpuHotAddEnabledconfig.cpuHotRemoveEnabledconfig.defaultPowerOps.standbyActionconfig.hardware.deviceconfig.hardware.numCoresPerSocketconfig.hotPlugMemoryIncrementSizeconfig.hotPlugMemoryLimitconfig.memoryHotAddEnabledconfig.versiondatastoreguest.netresourceConfig.cpuAllocation.expandableReservationresourceConfig.cpuAllocation.limitresourceConfig.cpuAllocation.reservationresourceConfig.cpuAllocation.shares.levelresourceConfig.cpuAllocation.shares.sharesresourceConfig.memoryAllocation.expandableReservationresourceConfig.memoryAllocation.limitresourceConfig.memoryAllocation.reservationresourceConfig.memoryAllocation.shares.levelresourceConfig.memoryAllocation.shares.sharesresourcePoolsnapshotsummary.vmsummary.config.annotationsummary.config.ftInfo.instanceUuidssummary.config.guestFullNamesummary.config.guestIdsummary.config.memorySizeMBsummary.config.namesummary.config.numCpusummary.config.templatesummary.config.uuidsummary.config.vmPathNamesummary.customValuesummary.guest.hostNamesummary.guest.ipAddresssummary.guest.toolsStatussummary.runtime.bootTimesummary.runtime.connectionStatesummary.runtime.hostsummary.runtime.powerStatesummary.storage.unsharedsummary.storage.committedComputeResource0hostresourcePoolClusterComputeResource0configuration.dasConfig.admissionControlPolicyconfiguration.dasConfig.admissionControlEnabledconfiguration.dasConfig.enabledconfiguration.dasConfig.failoverLevelconfiguration.drsConfig.defaultVmBehaviorconfiguration.drsConfig.enabledconfiguration.drsConfig.vmotionRatesummary.effectiveCpusummary.effectiveMemoryhostresourcePoolResourcePool0resourcePoolsummary.config.cpuAllocation.expandableReservationsummary.config.cpuAllocation.limitsummary.config.cpuAllocation.reservationsummary.config.cpuAllocation.shares.levelsummary.config.cpuAllocation.shares.sharessummary.config.memoryAllocation.expandableReservationsummary.config.memoryAllocation.limitsummary.config.memoryAllocation.reservationsummary.config.memoryAllocation.shares.levelsummary.config.memoryAllocation.shares.sharesvm - session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269 + session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6b http_version: - recorded_at: Thu, 03 May 2018 18:07:54 GMT + recorded_at: Mon, 07 May 2018 16:15:26 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -260,7 +260,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -274,7 +274,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:55 GMT + - Mon, 7 May 2018 16:15:28 GMT Cache-Control: - no-cache Connection: @@ -294,11 +294,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_1session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entergroup-d1nameassignDatacentersparentassignenterdatacenter-2datastoreFolderassigngroup-s5hostFolderassigngroup-h4nameassignDC0networkFolderassigngroup-n6parentassigngroup-d1vmFolderassigngroup-v3enterdatacenter-169datastoreFolderassigngroup-s172hostFolderassigngroup-h171nameassignDC1networkFolderassigngroup-n173parentassigngroup-d1vmFolderassigngroup-v170enterdatacenter-336datastoreFolderassigngroup-s339hostFolderassigngroup-h338nameassignDC2networkFolderassigngroup-n340parentassigngroup-d1vmFolderassigngroup-v337enterdatacenter-503datastoreFolderassigngroup-s506hostFolderassigngroup-h505nameassignDC3networkFolderassigngroup-n507parentassigngroup-d1vmFolderassigngroup-v504entergroup-v3nameassignvmparentassigndatacenter-2entergroup-n6nameassignnetworkparentassigndatacenter-2entergroup-h4nameassignhostparentassigndatacenter-2entergroup-s5nameassigndatastoreparentassigndatacenter-2entergroup-v170nameassignvmparentassigndatacenter-169entergroup-n173nameassignnetworkparentassigndatacenter-169entergroup-h171nameassignhostparentassigndatacenter-169entergroup-s172nameassigndatastoreparentassigndatacenter-169entergroup-v337nameassignvmparentassigndatacenter-336entergroup-n340nameassignnetworkparentassigndatacenter-336entergroup-h338nameassignhostparentassigndatacenter-336entergroup-s339nameassigndatastoreparentassigndatacenter-336entergroup-v504nameassignvmparentassigndatacenter-503entergroup-n507nameassignnetworkparentassigndatacenter-503entergroup-h505nameassignhostparentassigndatacenter-503entergroup-s506nameassigndatastoreparentassigndatacenter-503entervm-21availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse52ecccfa-2396-aa51-2e47-60937ea7a46f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:a2:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.600:50:56:ab:a2:e2true4000172.16.1.624dhcppreferrednameassignDC0_C0_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf630-7e83-c7dd-f226-56b41f3c50efsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.247179Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-21entervm-111availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse52c7d470-e262-cdc6-fc48-27db51bea4d2100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f1:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8500:50:56:ab:f1:6ctrue4000172.16.1.8524dhcppreferrednameassignDC0_C1_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1e21-6ef7-604f-473c-2b6e2d59b395summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.816814Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-111entervm-112availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse527fd92b-dfc9-3e4c-84b0-87079953915b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:72:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8600:50:56:ab:72:7btrue4000172.16.1.8624dhcppreferrednameassignDC0_C1_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be11a-cdab-5347-60bd-538dea90e77bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.838119Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-112entervm-29availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52073b25-c2e3-892e-23f7-000edc0d29bd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e5:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1300:50:56:ab:e5:6ftrue4000172.16.1.1324dhcppreferrednameassignDC0_C0_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf543-ae4e-e81c-edfc-50629b8c8310summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.239176Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-29entervm-30availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52c0aa9a-fc6b-2298-e491-a6cece3bc27d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f7:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1400:50:56:ab:f7:8dtrue4000172.16.1.1424dhcppreferrednameassignDC0_C0_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b128e-7f50-eedc-8e4a-06fc61123c3csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.24732Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-30entervm-113availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52c80d3d-5b17-dea7-d621-2adff6070260100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:2b:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8700:50:56:ab:2b:6atrue4000172.16.1.8724dhcppreferrednameassignDC0_C1_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b6a-c7b9-0af3-1647-9b5a5bd5f994summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.865248Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-113entervm-114availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse52ed6f31-0aa2-8c6a-411d-bb1fac806d88100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:6f:aafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8800:50:56:ab:6f:aatrue4000172.16.1.8824dhcppreferrednameassignDC0_C1_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b50c7-a447-b527-7dc4-8379ddd6eb25summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.892302Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-114entervm-62availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM6/DC0_C0_RP4_VM6.vmdkdatastore-15persistentfalsefalsefalse525b16a5-1149-f4b0-7e02-7faaac901c0d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:b6:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4300:50:56:ab:b6:e5true4000172.16.1.4324dhcppreferrednameassignDC0_C0_RP4_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7816-5e36-333a-2272-eb0ae55be303summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM6/DC0_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.895182Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-62entervm-63availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM7/DC0_C0_RP4_VM7.vmdkdatastore-15persistentfalsefalsefalse52ce4907-fe54-a94b-4386-119e27008fb0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:ec:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4400:50:56:ab:ec:22true4000172.16.1.4424dhcppreferrednameassignDC0_C0_RP4_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be1a9-30a2-30d9-1901-b91e3a42a839summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM7/DC0_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.929611Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-63entervm-126availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM1/DC0_C1_RP3_VM1.vmdkdatastore-15persistentfalsefalsefalse5223e1aa-1c65-f50b-68a0-52312536056a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f9:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9800:50:56:ab:f9:d1true4000172.16.1.9824dhcppreferrednameassignDC0_C1_RP3_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9bb6-b8b7-28d4-4b35-e008977f789dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM1/DC0_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.170131Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-126entervm-127availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM2/DC0_C1_RP3_VM2.vmdkdatastore-15persistentfalsefalsefalse525fed51-cf12-b839-a5d7-76c79bbd5df0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:37:51falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9900:50:56:ab:37:51true4000172.16.1.9924dhcppreferrednameassignDC0_C1_RP3_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4540-db2b-2a05-43fd-5484adc8a997summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM2/DC0_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.231965Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-127entervm-128availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM3/DC0_C1_RP3_VM3.vmdkdatastore-15persistentfalsefalsefalse523e1821-3f15-b1ad-5f1d-80a79ac8b459100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:78:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10000:50:56:ab:78:44true4000172.16.1.10024dhcppreferrednameassignDC0_C1_RP3_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9a4-73f2-d616-69a7-e7e4ea1a38ecsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM3/DC0_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.30653Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-128entervm-129availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM4/DC0_C1_RP3_VM4.vmdkdatastore-15persistentfalsefalsefalse5287efdc-ccb4-8c09-ccf6-db15e27e7ab4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1e:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10100:50:56:ab:1e:2etrue4000172.16.1.10124dhcppreferrednameassignDC0_C1_RP3_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2056-cff7-584b-a2d4-a96f53ece1e2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM4/DC0_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.371619Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-129entervm-56availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM0/DC0_C0_RP4_VM0.vmdkdatastore-15persistentfalsefalsefalse5235d6e6-c731-45c0-b5a0-849d6a99d6f7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1f:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3700:50:56:ab:1f:26true4000172.16.1.3724dhcppreferrednameassignDC0_C0_RP4_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc87-9340-9b9b-5b74-e3ae1d77510bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM0/DC0_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.633289Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-56entervm-57availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM1/DC0_C0_RP4_VM1.vmdkdatastore-15persistentfalsefalsefalse52d13376-96dc-2a29-d429-195c6d1b701b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:a6:53falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3800:50:56:ab:a6:53true4000172.16.1.3824dhcppreferrednameassignDC0_C0_RP4_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ed5-014a-9d77-08d9-4ceefa9220c2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM1/DC0_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.663057Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-57entervm-125availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM0/DC0_C1_RP3_VM0.vmdkdatastore-15persistentfalsefalsefalse52caed8a-c835-3c36-8414-516fa8b0ad66100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:3e:62falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9700:50:56:ab:3e:62true4000172.16.1.9724dhcppreferrednameassignDC0_C1_RP3_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcff2-a6f2-4b93-712f-15214a066ecfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM0/DC0_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.094474Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-125entervm-60availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM4/DC0_C0_RP4_VM4.vmdkdatastore-15persistentfalsefalsefalse528fd54f-6052-979f-82c2-aaef3cf42a6c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a3:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4100:50:56:ab:a3:c8true4000172.16.1.4124dhcppreferrednameassignDC0_C0_RP4_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9127-1604-4658-2b67-d2379f219eb5summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM4/DC0_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.81364Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-60entervm-61availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM5/DC0_C0_RP4_VM5.vmdkdatastore-15persistentfalsefalsefalse52e77926-8932-1457-d6cb-7e8dc81e6e04100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:35:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4200:50:56:ab:35:b4true4000172.16.1.4224dhcppreferrednameassignDC0_C0_RP4_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbbb0-938d-f836-0e42-be6c08ebb444summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM5/DC0_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.852715Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-61entervm-58availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM2/DC0_C0_RP4_VM2.vmdkdatastore-15persistentfalsefalsefalse5207f766-8744-0eea-3675-e8a6a572665a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9c:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3900:50:56:ab:9c:3atrue4000172.16.1.3924dhcppreferrednameassignDC0_C0_RP4_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd07-b805-fc08-596e-ea726f512cb4summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM2/DC0_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.721619Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-58entervm-59availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM3/DC0_C0_RP4_VM3.vmdkdatastore-15persistentfalsefalsefalse520eb41c-5580-a8d5-7a52-533fb8f87fa4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:4d:69falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4000:50:56:ab:4d:69true4000172.16.1.4024dhcppreferrednameassignDC0_C0_RP4_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b20f6-fa4a-768e-8a13-f96827c6f6e2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM3/DC0_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.752293Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-59entervm-130availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM5/DC0_C1_RP3_VM5.vmdkdatastore-15persistentfalsefalsefalse520b5868-5ecf-ec0b-054a-315eb1da4ba5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c6:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10200:50:56:ab:c6:ectrue4000172.16.1.10224dhcppreferrednameassignDC0_C1_RP3_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc6f5-fd3e-dd09-eb48-c4f08758b8dbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM5/DC0_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.396434Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-130entervm-131availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM6/DC0_C1_RP3_VM6.vmdkdatastore-15persistentfalsefalsefalse52c7fbe2-7855-548a-e8ad-f7496bc97197100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:93:33falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10300:50:56:ab:93:33true4000172.16.1.10324dhcppreferrednameassignDC0_C1_RP3_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd1b4-db56-596d-f73e-257cf2878301summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM6/DC0_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.428899Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-131entervm-132availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM7/DC0_C1_RP3_VM7.vmdkdatastore-15persistentfalsefalsefalse5230584b-2fac-423d-667b-8d6ad9a05d77100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:75:73falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10400:50:56:ab:75:73true4000172.16.1.10424dhcppreferrednameassignDC0_C1_RP3_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde9f-c1fb-9e6e-8a73-0bac831f9deasummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM7/DC0_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.516319Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-132entervm-107availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52dab7a1-6c3e-1f7b-fe00-a2c6213343b7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruefalse1003Assigned00:50:56:ab:c0:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8100:50:56:ab:c0:acfalse4000172.16.1.8124dhcppreferrednameassignDC0_C1_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b354b-fa50-b389-9618-5f33e2189fa9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.677318Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-107entervm-108availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52cbb773-8922-d3e1-aa59-bf4251b33089100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:19:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8200:50:56:ab:19:26true4000172.16.1.8224dhcppreferrednameassignDC0_C1_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b802a-33a6-6b17-7613-28b6f523383asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.73635Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-108entervm-109availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52dd94cc-add1-95f3-99f5-fc1fedb68dee100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c3:f9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8300:50:56:ab:c3:f9true4000172.16.1.8324dhcppreferrednameassignDC0_C1_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be028-98b7-0d55-a1df-65d09ee2473esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.771733Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-109entervm-110availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse522c30fb-013c-8930-17d6-36e709423b5e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:70:cffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8400:50:56:ab:70:cftrue4000172.16.1.8424dhcppreferrednameassignDC0_C1_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4b35-641f-b75f-f19c-f98ec8add3f3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.801095Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-110entervm-42availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM4/DC0_C0_RP2_VM4.vmdkdatastore-15persistentfalsefalsefalse5241617d-a761-91b6-235f-e8fcfcf4adf7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1c:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2500:50:56:ab:1c:c2true4000172.16.1.2524dhcppreferrednameassignDC0_C0_RP2_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34aa-053e-4db4-e85f-67adee2b6798summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM4/DC0_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.211236Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-42entervm-43availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM5/DC0_C0_RP2_VM5.vmdkdatastore-15persistentfalsefalsefalse524e6ec2-90f0-9d09-891f-c56918c83d5e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:35:58falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2600:50:56:ab:35:58true4000172.16.1.2624dhcppreferrednameassignDC0_C0_RP2_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bce73-344a-4372-a94e-f9a2bff35a5csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM5/DC0_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.240842Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-43entervm-44availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM6/DC0_C0_RP2_VM6.vmdkdatastore-15persistentfalsefalsefalse5275d0c9-620b-7efd-4080-0d25dc2268d1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:41:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2700:50:56:ab:41:26true4000172.16.1.2724dhcppreferrednameassignDC0_C0_RP2_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbdee-3165-5ea4-2898-baf691212c3csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM6/DC0_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.266539Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-44entervm-45availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM7/DC0_C0_RP2_VM7.vmdkdatastore-15persistentfalsefalsefalse52d36d29-ebdf-c364-87d3-8b168cbf281b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:12:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2800:50:56:ab:12:47true4000172.16.1.2824dhcppreferrednameassignDC0_C0_RP2_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be1d4-6a0b-f4cb-0908-d6ace000b409summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM7/DC0_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.28398Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-45entervm-105availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse528d661a-e8ce-743f-0407-4ee7d38a275a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:21:98falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8000:50:56:ab:21:98true4000172.16.1.8024dhcppreferrednameassignDC0_C1_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b13f8-0fe3-9212-76bc-8574851a4c5bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.254629Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-105entervm-104availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse526666f5-e460-02cd-262a-46a29624e79a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ef:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7900:50:56:ab:ef:2etrue4000172.16.1.7924dhcppreferrednameassignDC0_C1_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb423-85f3-fbf9-1735-ddef2ab1cd3dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.193761Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-104entervm-103availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse5225f2f8-a331-83b3-e0c4-cf7eb2ce4607100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:33:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7800:50:56:ab:33:fatrue4000172.16.1.7824dhcppreferrednameassignDC0_C1_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8bfb-3d0f-1225-a89a-79da96479878summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.15336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-103entervm-90availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM7/DC0_C0_RP7_VM7.vmdkdatastore-15persistentfalsefalsefalse52d9eb51-9d90-c97b-b68d-d8505b20259c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:23:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6800:50:56:ab:23:1atrue4000172.16.1.6824dhcppreferrednameassignDC0_C0_RP7_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf87d-210c-c20b-83cf-be99c1cdb525summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM7/DC0_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.225221Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-90entervm-102availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse5276d2de-41d2-1977-b228-b39664b79c73100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:93:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7700:50:56:ab:93:b4true4000172.16.1.7724dhcppreferrednameassignDC0_C1_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b20cc-49c3-82e1-6b95-ab590b6b4ef2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.120428Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-102entervm-89availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM6/DC0_C0_RP7_VM6.vmdkdatastore-15persistentfalsefalsefalse52cfc183-3833-f8e2-95b9-34184625bf42100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a2:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6700:50:56:ab:a2:d1true4000172.16.1.6724dhcppreferrednameassignDC0_C0_RP7_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb0e3-1d36-e0e0-b468-1098376cfbe0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM6/DC0_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.187482Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-89entervm-101availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse5228eb58-e72d-b17d-5f19-734881a100e9100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:cb:aefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7600:50:56:ab:cb:aetrue4000172.16.1.7624dhcppreferrednameassignDC0_C1_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b87e2-e021-07ad-99c1-a11e4da852adsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.074691Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-101entervm-88availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM5/DC0_C0_RP7_VM5.vmdkdatastore-15persistentfalsefalsefalse524eb055-fabd-9b57-15b4-1268ba396bde100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:fe:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6600:50:56:ab:fe:a1true4000172.16.1.6624dhcppreferrednameassignDC0_C0_RP7_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bea61-58a4-fb5e-0b78-f27745d31befsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM5/DC0_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.146516Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-88entervm-100availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52ba2494-4caa-b2ef-f666-5a49b9a24aa1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c1:a0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7500:50:56:ab:c1:a0true4000172.16.1.7524dhcppreferrednameassignDC0_C1_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb559-f515-f1a7-e0f4-be53cee33755summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.045317Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-100entervm-87availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM4/DC0_C0_RP7_VM4.vmdkdatastore-15persistentfalsefalsefalse52932119-4351-75e8-f4e9-63127832efab100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ed:e6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6500:50:56:ab:ed:e6true4000172.16.1.6524dhcppreferrednameassignDC0_C0_RP7_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bea05-cf8c-4d18-ea55-e11922cedd8csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM4/DC0_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.106046Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-87entervm-99availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse526dfd9c-cc93-ae87-8907-abb6d12fcd6f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:55:0dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7400:50:56:ab:55:0dtrue4000172.16.1.7424dhcppreferrednameassignDC0_C1_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b63b8-398c-01b3-1e38-497adde2cc54summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.021779Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-99entervm-98availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse528b2017-ed97-c2eb-c475-19c56a70e39d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:3f:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7300:50:56:ab:3f:77true4000172.16.1.7324dhcppreferrednameassignDC0_C1_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b432e-5bda-e85f-60af-fc83b4f6e0d4summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:42.994655Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-98entervm-47availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM0/DC0_C0_RP3_VM0.vmdkdatastore-15persistentfalsefalsefalse529055a1-8501-2208-5da8-7657239ab26c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:20:bdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2900:50:56:ab:20:bdtrue4000172.16.1.2924dhcppreferrednameassignDC0_C0_RP3_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0890-0a29-ae39-756d-f1101c5706b3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM0/DC0_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.388548Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-47entervm-72availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM7/DC0_C0_RP5_VM7.vmdkdatastore-15persistentfalsefalsefalse52037145-6314-f0f5-c580-28e1b37207be100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:13:bcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5200:50:56:ab:13:bctrue4000172.16.1.5224dhcppreferrednameassignDC0_C0_RP5_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b445e-acc3-b905-7234-a37975537b14summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM7/DC0_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.088386Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-72entervm-71availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM6/DC0_C0_RP5_VM6.vmdkdatastore-15persistentfalsefalsefalse524e0b60-279b-41ff-3433-296f62896a9c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ef:9cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5100:50:56:ab:ef:9ctrue4000172.16.1.5124dhcppreferrednameassignDC0_C0_RP5_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8d40-27e1-163f-d038-909fdc0ef761summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM6/DC0_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.076862Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-71entervm-53availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM6/DC0_C0_RP3_VM6.vmdkdatastore-15persistentfalsefalsefalse52c16b1b-7d2e-869a-fdbd-87d38b8a135e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:88:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3500:50:56:ab:88:84true4000172.16.1.3524dhcppreferrednameassignDC0_C0_RP3_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be9f1-c06d-f3ce-a833-e7a54e4c1f06summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM6/DC0_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.485602Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-53entervm-159availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM7/DC0_C1_RP6_VM7.vmdkdatastore-15persistentfalsefalsefalse5257b19f-c52e-d8e2-0ccc-e2005aec5949100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:68:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12800:50:56:ab:68:ddtrue4000172.16.1.12824dhcppreferrednameassignDC0_C1_RP6_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc96e-36f4-3089-67ff-3a10577c5396summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM7/DC0_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.657789Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-159entervm-168availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM7/DC0_C1_RP7_VM7.vmdkdatastore-15persistentfalsefalsefalse52fe6764-0a21-6b11-6e09-cd18548658a5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:17:40falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13600:50:56:ab:17:40true4000172.16.1.13624dhcppreferrednameassignDC0_C1_RP7_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb349-c219-0966-0d09-cfcb68430bdcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM7/DC0_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.841774Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-168entervm-70availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM5/DC0_C0_RP5_VM5.vmdkdatastore-15persistentfalsefalsefalse52759268-5947-2127-3870-8612fe80f192100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:33:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5000:50:56:ab:33:d1true4000172.16.1.5024dhcppreferrednameassignDC0_C0_RP5_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ec9-ded2-e6fc-bcee-9f9f5e477e8bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM5/DC0_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.064928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-70entervm-52availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM5/DC0_C0_RP3_VM5.vmdkdatastore-15persistentfalsefalsefalse5237b111-bebb-3cac-0d99-4d447b922baa100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:34:3ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3400:50:56:ab:34:3ftrue4000172.16.1.3424dhcppreferrednameassignDC0_C0_RP3_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b91c4-5946-ead0-6012-a5e9fea5c5bcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM5/DC0_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.473124Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-52entervm-158availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM6/DC0_C1_RP6_VM6.vmdkdatastore-15persistentfalsefalsefalse52f7062f-19ad-00e3-4962-257578a07c12100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:06:defalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12700:50:56:ab:06:detrue4000172.16.1.12724dhcppreferrednameassignDC0_C1_RP6_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd1b4-4856-e3f6-236c-63f58ad471dfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM6/DC0_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.619751Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-158entervm-69availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM4/DC0_C0_RP5_VM4.vmdkdatastore-15persistentfalsefalsefalse52fdee29-a43c-aa05-69b3-9cf2bc820e86100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:09:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4900:50:56:ab:09:09true4000172.16.1.4924dhcppreferrednameassignDC0_C0_RP5_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b679e-b2d4-1ddf-3530-6cfed2b09ca5summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM4/DC0_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.051261Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-69entervm-157availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM5/DC0_C1_RP6_VM5.vmdkdatastore-15persistentfalsefalsefalse52fd77a1-008e-1fc0-a7a7-0a6b22a01dbd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:7f:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12600:50:56:ab:7f:e7true4000172.16.1.12624dhcppreferrednameassignDC0_C1_RP6_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3271-745f-1405-a835-cf699f5eb978summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM5/DC0_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.568721Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-157entervm-68availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM3/DC0_C0_RP5_VM3.vmdkdatastore-15persistentfalsefalsefalse52f51da8-1401-fcf4-fa8e-88577e144894100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:5a:c0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4800:50:56:ab:5a:c0true4000172.16.1.4824dhcppreferrednameassignDC0_C0_RP5_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be7d7-94d1-b0ed-b362-3b5808d41a54summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM3/DC0_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.037117Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-68entervm-54availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM7/DC0_C0_RP3_VM7.vmdkdatastore-15persistentfalsefalsefalse52147929-9f01-9dd0-ff70-c4f76f8d4d0b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:1d:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3600:50:56:ab:1d:8dtrue4000172.16.1.3624dhcppreferrednameassignDC0_C0_RP3_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b86c7-e447-d19a-6474-21ef0214437asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM7/DC0_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.494922Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-54entervm-156availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM4/DC0_C1_RP6_VM4.vmdkdatastore-15persistentfalsefalsefalse52052fda-360e-0855-41ee-927c244ea398100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:b0:01falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12500:50:56:ab:b0:01true4000172.16.1.12524dhcppreferrednameassignDC0_C1_RP6_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b03d8-e81a-9d85-6f25-a9da5458c430summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM4/DC0_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.513938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-156entervm-67availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM2/DC0_C0_RP5_VM2.vmdkdatastore-15persistentfalsefalsefalse528d989c-3eaa-b315-2f7f-03a5dfd8a526100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ce:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4700:50:56:ab:ce:3atrue4000172.16.1.4724dhcppreferrednameassignDC0_C0_RP5_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8070-d196-fd91-8c4a-ba90ad02c81esummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM2/DC0_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.020495Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-67entervm-49availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM2/DC0_C0_RP3_VM2.vmdkdatastore-15persistentfalsefalsefalse52e02780-d4e2-7063-e183-ad5ece718eaf100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:d6:dbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3100:50:56:ab:d6:dbtrue4000172.16.1.3124dhcppreferrednameassignDC0_C0_RP3_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b60e6-b6ec-0348-f9da-4bf95f3acaa0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM2/DC0_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.424929Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-49entervm-164availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM3/DC0_C1_RP7_VM3.vmdkdatastore-15persistentfalsefalsefalse52a5cb50-179c-89e6-555a-3b5e5202478e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:0d:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13200:50:56:ab:0d:7ftrue4000172.16.1.13224dhcppreferrednameassignDC0_C1_RP7_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3663-dddf-981e-2c61-7077ba6d7f85summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM3/DC0_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.723158Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-164entervm-66availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM1/DC0_C0_RP5_VM1.vmdkdatastore-15persistentfalsefalsefalse52792bb4-3622-666d-e01e-6298c9154823100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:06:46falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4600:50:56:ab:06:46true4000172.16.1.4624dhcppreferrednameassignDC0_C0_RP5_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34a2-e625-1d21-2299-adf3990af0d6summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM1/DC0_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.002125Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-66entervm-48availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM1/DC0_C0_RP3_VM1.vmdkdatastore-15persistentfalsefalsefalse52a06617-3490-d882-39b7-feb0641fb514100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c0:8ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3000:50:56:ab:c0:8ftrue4000172.16.1.3024dhcppreferrednameassignDC0_C0_RP3_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b14c3-f8ec-80ea-4da9-ccd379fe3070summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM1/DC0_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.406589Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-48entervm-165availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM4/DC0_C1_RP7_VM4.vmdkdatastore-15persistentfalsefalsefalse5247aeab-185e-6118-035a-b6b510b9889a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f4:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13300:50:56:ab:f4:78true4000172.16.1.13324dhcppreferrednameassignDC0_C1_RP7_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b395e-8103-9968-11ec-e860647818b0summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM4/DC0_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.75237Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-165entervm-65availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM0/DC0_C0_RP5_VM0.vmdkdatastore-15persistentfalsefalsefalse52c68e28-bc00-ad36-4026-7a63a4571bc5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9a:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4500:50:56:ab:9a:c6true4000172.16.1.4524dhcppreferrednameassignDC0_C0_RP5_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9956-72dc-6b66-7abc-a46b8999630dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM0/DC0_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:31.983066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-65entervm-51availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM4/DC0_C0_RP3_VM4.vmdkdatastore-15persistentfalsefalsefalse528cf21d-63be-bd58-19e5-512207da7e02100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c6:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3300:50:56:ab:c6:23true4000172.16.1.3324dhcppreferrednameassignDC0_C0_RP3_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2bcc-0561-1a27-457c-4e8de989fad3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM4/DC0_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.458374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-51entervm-166availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM5/DC0_C1_RP7_VM5.vmdkdatastore-15persistentfalsefalsefalse52c002c1-d21a-ce7f-6627-9e77dab19dcd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:2e:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13400:50:56:ab:2e:e8true4000172.16.1.13424dhcppreferrednameassignDC0_C1_RP7_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b302d-6b60-af38-40ee-006b0712555bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM5/DC0_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.782527Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-166entervm-50availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM3/DC0_C0_RP3_VM3.vmdkdatastore-15persistentfalsefalsefalse52ccd686-c03e-4d50-802c-4f4e5ec991b6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:6e:6efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3200:50:56:ab:6e:6etrue4000172.16.1.3224dhcppreferrednameassignDC0_C0_RP3_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb4fb-f0fa-8df9-b27d-a147e901d96fsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM3/DC0_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.44177Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-50entervm-137availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM3/DC0_C1_RP4_VM3.vmdkdatastore-15persistentfalsefalsefalse52916655-d0e6-eced-e1b8-413cb24681f8100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:86:74falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10800:50:56:ab:86:74true4000172.16.1.10824dhcppreferrednameassignDC0_C1_RP4_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b05dc-baff-058b-b327-7c5c93b52340summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM3/DC0_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.843058Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-137entervm-167availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM6/DC0_C1_RP7_VM6.vmdkdatastore-15persistentfalsefalsefalse524bf1c7-88f8-cea8-a00b-356f007ce331100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:33:05falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13500:50:56:ab:33:05true4000172.16.1.13524dhcppreferrednameassignDC0_C1_RP7_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9014-cf86-82f9-2735-2d99705be9absummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM6/DC0_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.808771Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-167entervm-38availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM0/DC0_C0_RP2_VM0.vmdkdatastore-15persistentfalsefalsefalse523f9ae2-c8c8-c362-fe34-5a1906f3f99d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:79:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2100:50:56:ab:79:c7true4000172.16.1.2124dhcppreferrednameassignDC0_C0_RP2_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6670-f6d7-5752-dff9-e8705f3db2dfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM0/DC0_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.093766Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-38entervm-136availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM2/DC0_C1_RP4_VM2.vmdkdatastore-15persistentfalsefalsefalse52c3d9ee-520d-d601-4c1e-ef9545e3a1a1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:33:1efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10700:50:56:ab:33:1etrue4000172.16.1.10724dhcppreferrednameassignDC0_C1_RP4_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfbda-fe4d-bb63-dcda-fafd4f493076summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM2/DC0_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.812089Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-136entervm-39availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM1/DC0_C0_RP2_VM1.vmdkdatastore-15persistentfalsefalsefalse52ba58c4-e13c-040f-e525-a7e482ed9b2e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:e3:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2200:50:56:ab:e3:0atrue4000172.16.1.2224dhcppreferrednameassignDC0_C0_RP2_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0822-6de8-fba4-ec4f-5fb6f87fe4a1summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM1/DC0_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.118104Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-39entervm-139availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM5/DC0_C1_RP4_VM5.vmdkdatastore-15persistentfalsefalsefalse52aeae5a-00d5-f15b-457e-75f1d017d6a3100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:9a:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11000:50:56:ab:9a:ebtrue4000172.16.1.11024dhcppreferrednameassignDC0_C1_RP4_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5d0b-a389-45bb-4612-2ed887da5527summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM5/DC0_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.928792Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-139entervm-161availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM0/DC0_C1_RP7_VM0.vmdkdatastore-15persistentfalsefalsefalse523238d3-e6bf-be3b-e8f0-0a8c2bfed8fd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:5d:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12900:50:56:ab:5d:eatrue4000172.16.1.12924dhcppreferrednameassignDC0_C1_RP7_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0225-0f63-9fd5-d6a8-12943ea14776summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM0/DC0_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.676924Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-161entervm-40availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM2/DC0_C0_RP2_VM2.vmdkdatastore-15persistentfalsefalsefalse52448da4-cf6a-56d5-62a0-c947f74eecfe100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:cc:80falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2300:50:56:ab:cc:80true4000172.16.1.2324dhcppreferrednameassignDC0_C0_RP2_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be2b7-0a79-72d6-9c28-1264cce499f8summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM2/DC0_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.159864Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-40entervm-138availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM4/DC0_C1_RP4_VM4.vmdkdatastore-15persistentfalsefalsefalse525c28eb-f072-6b8b-cf75-a61edec347ca100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:19:5afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10900:50:56:ab:19:5atrue4000172.16.1.10924dhcppreferrednameassignDC0_C1_RP4_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3854-a30e-b1d5-9b92-776abbdfa39asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM4/DC0_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.878946Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-138entervm-162availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM1/DC0_C1_RP7_VM1.vmdkdatastore-15persistentfalsefalsefalse5245192b-ed9a-1d8b-fd67-5b62ba2545f5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:65:edfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13000:50:56:ab:65:edtrue4000172.16.1.13024dhcppreferrednameassignDC0_C1_RP7_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b38d2-56cb-4436-02a6-3d61358496e0summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM1/DC0_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.691481Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-162entervm-41availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM3/DC0_C0_RP2_VM3.vmdkdatastore-15persistentfalsefalsefalse523efe49-c009-7453-6e23-3eebb7efab8c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:84:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2400:50:56:ab:84:32true4000172.16.1.2424dhcppreferrednameassignDC0_C0_RP2_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bac5f-11c2-7f13-f93f-a69006048daasummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM3/DC0_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.1917Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-41entervm-141availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM7/DC0_C1_RP4_VM7.vmdkdatastore-15persistentfalsefalsefalse528aee3a-1bc3-355f-030d-a4f3f29a9dff100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f0:0cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11200:50:56:ab:f0:0ctrue4000172.16.1.11224dhcppreferrednameassignDC0_C1_RP4_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7f80-639c-859c-6d78-3d763f764bf3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM7/DC0_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:55.025337Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-141true + 0_1session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentergroup-d1nameassignDatacentersparentassignenterdatacenter-2datastoreFolderassigngroup-s5hostFolderassigngroup-h4nameassignDC0networkFolderassigngroup-n6parentassigngroup-d1vmFolderassigngroup-v3enterdatacenter-169datastoreFolderassigngroup-s172hostFolderassigngroup-h171nameassignDC1networkFolderassigngroup-n173parentassigngroup-d1vmFolderassigngroup-v170enterdatacenter-336datastoreFolderassigngroup-s339hostFolderassigngroup-h338nameassignDC2networkFolderassigngroup-n340parentassigngroup-d1vmFolderassigngroup-v337enterdatacenter-503datastoreFolderassigngroup-s506hostFolderassigngroup-h505nameassignDC3networkFolderassigngroup-n507parentassigngroup-d1vmFolderassigngroup-v504entergroup-v3nameassignvmparentassigndatacenter-2entergroup-n6nameassignnetworkparentassigndatacenter-2entergroup-h4nameassignhostparentassigndatacenter-2entergroup-s5nameassigndatastoreparentassigndatacenter-2entergroup-v170nameassignvmparentassigndatacenter-169entergroup-n173nameassignnetworkparentassigndatacenter-169entergroup-h171nameassignhostparentassigndatacenter-169entergroup-s172nameassigndatastoreparentassigndatacenter-169entergroup-v337nameassignvmparentassigndatacenter-336entergroup-n340nameassignnetworkparentassigndatacenter-336entergroup-h338nameassignhostparentassigndatacenter-336entergroup-s339nameassigndatastoreparentassigndatacenter-336entergroup-v504nameassignvmparentassigndatacenter-503entergroup-n507nameassignnetworkparentassigndatacenter-503entergroup-h505nameassignhostparentassigndatacenter-503entergroup-s506nameassigndatastoreparentassigndatacenter-503entervm-21availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse52ecccfa-2396-aa51-2e47-60937ea7a46f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:a2:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.600:50:56:ab:a2:e2true4000172.16.1.624dhcppreferrednameassignDC0_C0_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf630-7e83-c7dd-f226-56b41f3c50efsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM1/DC0_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.247179Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-21entervm-111availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse52c7d470-e262-cdc6-fc48-27db51bea4d2100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f1:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8500:50:56:ab:f1:6ctrue4000172.16.1.8524dhcppreferrednameassignDC0_C1_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1e21-6ef7-604f-473c-2b6e2d59b395summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM4/DC0_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.816814Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-111entervm-112availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse527fd92b-dfc9-3e4c-84b0-87079953915b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:72:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8600:50:56:ab:72:7btrue4000172.16.1.8624dhcppreferrednameassignDC0_C1_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be11a-cdab-5347-60bd-538dea90e77bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM5/DC0_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.838119Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-112entervm-29availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52073b25-c2e3-892e-23f7-000edc0d29bd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e5:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1300:50:56:ab:e5:6ftrue4000172.16.1.1324dhcppreferrednameassignDC0_C0_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf543-ae4e-e81c-edfc-50629b8c8310summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM0/DC0_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.239176Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-29entervm-30availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52c0aa9a-fc6b-2298-e491-a6cece3bc27d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f7:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1400:50:56:ab:f7:8dtrue4000172.16.1.1424dhcppreferrednameassignDC0_C0_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b128e-7f50-eedc-8e4a-06fc61123c3csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM1/DC0_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.24732Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-30entervm-113availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse52c80d3d-5b17-dea7-d621-2adff6070260100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:2b:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8700:50:56:ab:2b:6atrue4000172.16.1.8724dhcppreferrednameassignDC0_C1_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b6a-c7b9-0af3-1647-9b5a5bd5f994summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM6/DC0_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.865248Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-113entervm-114availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse52ed6f31-0aa2-8c6a-411d-bb1fac806d88100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:6f:aafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8800:50:56:ab:6f:aatrue4000172.16.1.8824dhcppreferrednameassignDC0_C1_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b50c7-a447-b527-7dc4-8379ddd6eb25summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM7/DC0_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.892302Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-114entervm-62availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM6/DC0_C0_RP4_VM6.vmdkdatastore-15persistentfalsefalsefalse525b16a5-1149-f4b0-7e02-7faaac901c0d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:b6:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4300:50:56:ab:b6:e5true4000172.16.1.4324dhcppreferrednameassignDC0_C0_RP4_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7816-5e36-333a-2272-eb0ae55be303summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM6/DC0_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.895182Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-62entervm-63availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM7/DC0_C0_RP4_VM7.vmdkdatastore-15persistentfalsefalsefalse52ce4907-fe54-a94b-4386-119e27008fb0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:ec:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4400:50:56:ab:ec:22true4000172.16.1.4424dhcppreferrednameassignDC0_C0_RP4_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be1a9-30a2-30d9-1901-b91e3a42a839summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM7/DC0_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.929611Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-63entervm-126availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM1/DC0_C1_RP3_VM1.vmdkdatastore-15persistentfalsefalsefalse5223e1aa-1c65-f50b-68a0-52312536056a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f9:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9800:50:56:ab:f9:d1true4000172.16.1.9824dhcppreferrednameassignDC0_C1_RP3_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9bb6-b8b7-28d4-4b35-e008977f789dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM1/DC0_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.170131Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-126entervm-127availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM2/DC0_C1_RP3_VM2.vmdkdatastore-15persistentfalsefalsefalse525fed51-cf12-b839-a5d7-76c79bbd5df0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:37:51falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9900:50:56:ab:37:51true4000172.16.1.9924dhcppreferrednameassignDC0_C1_RP3_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4540-db2b-2a05-43fd-5484adc8a997summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM2/DC0_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.231965Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-127entervm-128availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM3/DC0_C1_RP3_VM3.vmdkdatastore-15persistentfalsefalsefalse523e1821-3f15-b1ad-5f1d-80a79ac8b459100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:78:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10000:50:56:ab:78:44true4000172.16.1.10024dhcppreferrednameassignDC0_C1_RP3_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9a4-73f2-d616-69a7-e7e4ea1a38ecsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM3/DC0_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.30653Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-128entervm-129availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM4/DC0_C1_RP3_VM4.vmdkdatastore-15persistentfalsefalsefalse5287efdc-ccb4-8c09-ccf6-db15e27e7ab4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1e:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10100:50:56:ab:1e:2etrue4000172.16.1.10124dhcppreferrednameassignDC0_C1_RP3_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2056-cff7-584b-a2d4-a96f53ece1e2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM4/DC0_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.371619Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-129entervm-56availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM0/DC0_C0_RP4_VM0.vmdkdatastore-15persistentfalsefalsefalse5235d6e6-c731-45c0-b5a0-849d6a99d6f7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1f:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3700:50:56:ab:1f:26true4000172.16.1.3724dhcppreferrednameassignDC0_C0_RP4_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc87-9340-9b9b-5b74-e3ae1d77510bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM0/DC0_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.633289Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-56entervm-57availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM1/DC0_C0_RP4_VM1.vmdkdatastore-15persistentfalsefalsefalse52d13376-96dc-2a29-d429-195c6d1b701b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:a6:53falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3800:50:56:ab:a6:53true4000172.16.1.3824dhcppreferrednameassignDC0_C0_RP4_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ed5-014a-9d77-08d9-4ceefa9220c2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM1/DC0_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.663057Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-57entervm-125availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM0/DC0_C1_RP3_VM0.vmdkdatastore-15persistentfalsefalsefalse52caed8a-c835-3c36-8414-516fa8b0ad66100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:3e:62falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9700:50:56:ab:3e:62true4000172.16.1.9724dhcppreferrednameassignDC0_C1_RP3_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcff2-a6f2-4b93-712f-15214a066ecfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM0/DC0_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.094474Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-125entervm-60availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM4/DC0_C0_RP4_VM4.vmdkdatastore-15persistentfalsefalsefalse528fd54f-6052-979f-82c2-aaef3cf42a6c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a3:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4100:50:56:ab:a3:c8true4000172.16.1.4124dhcppreferrednameassignDC0_C0_RP4_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9127-1604-4658-2b67-d2379f219eb5summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM4/DC0_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.81364Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-60entervm-61availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM5/DC0_C0_RP4_VM5.vmdkdatastore-15persistentfalsefalsefalse52e77926-8932-1457-d6cb-7e8dc81e6e04100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:35:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4200:50:56:ab:35:b4true4000172.16.1.4224dhcppreferrednameassignDC0_C0_RP4_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbbb0-938d-f836-0e42-be6c08ebb444summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM5/DC0_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.852715Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-61entervm-58availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM2/DC0_C0_RP4_VM2.vmdkdatastore-15persistentfalsefalsefalse5207f766-8744-0eea-3675-e8a6a572665a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9c:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3900:50:56:ab:9c:3atrue4000172.16.1.3924dhcppreferrednameassignDC0_C0_RP4_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd07-b805-fc08-596e-ea726f512cb4summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM2/DC0_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.721619Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-58entervm-59availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP4_VM3/DC0_C0_RP4_VM3.vmdkdatastore-15persistentfalsefalsefalse520eb41c-5580-a8d5-7a52-533fb8f87fa4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:4d:69falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4000:50:56:ab:4d:69true4000172.16.1.4024dhcppreferrednameassignDC0_C0_RP4_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-55snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b20f6-fa4a-768e-8a13-f96827c6f6e2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP4_VM3/DC0_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:27.752293Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-59entervm-130availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM5/DC0_C1_RP3_VM5.vmdkdatastore-15persistentfalsefalsefalse520b5868-5ecf-ec0b-054a-315eb1da4ba5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c6:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10200:50:56:ab:c6:ectrue4000172.16.1.10224dhcppreferrednameassignDC0_C1_RP3_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc6f5-fd3e-dd09-eb48-c4f08758b8dbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM5/DC0_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.396434Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-130entervm-131availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM6/DC0_C1_RP3_VM6.vmdkdatastore-15persistentfalsefalsefalse52c7fbe2-7855-548a-e8ad-f7496bc97197100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:93:33falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10300:50:56:ab:93:33true4000172.16.1.10324dhcppreferrednameassignDC0_C1_RP3_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd1b4-db56-596d-f73e-257cf2878301summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM6/DC0_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.428899Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-131entervm-132availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP3_VM7/DC0_C1_RP3_VM7.vmdkdatastore-15persistentfalsefalsefalse5230584b-2fac-423d-667b-8d6ad9a05d77100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:75:73falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10400:50:56:ab:75:73true4000172.16.1.10424dhcppreferrednameassignDC0_C1_RP3_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-124snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde9f-c1fb-9e6e-8a73-0bac831f9deasummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP3_VM7/DC0_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:52.516319Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-132entervm-107availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmdkdatastore-15persistentfalsefalsefalse52dab7a1-6c3e-1f7b-fe00-a2c6213343b7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruefalse1003Assigned00:50:56:ab:c0:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8100:50:56:ab:c0:acfalse4000172.16.1.8124dhcppreferrednameassignDC0_C1_RP1_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b354b-fa50-b389-9618-5f33e2189fa9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM0/DC0_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.677318Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOffsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-107entervm-108availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmdkdatastore-15persistentfalsefalsefalse52cbb773-8922-d3e1-aa59-bf4251b33089100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:19:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8200:50:56:ab:19:26true4000172.16.1.8224dhcppreferrednameassignDC0_C1_RP1_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b802a-33a6-6b17-7613-28b6f523383asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM1/DC0_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.73635Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-108entervm-109availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52dd94cc-add1-95f3-99f5-fc1fedb68dee100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c3:f9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8300:50:56:ab:c3:f9true4000172.16.1.8324dhcppreferrednameassignDC0_C1_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be028-98b7-0d55-a1df-65d09ee2473esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM2/DC0_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.771733Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-109entervm-110availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse522c30fb-013c-8930-17d6-36e709423b5e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:70:cffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8400:50:56:ab:70:cftrue4000172.16.1.8424dhcppreferrednameassignDC0_C1_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-106snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4b35-641f-b75f-f19c-f98ec8add3f3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP1_VM3/DC0_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:45.801095Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-110entervm-42availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM4/DC0_C0_RP2_VM4.vmdkdatastore-15persistentfalsefalsefalse5241617d-a761-91b6-235f-e8fcfcf4adf7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:1c:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2500:50:56:ab:1c:c2true4000172.16.1.2524dhcppreferrednameassignDC0_C0_RP2_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34aa-053e-4db4-e85f-67adee2b6798summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM4/DC0_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.211236Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-42entervm-43availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM5/DC0_C0_RP2_VM5.vmdkdatastore-15persistentfalsefalsefalse524e6ec2-90f0-9d09-891f-c56918c83d5e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:35:58falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2600:50:56:ab:35:58true4000172.16.1.2624dhcppreferrednameassignDC0_C0_RP2_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bce73-344a-4372-a94e-f9a2bff35a5csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM5/DC0_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.240842Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-43entervm-44availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM6/DC0_C0_RP2_VM6.vmdkdatastore-15persistentfalsefalsefalse5275d0c9-620b-7efd-4080-0d25dc2268d1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:41:26falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2700:50:56:ab:41:26true4000172.16.1.2724dhcppreferrednameassignDC0_C0_RP2_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbdee-3165-5ea4-2898-baf691212c3csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM6/DC0_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.266539Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-44entervm-45availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM7/DC0_C0_RP2_VM7.vmdkdatastore-15persistentfalsefalsefalse52d36d29-ebdf-c364-87d3-8b168cbf281b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:12:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2800:50:56:ab:12:47true4000172.16.1.2824dhcppreferrednameassignDC0_C0_RP2_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be1d4-6a0b-f4cb-0908-d6ace000b409summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM7/DC0_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.28398Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-45entervm-105availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse528d661a-e8ce-743f-0407-4ee7d38a275a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:21:98falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8000:50:56:ab:21:98true4000172.16.1.8024dhcppreferrednameassignDC0_C1_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b13f8-0fe3-9212-76bc-8574851a4c5bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM7/DC0_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.254629Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-105entervm-104availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse526666f5-e460-02cd-262a-46a29624e79a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ef:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7900:50:56:ab:ef:2etrue4000172.16.1.7924dhcppreferrednameassignDC0_C1_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb423-85f3-fbf9-1735-ddef2ab1cd3dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM6/DC0_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.193761Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-104entervm-103availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse5225f2f8-a331-83b3-e0c4-cf7eb2ce4607100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:33:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7800:50:56:ab:33:fatrue4000172.16.1.7824dhcppreferrednameassignDC0_C1_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8bfb-3d0f-1225-a89a-79da96479878summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM5/DC0_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.15336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-103entervm-90availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM7/DC0_C0_RP7_VM7.vmdkdatastore-15persistentfalsefalsefalse52d9eb51-9d90-c97b-b68d-d8505b20259c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:23:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6800:50:56:ab:23:1atrue4000172.16.1.6824dhcppreferrednameassignDC0_C0_RP7_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf87d-210c-c20b-83cf-be99c1cdb525summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM7/DC0_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.225221Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-90entervm-102availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse5276d2de-41d2-1977-b228-b39664b79c73100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:93:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7700:50:56:ab:93:b4true4000172.16.1.7724dhcppreferrednameassignDC0_C1_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b20cc-49c3-82e1-6b95-ab590b6b4ef2summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM4/DC0_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.120428Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-102entervm-89availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM6/DC0_C0_RP7_VM6.vmdkdatastore-15persistentfalsefalsefalse52cfc183-3833-f8e2-95b9-34184625bf42100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a2:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6700:50:56:ab:a2:d1true4000172.16.1.6724dhcppreferrednameassignDC0_C0_RP7_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb0e3-1d36-e0e0-b468-1098376cfbe0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM6/DC0_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.187482Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-89entervm-101availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse5228eb58-e72d-b17d-5f19-734881a100e9100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:cb:aefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7600:50:56:ab:cb:aetrue4000172.16.1.7624dhcppreferrednameassignDC0_C1_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b87e2-e021-07ad-99c1-a11e4da852adsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM3/DC0_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.074691Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-101entervm-88availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM5/DC0_C0_RP7_VM5.vmdkdatastore-15persistentfalsefalsefalse524eb055-fabd-9b57-15b4-1268ba396bde100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:fe:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6600:50:56:ab:fe:a1true4000172.16.1.6624dhcppreferrednameassignDC0_C0_RP7_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bea61-58a4-fb5e-0b78-f27745d31befsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM5/DC0_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.146516Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-88entervm-100availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52ba2494-4caa-b2ef-f666-5a49b9a24aa1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c1:a0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7500:50:56:ab:c1:a0true4000172.16.1.7524dhcppreferrednameassignDC0_C1_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb559-f515-f1a7-e0f4-be53cee33755summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM2/DC0_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.045317Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-100entervm-87availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM4/DC0_C0_RP7_VM4.vmdkdatastore-15persistentfalsefalsefalse52932119-4351-75e8-f4e9-63127832efab100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ed:e6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6500:50:56:ab:ed:e6true4000172.16.1.6524dhcppreferrednameassignDC0_C0_RP7_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bea05-cf8c-4d18-ea55-e11922cedd8csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM4/DC0_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.106046Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-87entervm-99availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmdkdatastore-15persistentfalsefalsefalse526dfd9c-cc93-ae87-8907-abb6d12fcd6f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:55:0dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7400:50:56:ab:55:0dtrue4000172.16.1.7424dhcppreferrednameassignDC0_C1_RP0_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b63b8-398c-01b3-1e38-497adde2cc54summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM1/DC0_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:43.021779Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-99entervm-98availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse528b2017-ed97-c2eb-c475-19c56a70e39d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:3f:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.7300:50:56:ab:3f:77true4000172.16.1.7324dhcppreferrednameassignDC0_C1_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-97snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b432e-5bda-e85f-60af-fc83b4f6e0d4summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP0_VM0/DC0_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:42.994655Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-98entervm-47availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM0/DC0_C0_RP3_VM0.vmdkdatastore-15persistentfalsefalsefalse529055a1-8501-2208-5da8-7657239ab26c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:20:bdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2900:50:56:ab:20:bdtrue4000172.16.1.2924dhcppreferrednameassignDC0_C0_RP3_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0890-0a29-ae39-756d-f1101c5706b3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM0/DC0_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.388548Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-47entervm-72availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM7/DC0_C0_RP5_VM7.vmdkdatastore-15persistentfalsefalsefalse52037145-6314-f0f5-c580-28e1b37207be100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:13:bcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5200:50:56:ab:13:bctrue4000172.16.1.5224dhcppreferrednameassignDC0_C0_RP5_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b445e-acc3-b905-7234-a37975537b14summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM7/DC0_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.088386Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-72entervm-71availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM6/DC0_C0_RP5_VM6.vmdkdatastore-15persistentfalsefalsefalse524e0b60-279b-41ff-3433-296f62896a9c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ef:9cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5100:50:56:ab:ef:9ctrue4000172.16.1.5124dhcppreferrednameassignDC0_C0_RP5_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8d40-27e1-163f-d038-909fdc0ef761summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM6/DC0_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.076862Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-71entervm-53availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM6/DC0_C0_RP3_VM6.vmdkdatastore-15persistentfalsefalsefalse52c16b1b-7d2e-869a-fdbd-87d38b8a135e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:88:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3500:50:56:ab:88:84true4000172.16.1.3524dhcppreferrednameassignDC0_C0_RP3_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be9f1-c06d-f3ce-a833-e7a54e4c1f06summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM6/DC0_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.485602Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-53entervm-159availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM7/DC0_C1_RP6_VM7.vmdkdatastore-15persistentfalsefalsefalse5257b19f-c52e-d8e2-0ccc-e2005aec5949100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:68:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12800:50:56:ab:68:ddtrue4000172.16.1.12824dhcppreferrednameassignDC0_C1_RP6_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc96e-36f4-3089-67ff-3a10577c5396summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM7/DC0_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.657789Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-159entervm-168availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM7/DC0_C1_RP7_VM7.vmdkdatastore-15persistentfalsefalsefalse52fe6764-0a21-6b11-6e09-cd18548658a5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:17:40falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13600:50:56:ab:17:40true4000172.16.1.13624dhcppreferrednameassignDC0_C1_RP7_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb349-c219-0966-0d09-cfcb68430bdcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM7/DC0_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.841774Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-168entervm-70availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM5/DC0_C0_RP5_VM5.vmdkdatastore-15persistentfalsefalsefalse52759268-5947-2127-3870-8612fe80f192100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:33:d1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5000:50:56:ab:33:d1true4000172.16.1.5024dhcppreferrednameassignDC0_C0_RP5_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ec9-ded2-e6fc-bcee-9f9f5e477e8bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM5/DC0_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.064928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-70entervm-52availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM5/DC0_C0_RP3_VM5.vmdkdatastore-15persistentfalsefalsefalse5237b111-bebb-3cac-0d99-4d447b922baa100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:34:3ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3400:50:56:ab:34:3ftrue4000172.16.1.3424dhcppreferrednameassignDC0_C0_RP3_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b91c4-5946-ead0-6012-a5e9fea5c5bcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM5/DC0_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.473124Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-52entervm-158availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM6/DC0_C1_RP6_VM6.vmdkdatastore-15persistentfalsefalsefalse52f7062f-19ad-00e3-4962-257578a07c12100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:06:defalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12700:50:56:ab:06:detrue4000172.16.1.12724dhcppreferrednameassignDC0_C1_RP6_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd1b4-4856-e3f6-236c-63f58ad471dfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM6/DC0_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.619751Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-158entervm-69availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM4/DC0_C0_RP5_VM4.vmdkdatastore-15persistentfalsefalsefalse52fdee29-a43c-aa05-69b3-9cf2bc820e86100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:09:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4900:50:56:ab:09:09true4000172.16.1.4924dhcppreferrednameassignDC0_C0_RP5_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b679e-b2d4-1ddf-3530-6cfed2b09ca5summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM4/DC0_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.051261Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-69entervm-157availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM5/DC0_C1_RP6_VM5.vmdkdatastore-15persistentfalsefalsefalse52fd77a1-008e-1fc0-a7a7-0a6b22a01dbd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:7f:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12600:50:56:ab:7f:e7true4000172.16.1.12624dhcppreferrednameassignDC0_C1_RP6_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3271-745f-1405-a835-cf699f5eb978summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM5/DC0_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.568721Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-157entervm-68availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM3/DC0_C0_RP5_VM3.vmdkdatastore-15persistentfalsefalsefalse52f51da8-1401-fcf4-fa8e-88577e144894100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:5a:c0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4800:50:56:ab:5a:c0true4000172.16.1.4824dhcppreferrednameassignDC0_C0_RP5_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be7d7-94d1-b0ed-b362-3b5808d41a54summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM3/DC0_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.037117Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-68entervm-54availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM7/DC0_C0_RP3_VM7.vmdkdatastore-15persistentfalsefalsefalse52147929-9f01-9dd0-ff70-c4f76f8d4d0b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:1d:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3600:50:56:ab:1d:8dtrue4000172.16.1.3624dhcppreferrednameassignDC0_C0_RP3_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b86c7-e447-d19a-6474-21ef0214437asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM7/DC0_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.494922Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-54entervm-156availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM4/DC0_C1_RP6_VM4.vmdkdatastore-15persistentfalsefalsefalse52052fda-360e-0855-41ee-927c244ea398100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:b0:01falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12500:50:56:ab:b0:01true4000172.16.1.12524dhcppreferrednameassignDC0_C1_RP6_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b03d8-e81a-9d85-6f25-a9da5458c430summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM4/DC0_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.513938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-156entervm-67availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM2/DC0_C0_RP5_VM2.vmdkdatastore-15persistentfalsefalsefalse528d989c-3eaa-b315-2f7f-03a5dfd8a526100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ce:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4700:50:56:ab:ce:3atrue4000172.16.1.4724dhcppreferrednameassignDC0_C0_RP5_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8070-d196-fd91-8c4a-ba90ad02c81esummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM2/DC0_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.020495Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-67entervm-49availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM2/DC0_C0_RP3_VM2.vmdkdatastore-15persistentfalsefalsefalse52e02780-d4e2-7063-e183-ad5ece718eaf100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:d6:dbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3100:50:56:ab:d6:dbtrue4000172.16.1.3124dhcppreferrednameassignDC0_C0_RP3_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b60e6-b6ec-0348-f9da-4bf95f3acaa0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM2/DC0_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.424929Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-49entervm-164availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM3/DC0_C1_RP7_VM3.vmdkdatastore-15persistentfalsefalsefalse52a5cb50-179c-89e6-555a-3b5e5202478e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:0d:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13200:50:56:ab:0d:7ftrue4000172.16.1.13224dhcppreferrednameassignDC0_C1_RP7_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3663-dddf-981e-2c61-7077ba6d7f85summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM3/DC0_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.723158Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-164entervm-66availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM1/DC0_C0_RP5_VM1.vmdkdatastore-15persistentfalsefalsefalse52792bb4-3622-666d-e01e-6298c9154823100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:06:46falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4600:50:56:ab:06:46true4000172.16.1.4624dhcppreferrednameassignDC0_C0_RP5_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34a2-e625-1d21-2299-adf3990af0d6summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM1/DC0_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:32.002125Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-66entervm-48availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM1/DC0_C0_RP3_VM1.vmdkdatastore-15persistentfalsefalsefalse52a06617-3490-d882-39b7-feb0641fb514100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c0:8ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3000:50:56:ab:c0:8ftrue4000172.16.1.3024dhcppreferrednameassignDC0_C0_RP3_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b14c3-f8ec-80ea-4da9-ccd379fe3070summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM1/DC0_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.406589Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-48entervm-165availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM4/DC0_C1_RP7_VM4.vmdkdatastore-15persistentfalsefalsefalse5247aeab-185e-6118-035a-b6b510b9889a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f4:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13300:50:56:ab:f4:78true4000172.16.1.13324dhcppreferrednameassignDC0_C1_RP7_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b395e-8103-9968-11ec-e860647818b0summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM4/DC0_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.75237Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-165entervm-65availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP5_VM0/DC0_C0_RP5_VM0.vmdkdatastore-15persistentfalsefalsefalse52c68e28-bc00-ad36-4026-7a63a4571bc5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9a:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.4500:50:56:ab:9a:c6true4000172.16.1.4524dhcppreferrednameassignDC0_C0_RP5_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-64snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9956-72dc-6b66-7abc-a46b8999630dsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP5_VM0/DC0_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:31.983066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-65entervm-51availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM4/DC0_C0_RP3_VM4.vmdkdatastore-15persistentfalsefalsefalse528cf21d-63be-bd58-19e5-512207da7e02100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c6:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3300:50:56:ab:c6:23true4000172.16.1.3324dhcppreferrednameassignDC0_C0_RP3_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2bcc-0561-1a27-457c-4e8de989fad3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM4/DC0_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.458374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-51entervm-166availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM5/DC0_C1_RP7_VM5.vmdkdatastore-15persistentfalsefalsefalse52c002c1-d21a-ce7f-6627-9e77dab19dcd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:2e:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13400:50:56:ab:2e:e8true4000172.16.1.13424dhcppreferrednameassignDC0_C1_RP7_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b302d-6b60-af38-40ee-006b0712555bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM5/DC0_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.782527Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-166entervm-50availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP3_VM3/DC0_C0_RP3_VM3.vmdkdatastore-15persistentfalsefalsefalse52ccd686-c03e-4d50-802c-4f4e5ec991b6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:6e:6efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.3200:50:56:ab:6e:6etrue4000172.16.1.3224dhcppreferrednameassignDC0_C0_RP3_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-46snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb4fb-f0fa-8df9-b27d-a147e901d96fsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP3_VM3/DC0_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:25.44177Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-50entervm-137availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM3/DC0_C1_RP4_VM3.vmdkdatastore-15persistentfalsefalsefalse52916655-d0e6-eced-e1b8-413cb24681f8100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:86:74falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10800:50:56:ab:86:74true4000172.16.1.10824dhcppreferrednameassignDC0_C1_RP4_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b05dc-baff-058b-b327-7c5c93b52340summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM3/DC0_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.843058Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-137entervm-167availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM6/DC0_C1_RP7_VM6.vmdkdatastore-15persistentfalsefalsefalse524bf1c7-88f8-cea8-a00b-356f007ce331100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:33:05falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13500:50:56:ab:33:05true4000172.16.1.13524dhcppreferrednameassignDC0_C1_RP7_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9014-cf86-82f9-2735-2d99705be9absummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM6/DC0_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.808771Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-167entervm-38availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM0/DC0_C0_RP2_VM0.vmdkdatastore-15persistentfalsefalsefalse523f9ae2-c8c8-c362-fe34-5a1906f3f99d100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:79:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2100:50:56:ab:79:c7true4000172.16.1.2124dhcppreferrednameassignDC0_C0_RP2_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6670-f6d7-5752-dff9-e8705f3db2dfsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM0/DC0_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.093766Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-38entervm-136availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM2/DC0_C1_RP4_VM2.vmdkdatastore-15persistentfalsefalsefalse52c3d9ee-520d-d601-4c1e-ef9545e3a1a1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:33:1efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10700:50:56:ab:33:1etrue4000172.16.1.10724dhcppreferrednameassignDC0_C1_RP4_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfbda-fe4d-bb63-dcda-fafd4f493076summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM2/DC0_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.812089Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-136entervm-39availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM1/DC0_C0_RP2_VM1.vmdkdatastore-15persistentfalsefalsefalse52ba58c4-e13c-040f-e525-a7e482ed9b2e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:e3:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2200:50:56:ab:e3:0atrue4000172.16.1.2224dhcppreferrednameassignDC0_C0_RP2_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0822-6de8-fba4-ec4f-5fb6f87fe4a1summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM1/DC0_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.118104Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-39entervm-139availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM5/DC0_C1_RP4_VM5.vmdkdatastore-15persistentfalsefalsefalse52aeae5a-00d5-f15b-457e-75f1d017d6a3100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:9a:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11000:50:56:ab:9a:ebtrue4000172.16.1.11024dhcppreferrednameassignDC0_C1_RP4_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5d0b-a389-45bb-4612-2ed887da5527summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM5/DC0_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.928792Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-139entervm-161availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM0/DC0_C1_RP7_VM0.vmdkdatastore-15persistentfalsefalsefalse523238d3-e6bf-be3b-e8f0-0a8c2bfed8fd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:5d:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12900:50:56:ab:5d:eatrue4000172.16.1.12924dhcppreferrednameassignDC0_C1_RP7_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0225-0f63-9fd5-d6a8-12943ea14776summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM0/DC0_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.676924Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-161entervm-40availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM2/DC0_C0_RP2_VM2.vmdkdatastore-15persistentfalsefalsefalse52448da4-cf6a-56d5-62a0-c947f74eecfe100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:cc:80falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2300:50:56:ab:cc:80true4000172.16.1.2324dhcppreferrednameassignDC0_C0_RP2_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be2b7-0a79-72d6-9c28-1264cce499f8summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM2/DC0_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.159864Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-40entervm-138availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM4/DC0_C1_RP4_VM4.vmdkdatastore-15persistentfalsefalsefalse525c28eb-f072-6b8b-cf75-a61edec347ca100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:19:5afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10900:50:56:ab:19:5atrue4000172.16.1.10924dhcppreferrednameassignDC0_C1_RP4_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3854-a30e-b1d5-9b92-776abbdfa39asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM4/DC0_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.878946Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-138entervm-162availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM1/DC0_C1_RP7_VM1.vmdkdatastore-15persistentfalsefalsefalse5245192b-ed9a-1d8b-fd67-5b62ba2545f5100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:65:edfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13000:50:56:ab:65:edtrue4000172.16.1.13024dhcppreferrednameassignDC0_C1_RP7_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b38d2-56cb-4436-02a6-3d61358496e0summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM1/DC0_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.691481Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-162entervm-41availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP2_VM3/DC0_C0_RP2_VM3.vmdkdatastore-15persistentfalsefalsefalse523efe49-c009-7453-6e23-3eebb7efab8c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:84:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2400:50:56:ab:84:32true4000172.16.1.2424dhcppreferrednameassignDC0_C0_RP2_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-37snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bac5f-11c2-7f13-f93f-a69006048daasummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP2_VM3/DC0_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:24.1917Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-41entervm-141availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM7/DC0_C1_RP4_VM7.vmdkdatastore-15persistentfalsefalsefalse528aee3a-1bc3-355f-030d-a4f3f29a9dff100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f0:0cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11200:50:56:ab:f0:0ctrue4000172.16.1.11224dhcppreferrednameassignDC0_C1_RP4_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7f80-639c-859c-6d78-3d763f764bf3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM7/DC0_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:55.025337Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-141true http_version: - recorded_at: Thu, 03 May 2018 18:07:55 GMT + recorded_at: Mon, 07 May 2018 16:15:29 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -314,7 +314,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -328,7 +328,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:56 GMT + - Mon, 7 May 2018 16:15:29 GMT Cache-Control: - no-cache Connection: @@ -348,11 +348,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_2session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entervm-163availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM2/DC0_C1_RP7_VM2.vmdkdatastore-15persistentfalsefalsefalse526ae764-a352-0d19-070a-7795053064a6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a1:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13100:50:56:ab:a1:97true4000172.16.1.13124dhcppreferrednameassignDC0_C1_RP7_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b21e8-082e-b20e-0ed8-13c20d0b335asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM2/DC0_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.706443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-163entervm-140availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM6/DC0_C1_RP4_VM6.vmdkdatastore-15persistentfalsefalsefalse52a2f52a-031a-382a-5e7e-30d2fb6bdcb7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:0c:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11100:50:56:ab:0c:aftrue4000172.16.1.11124dhcppreferrednameassignDC0_C1_RP4_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0194-7415-b5d9-8950-4ae584103441summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM6/DC0_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.982732Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-140entervm-86availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM3/DC0_C0_RP7_VM3.vmdkdatastore-15persistentfalsefalsefalse529579bf-f701-cef2-ec1d-b9d87304779f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:e2:bcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6400:50:56:ab:e2:bctrue4000172.16.1.6424dhcppreferrednameassignDC0_C0_RP7_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc815-74e0-6a4f-dbd9-1362ce07ebd8summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM3/DC0_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.074332Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-86entervm-85availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM2/DC0_C0_RP7_VM2.vmdkdatastore-15persistentfalsefalsefalse52d63c1a-52c8-6984-6565-76bcebe57d4e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:96:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6300:50:56:ab:96:c7true4000172.16.1.6324dhcppreferrednameassignDC0_C0_RP7_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb467-58ed-b044-faf8-c4417c89a53bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM2/DC0_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.048689Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-85entervm-84availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM1/DC0_C0_RP7_VM1.vmdkdatastore-15persistentfalsefalsefalse52f26d60-a6f3-f39b-2b3d-e95f077b8b69100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:4e:20falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6200:50:56:ab:4e:20true4000172.16.1.6224dhcppreferrednameassignDC0_C0_RP7_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c4c-6570-7ceb-391e-31734c40cf7csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM1/DC0_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.018231Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-84entervm-83availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM0/DC0_C0_RP7_VM0.vmdkdatastore-15persistentfalsefalsefalse528334a8-7f2b-99dd-aa4a-600e5a5ece78100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:2c:b0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6100:50:56:ab:2c:b0true4000172.16.1.6124dhcppreferrednameassignDC0_C0_RP7_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b209b-66d1-5409-b784-958f4266636csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM0/DC0_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:36.991967Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-83entervm-155availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM3/DC0_C1_RP6_VM3.vmdkdatastore-15persistentfalsefalsefalse525e6efb-e014-01a1-f603-30d8ea8d4904100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f3:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12400:50:56:ab:f3:1ctrue4000172.16.1.12424dhcppreferrednameassignDC0_C1_RP6_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba5dd-3cf9-5e88-9d98-71e727ef9e6bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM3/DC0_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.416316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-155entervm-81availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM7/DC0_C0_RP6_VM7.vmdkdatastore-15persistentfalsefalsefalse5208825f-72dd-bd3e-bcdd-fbea31445bdd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:56:51falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6000:50:56:ab:56:51true4000172.16.1.6024dhcppreferrednameassignDC0_C0_RP6_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b35c7-74a2-3108-1a5b-1ad8771bd6c9summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM7/DC0_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.7044Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-81entervm-150availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM7/DC0_C1_RP5_VM7.vmdkdatastore-15persistentfalsefalsefalse522c2683-535a-9403-2cd0-1812d5a0c419100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:8e:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12000:50:56:ab:8e:cctrue4000172.16.1.12024dhcppreferrednameassignDC0_C1_RP5_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b925b-c4ad-0ef4-8a3f-c78decd68773summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM7/DC0_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.4478Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-150entervm-154availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM2/DC0_C1_RP6_VM2.vmdkdatastore-15persistentfalsefalsefalse527d34ac-7341-8a25-091b-eb463585b218100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e2:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12300:50:56:ab:e2:18true4000172.16.1.12324dhcppreferrednameassignDC0_C1_RP6_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9cd0-4693-d4a2-e07a-21a5a1a120cdsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM2/DC0_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.248416Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-154entervm-153availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM1/DC0_C1_RP6_VM1.vmdkdatastore-15persistentfalsefalsefalse52905228-a42d-354e-2f15-07bf01c2500a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:34:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12200:50:56:ab:34:7ftrue4000172.16.1.12224dhcppreferrednameassignDC0_C1_RP6_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b39f3-755f-eaf7-fb28-ff0875282edasummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM1/DC0_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.056327Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-153entervm-31availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52d2b1b9-2d5d-8aa1-6cb9-5ccd50f391ff100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:dd:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1500:50:56:ab:dd:f3true4000172.16.1.1524dhcppreferrednameassignDC0_C0_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9140-5ed0-1220-d96e-c0338188030asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.259336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-31entervm-152availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM0/DC0_C1_RP6_VM0.vmdkdatastore-15persistentfalsefalsefalse520efb16-df46-de55-7569-d24dd50d047b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:d8:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12100:50:56:ab:d8:ddtrue4000172.16.1.12124dhcppreferrednameassignDC0_C1_RP6_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd4c-ab87-0cf7-2075-c5739e6b1d5bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM0/DC0_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:59.947615Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-152entervm-32availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse52dd018c-a782-bfab-cc7e-d40e2e4398c9100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:7c:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1600:50:56:ab:7c:67true4000172.16.1.1624dhcppreferrednameassignDC0_C0_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fa1-d59b-59d4-5d8c-3e8fba0748cbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.270066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-32entervm-33availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse5239f423-8fbc-f48a-af70-ebd520529acb100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c2:a3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1700:50:56:ab:c2:a3true4000172.16.1.1724dhcppreferrednameassignDC0_C0_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b38f2-6eae-e06f-da7a-d874cde49059summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.282322Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-33entervm-79availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM5/DC0_C0_RP6_VM5.vmdkdatastore-15persistentfalsefalsefalse525d6760-9ae6-08b2-df74-f42a081cca49100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:65:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5800:50:56:ab:65:78true4000172.16.1.5824dhcppreferrednameassignDC0_C0_RP6_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52af-d544-73e7-bf59-3ebd05f47da6summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM5/DC0_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.651317Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-79entervm-34availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse52ad1a6e-0952-3a02-a43b-07d10ac511cf100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:27:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1800:50:56:ab:27:6atrue4000172.16.1.1824dhcppreferrednameassignDC0_C0_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b25-6dc9-21f7-9cdf-aec4474679cbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.291882Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-34entervm-148availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM5/DC0_C1_RP5_VM5.vmdkdatastore-15persistentfalsefalsefalse529e0bfc-6d66-52de-dc46-a860123da3df100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:df:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11800:50:56:ab:df:6atrue4000172.16.1.11824dhcppreferrednameassignDC0_C1_RP5_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8883-ac33-f0c2-08ea-ae75e2bfca80summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM5/DC0_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.418902Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-148entervm-80availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM6/DC0_C0_RP6_VM6.vmdkdatastore-15persistentfalsefalsefalse52cbf9f8-d61b-6520-1a52-2004632c06f1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:15:e9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5900:50:56:ab:15:e9true4000172.16.1.5924dhcppreferrednameassignDC0_C0_RP6_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9534-584f-4fc4-d707-946c7a318b2csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM6/DC0_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.67862Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-80entervm-35availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse526c47b1-e1a9-1c59-afbb-1086b35782c6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:72:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1900:50:56:ab:72:e2true4000172.16.1.1924dhcppreferrednameassignDC0_C0_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2878-c113-8a56-c00f-097255e315a0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.303039Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-35entervm-149availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM6/DC0_C1_RP5_VM6.vmdkdatastore-15persistentfalsefalsefalse529ccb3e-a3e3-4d2b-175f-683e8e1191a0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c9:98falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11900:50:56:ab:c9:98true4000172.16.1.11924dhcppreferrednameassignDC0_C1_RP5_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd5d3-7f95-6ced-c95c-315f46c94f59summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM6/DC0_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.438084Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-149entervm-77availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM3/DC0_C0_RP6_VM3.vmdkdatastore-15persistentfalsefalsefalse526c0d4b-65c7-9d3e-81c3-fca577029920100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:73:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5600:50:56:ab:73:f3true4000172.16.1.5624dhcppreferrednameassignDC0_C0_RP6_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b86d1-3682-0e84-b467-a97b90248de7summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM3/DC0_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.616144Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-77entervm-36availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse52d93674-4bcf-1dd5-98f5-b541952ef125100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:8f:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2000:50:56:ab:8f:6dtrue4000172.16.1.2024dhcppreferrednameassignDC0_C0_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44aa-6663-edcc-7ef5-34ceb032be39summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.312314Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-36entervm-146availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM3/DC0_C1_RP5_VM3.vmdkdatastore-15persistentfalsefalsefalse525ba451-2251-e0bc-e0db-43e67edcdb52100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:3c:aafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11600:50:56:ab:3c:aatrue4000172.16.1.11624dhcppreferrednameassignDC0_C1_RP5_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9e4e-087a-8c59-057a-0fb2cff3e39bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM3/DC0_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.363561Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-146entervm-78availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM4/DC0_C0_RP6_VM4.vmdkdatastore-15persistentfalsefalsefalse526ad892-cf11-8231-f68a-5ddeb0080b6f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:09:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5700:50:56:ab:09:ectrue4000172.16.1.5724dhcppreferrednameassignDC0_C0_RP6_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbaf3-cca0-73b4-dd18-123b057c697csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM4/DC0_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.632851Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-78entervm-147availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM4/DC0_C1_RP5_VM4.vmdkdatastore-15persistentfalsefalsefalse5218f06e-3e0f-7302-b4b0-b6ff0ef6902a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:8e:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11700:50:56:ab:8e:18true4000172.16.1.11724dhcppreferrednameassignDC0_C1_RP5_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf0c5-badf-dd3b-efcd-4d32f3b341f7summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM4/DC0_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.396483Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-147entervm-75availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM1/DC0_C0_RP6_VM1.vmdkdatastore-15persistentfalsefalsefalse5239f394-d756-cf26-a93f-163448e34e45100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:07:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5400:50:56:ab:07:3atrue4000172.16.1.5424dhcppreferrednameassignDC0_C0_RP6_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b43da-c713-8558-2606-70db3dacb22bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM1/DC0_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.573443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-75entervm-144availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM1/DC0_C1_RP5_VM1.vmdkdatastore-15persistentfalsefalsefalse52a8b13b-bbb2-7d65-6259-6fc82971cf1f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:5e:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11400:50:56:ab:5e:7atrue4000172.16.1.11424dhcppreferrednameassignDC0_C1_RP5_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb05e-271b-8442-3d31-6cbb003fa31fsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM1/DC0_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.331202Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-144entervm-76availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM2/DC0_C0_RP6_VM2.vmdkdatastore-15persistentfalsefalsefalse52180a4c-e1fc-1a14-0014-316eac11a600100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ff:34falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5500:50:56:ab:ff:34true4000172.16.1.5524dhcppreferrednameassignDC0_C0_RP6_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b82bd-02e2-b6b4-c928-fbcc4cac40f9summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM2/DC0_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.59469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-76entervm-145availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM2/DC0_C1_RP5_VM2.vmdkdatastore-15persistentfalsefalsefalse52e88d62-4e8b-f906-713d-d91dbe0c4688100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f4:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11500:50:56:ab:f4:0btrue4000172.16.1.11524dhcppreferrednameassignDC0_C1_RP5_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b72a2-14c6-a9f4-0981-cbd94b963fe3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM2/DC0_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.346499Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-145entervm-74availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM0/DC0_C0_RP6_VM0.vmdkdatastore-15persistentfalsefalsefalse52dfd178-8750-959e-f12f-aba84894ad7c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e0:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5300:50:56:ab:e0:25true4000172.16.1.5324dhcppreferrednameassignDC0_C0_RP6_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b828a-7b2f-9366-da3a-7e617c1fafdcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM0/DC0_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.552845Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-74entervm-143availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM0/DC0_C1_RP5_VM0.vmdkdatastore-15persistentfalsefalsefalse523705a6-da92-1791-198d-3e77fcbcaa9c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a6:52falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11300:50:56:ab:a6:52true4000172.16.1.11324dhcppreferrednameassignDC0_C1_RP5_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0e45-79f5-f434-0ef7-f58f80e61549summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM0/DC0_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.297408Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-143entervm-116availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM0/DC0_C1_RP2_VM0.vmdkdatastore-15persistentfalsefalsefalse52d6d509-051e-b3e5-ebab-081cb04cf9ba100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:4f:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8900:50:56:ab:4f:7btrue4000172.16.1.8924dhcppreferrednameassignDC0_C1_RP2_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c11-d2e4-4e71-f181-46b8ed598c3asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM0/DC0_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.072457Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-116entervm-135availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM1/DC0_C1_RP4_VM1.vmdkdatastore-15persistentfalsefalsefalse5268dcfa-6ee1-c715-babd-d9f4742b46e4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:0c:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10600:50:56:ab:0c:57true4000172.16.1.10624dhcppreferrednameassignDC0_C1_RP4_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9db3-f1d8-dee0-8fb0-c13f22c9e6desummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM1/DC0_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.768427Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-135entervm-134availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM0/DC0_C1_RP4_VM0.vmdkdatastore-15persistentfalsefalsefalse5274e98c-44cf-3c1a-4e51-a58c30a0590b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:65:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10500:50:56:ab:65:a9true4000172.16.1.10524dhcppreferrednameassignDC0_C1_RP4_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd964-df0e-1c2f-ec24-88e47a8cdbf9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM0/DC0_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.728599Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-134entervm-27availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse521355c0-9ea2-8f11-fd9e-fdb3f8d19263100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c8:cbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1200:50:56:ab:c8:cbtrue4000172.16.1.1224dhcppreferrednameassignDC0_C0_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0cf3-bb57-f366-0783-aa8be09d0202summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.33182Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-27entervm-122availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM6/DC0_C1_RP2_VM6.vmdkdatastore-15persistentfalsefalsefalse52d26473-7c9b-18c1-68cd-253bcee61889100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:91:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9500:50:56:ab:91:6atrue4000172.16.1.9524dhcppreferrednameassignDC0_C1_RP2_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9df4-4fe3-5648-338d-ec180f89982esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM6/DC0_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.465207Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-122entervm-121availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM5/DC0_C1_RP2_VM5.vmdkdatastore-15persistentfalsefalsefalse52831796-3ab6-22e2-0aa7-60168d729405100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:2c:dcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9400:50:56:ab:2c:dctrue4000172.16.1.9424dhcppreferrednameassignDC0_C1_RP2_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be260-5966-6e74-6d34-d2a0aa89207esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM5/DC0_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.43273Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-121entervm-24availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52bb4641-c4f6-e1f0-72be-69f1979c5212100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:40:75falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.900:50:56:ab:40:75true4000172.16.1.924dhcppreferrednameassignDC0_C0_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48e7-169b-8b18-a170-72485f8024f7summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.293433Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-24entervm-123availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM7/DC0_C1_RP2_VM7.vmdkdatastore-15persistentfalsefalsefalse52f5f1d5-81e6-10be-e114-7cddddd0e82f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:64:04falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9600:50:56:ab:64:04true4000172.16.1.9624dhcppreferrednameassignDC0_C1_RP2_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44d0-f78f-c779-0e07-0ddf331a5c80summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM7/DC0_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.517092Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-123entervm-23availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse5218c3d2-dca9-b981-d57b-afae9747d3b7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:62:aefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.800:50:56:ab:62:aetrue4000172.16.1.824dhcppreferrednameassignDC0_C0_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6fed-ba9c-f920-4afe-0d1073ee7ff2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.28148Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-23entervm-118availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM2/DC0_C1_RP2_VM2.vmdkdatastore-15persistentfalsefalsefalse5205592b-0b88-07d0-6f85-a8a1a2692f42100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9f:31falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9100:50:56:ab:9f:31true4000172.16.1.9124dhcppreferrednameassignDC0_C1_RP2_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2826-b787-a07b-5aee-067baccf12e9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM2/DC0_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.16757Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-118entervm-26availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52924b3c-f0e1-8aa2-bcf5-9714ff2047d6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a6:dffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1100:50:56:ab:a6:dftrue4000172.16.1.1124dhcppreferrednameassignDC0_C0_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b350b-d571-7fc1-e164-c88a6ebec977summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.320387Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-26entervm-117availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM1/DC0_C1_RP2_VM1.vmdkdatastore-15persistentfalsefalsefalse5266284f-f289-491b-6b35-93880392fdcb100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:73:4afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9000:50:56:ab:73:4atrue4000172.16.1.9024dhcppreferrednameassignDC0_C1_RP2_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5231-3e9b-2fc4-ad9f-23ab1e032875summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM1/DC0_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.125404Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-117entervm-25availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse52096638-db6a-430c-b1da-719ec6e53455100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:41:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1000:50:56:ab:41:66true4000172.16.1.1024dhcppreferrednameassignDC0_C0_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2dce-2789-ecd2-2621-5bdf8fd3bcd3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.306917Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-25entervm-120availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM4/DC0_C1_RP2_VM4.vmdkdatastore-15persistentfalsefalsefalse523ecc90-a6b5-f18e-8544-9c96628325d1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:29:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9300:50:56:ab:29:adtrue4000172.16.1.9324dhcppreferrednameassignDC0_C1_RP2_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9035-ef81-c07e-0639-731d494ac220summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM4/DC0_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.400847Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-120entervm-20availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse52dcc784-25cf-8e79-9379-ad7ad50e5126100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:cf:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.500:50:56:ab:cf:08true4000172.16.1.524dhcppreferrednameassignDC0_C0_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba845-09e4-e6e6-b6fb-6918f6246059summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.223356Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-20entervm-119availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM3/DC0_C1_RP2_VM3.vmdkdatastore-15persistentfalsefalsefalse52abc641-862e-449e-c1ca-7b6faf63415f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:b5:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9200:50:56:ab:b5:7btrue4000172.16.1.9224dhcppreferrednameassignDC0_C1_RP2_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5e3d-3e6e-fbe2-5a79-6e685a3da15esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM3/DC0_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.342087Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-119entervm-22availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52fc0c7a-bee9-6e61-cd70-db6f1c9b6626100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:aa:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.700:50:56:ab:aa:22true4000172.16.1.724dhcppreferrednameassignDC0_C0_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1abf-967f-3d1f-6711-18dab9e8de7asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.266021Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-22enterdvportgroup-9config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-9config.nameassignDC0_DVS-DVUplinks-8hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVS-DVUplinks-8parentassigngroup-n6summary.nameassignDC0_DVS-DVUplinks-8tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-11config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-11config.nameassignDC0_DVPG1hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVPG1parentassigngroup-n6summary.nameassignDC0_DVPG1tagassignenterdvportgroup-10config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-10config.nameassignDC0_DVPG0hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVPG0parentassigngroup-n6summary.nameassignDC0_DVPG0tagassignenterdvs-8config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-9nameassignDC0_DVSparentassigngroup-n6summary.hostassignsummary.hostMemberassignhost-14host-16host-17host-18host-93host-94host-95host-96summary.nameassignDC0_DVSsummary.uuidassign4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7benternetwork-7nameassignVM Networkparentassigngroup-n6enterdomain-c91configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-93host-94host-95host-96nameassignDC0_C1parentassigngroup-h4resourcePoolassignresgroup-92summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c12configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-14host-16host-17host-18nameassignDC0_C0parentassigngroup-h4resourcePoolassignresgroup-13summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-15capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-18/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-17/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-96/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-16/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-14/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-95/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-94/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-93/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s5summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-15summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-188availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmdkdatastore-182persistentfalsefalsefalse52de28bc-0d0b-faa4-5b3e-d9f4a7c3a7c8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:06:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14200:50:56:ab:06:4ftrue4000172.16.1.14224dhcppreferrednameassignDC1_C0_RP0_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1f2e-08d8-6a57-10d6-4021823a796fsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.192253Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-188entervm-319availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM0/DC1_C1_RP6_VM0.vmdkdatastore-182persistentfalsefalsefalse52626127-736c-9792-e881-8f1f46a6cdcd100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:0b:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.300:50:56:ab:0b:22true4000172.16.2.324dhcppreferrednameassignDC1_C1_RP6_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b49f1-dc66-e02a-4e2a-669f75fc71fdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM0/DC1_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.266959Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-319entervm-214availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM0/DC1_C0_RP3_VM0.vmdkdatastore-182persistentfalsefalsefalse526bdbed-992f-573c-2724-4089d3518304100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:18:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16500:50:56:ab:18:b5true4000172.16.1.16524dhcppreferrednameassignDC1_C0_RP3_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb179-47fa-65b3-8982-ef430ca7ef41summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM0/DC1_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.885576Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-214entervm-187availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmdkdatastore-182persistentfalsefalsefalse527a2986-f5e0-e28c-c41a-cc8bf263040b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:90:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14100:50:56:ab:90:6ftrue4000172.16.1.14124dhcppreferrednameassignDC1_C0_RP0_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b77f7-8f65-a018-bc66-8168ea3c620esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.143077Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-187entervm-190availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmdkdatastore-182persistentfalsefalsefalse5280716d-f1ce-b2b9-7548-8caed143f25f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:8e:31falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14400:50:56:ab:8e:31true4000172.16.1.14424dhcppreferrednameassignDC1_C0_RP0_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c9c-8f5a-1c24-f399-03250be1797csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.251519Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-190entervm-266availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmdkdatastore-182persistentfalsefalsefalse523047a0-10ce-d7aa-42b7-04084c728d55100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:1f:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21000:50:56:ab:1f:91true4000172.16.1.21024dhcppreferrednameassignDC1_C1_RP0_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc592-0910-9a2e-1dde-a61bc5ea4f13summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.267838Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-266entervm-189availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmdkdatastore-182persistentfalsefalsefalse5287f3eb-feb3-c8ad-d7e7-9af46b7ea718100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:69:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14300:50:56:ab:69:45true4000172.16.1.14324dhcppreferrednameassignDC1_C0_RP0_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd419-89d9-276e-5b81-5dd37328f4bbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.229645Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-189entervm-265availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmdkdatastore-182persistentfalsefalsefalse52a44e2e-e198-c61a-e6ce-23b946985e88100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fe:1ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20900:50:56:ab:fe:1ftrue4000172.16.1.20924dhcppreferrednameassignDC1_C1_RP0_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b884b-fc52-c1a4-5fc7-d919e6d029f4summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.253447Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-265entervm-192availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmdkdatastore-182persistentfalsefalsefalse52f6de55-d853-1ea8-52a4-6754ace8dbe8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:1e:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14600:50:56:ab:1e:00true4000172.16.1.14624dhcppreferrednameassignDC1_C0_RP0_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b82ff-0ad5-f4e3-9e0b-26a18e547c3csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.288874Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-192entervm-250availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM0/DC1_C0_RP7_VM0.vmdkdatastore-182persistentfalsefalsefalse52615f24-ea2c-f3e9-220a-eaebe787d85b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:1c:fcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19700:50:56:ab:1c:fctrue4000172.16.1.19724dhcppreferrednameassignDC1_C0_RP7_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6a4c-a9f8-61ea-0f25-63cd80b6b3casummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM0/DC1_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.095583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-250entervm-191availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmdkdatastore-182persistentfalsefalsefalse52289988-55c6-c1b7-1095-0300460b004a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a1:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14500:50:56:ab:a1:e0true4000172.16.1.14524dhcppreferrednameassignDC1_C0_RP0_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7bea-e61f-b04b-eecf-c65aa33d5206summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.271437Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-191entervm-251availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM1/DC1_C0_RP7_VM1.vmdkdatastore-182persistentfalsefalsefalse5270ab1f-a276-5e53-347d-67a7efe49af2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:d4:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19800:50:56:ab:d4:2etrue4000172.16.1.19824dhcppreferrednameassignDC1_C0_RP7_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb44d-4512-5da7-64d5-0056b6136450summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM1/DC1_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.104364Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-251entervm-252availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM2/DC1_C0_RP7_VM2.vmdkdatastore-182persistentfalsefalsefalse52686a93-c163-8d49-64ba-2690c4471979100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fd:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19900:50:56:ab:fd:aftrue4000172.16.1.19924dhcppreferrednameassignDC1_C0_RP7_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4c68-1487-ed7a-700b-122143e773d1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM2/DC1_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.11336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-252entervm-270availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmdkdatastore-182persistentfalsefalsefalse52181aa2-657d-66d4-0414-3c510cb98e19100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:61:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21400:50:56:ab:61:77true4000172.16.1.21424dhcppreferrednameassignDC1_C1_RP0_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba1c7-e1fe-21f9-fd0f-424014760784summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.334975Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-270entervm-206availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM1/DC1_C0_RP2_VM1.vmdkdatastore-182persistentfalsefalsefalse525e7b25-2f2d-5496-749c-cee9296f3c43100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:79:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15800:50:56:ab:79:18true4000172.16.1.15824dhcppreferrednameassignDC1_C0_RP2_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb26d-0b01-835a-eecc-3838e9e214e3summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM1/DC1_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.189846Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-206entervm-253availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM3/DC1_C0_RP7_VM3.vmdkdatastore-182persistentfalsefalsefalse52def41e-30d5-9aef-7cfd-d4d55319776a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:2f:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20000:50:56:ab:2f:5dtrue4000172.16.1.20024dhcppreferrednameassignDC1_C0_RP7_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0566-da95-973b-c274-1e8f06eb5022summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM3/DC1_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.122918Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-253entervm-269availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmdkdatastore-182persistentfalsefalsefalse52c1437c-b24b-51a0-1f8c-5ea1d3877d12100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:1d:dafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21300:50:56:ab:1d:datrue4000172.16.1.21324dhcppreferrednameassignDC1_C1_RP0_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58d5-af20-9ff1-bcf1-0bbedcb2076fsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.32133Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-269entervm-205availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM0/DC1_C0_RP2_VM0.vmdkdatastore-182persistentfalsefalsefalse52025013-f93c-bd19-a858-a4188e81a62d100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:3a:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15700:50:56:ab:3a:45true4000172.16.1.15724dhcppreferrednameassignDC1_C0_RP2_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bed9b-234e-7c6f-f9a5-7167f54e8e4csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM0/DC1_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.158784Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-205entervm-254availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM4/DC1_C0_RP7_VM4.vmdkdatastore-182persistentfalsefalsefalse521fad5f-0d42-5de9-1fc7-e4087ed83b2e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:80:fbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20100:50:56:ab:80:fbtrue4000172.16.1.20124dhcppreferrednameassignDC1_C0_RP7_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b83b4-3319-fed5-e163-d0178c5dac93summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM4/DC1_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.137935Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-254entervm-268availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmdkdatastore-182persistentfalsefalsefalse52a24215-aca0-f7af-8887-d9d9c3689d53100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:05:a5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21200:50:56:ab:05:a5true4000172.16.1.21224dhcppreferrednameassignDC1_C1_RP0_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c9e-25f0-72a5-fe78-30131c1b4e70summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.302938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-268entervm-208availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM3/DC1_C0_RP2_VM3.vmdkdatastore-182persistentfalsefalsefalse526f4389-cf38-b2db-a080-7cb9983bd968100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:bb:19falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16000:50:56:ab:bb:19true4000172.16.1.16024dhcppreferrednameassignDC1_C0_RP2_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422badaf-11a9-09da-d4cf-fe378c029265summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM3/DC1_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.246067Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-208entervm-255availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM5/DC1_C0_RP7_VM5.vmdkdatastore-182persistentfalsefalsefalse52e7f67f-66f4-43da-73c6-8d1f60c19a94100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:55:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20200:50:56:ab:55:1ctrue4000172.16.1.20224dhcppreferrednameassignDC1_C0_RP7_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c03-2cbc-101b-b981-1165c2e2d39csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM5/DC1_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.146736Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-255entervm-267availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmdkdatastore-182persistentfalsefalsefalse52e37ebb-39a7-9d6b-bc5e-0a4153a5b8d4100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e8:52falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21100:50:56:ab:e8:52true4000172.16.1.21124dhcppreferrednameassignDC1_C1_RP0_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bba15-1e03-b8d5-f6a0-c947ca33b35csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.285017Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-267entervm-207availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM2/DC1_C0_RP2_VM2.vmdkdatastore-182persistentfalsefalsefalse5248f2b1-0204-b9ba-88ef-ac3b0a974c43100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e9:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15900:50:56:ab:e9:aftrue4000172.16.1.15924dhcppreferrednameassignDC1_C0_RP2_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb621-3405-fcf2-5fa2-912101aec2bdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM2/DC1_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.222975Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-207entervm-210availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM5/DC1_C0_RP2_VM5.vmdkdatastore-182persistentfalsefalsefalse520bd3b1-91e9-d309-5059-af3f84203213100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:16:d8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16200:50:56:ab:16:d8true4000172.16.1.16224dhcppreferrednameassignDC1_C0_RP2_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2bc1-f9d8-c5fb-af0d-dd469a2fad91summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM5/DC1_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.311554Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-210entervm-290availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM7/DC1_C1_RP2_VM7.vmdkdatastore-182persistentfalsefalsefalse52660f21-e299-1d3f-8654-65a5faf88ad9100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:62:61falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23200:50:56:ab:62:61true4000172.16.1.23224dhcppreferrednameassignDC1_C1_RP2_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b88a5-8b1e-a45f-4b38-63a67f4ad714summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM7/DC1_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.34258Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-290entervm-209availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM4/DC1_C0_RP2_VM4.vmdkdatastore-182persistentfalsefalsefalse52858559-24a7-168f-7c5c-a0d18a7186d0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:4b:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16100:50:56:ab:4b:6atrue4000172.16.1.16124dhcppreferrednameassignDC1_C0_RP2_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bae71-f982-6916-fa44-d89e85a01900summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM4/DC1_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.284121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-209entervm-289availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM6/DC1_C1_RP2_VM6.vmdkdatastore-182persistentfalsefalsefalse5287479a-c408-7f87-20fc-2efa4b643035100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a9:93falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23100:50:56:ab:a9:93true4000172.16.1.23124dhcppreferrednameassignDC1_C1_RP2_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0c61-1bd7-580b-7285-1d8e01a2510dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM6/DC1_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.213731Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-289entervm-212availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM7/DC1_C0_RP2_VM7.vmdkdatastore-182persistentfalsefalsefalse5215ebc9-b4da-6a62-1e52-a85a29da38b2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a1:43falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16400:50:56:ab:a1:43true4000172.16.1.16424dhcppreferrednameassignDC1_C0_RP2_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6af3-b66d-a362-28b6-991bea1bd988summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM7/DC1_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.385643Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-212entervm-288availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM5/DC1_C1_RP2_VM5.vmdkdatastore-182persistentfalsefalsefalse52fc7e47-7adc-152e-4398-88958eecafdf100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:bb:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23000:50:56:ab:bb:adtrue4000172.16.1.23024dhcppreferrednameassignDC1_C1_RP2_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8555-1e7b-f7c4-13e4-f66df5514af6summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM5/DC1_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.189254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-288entervm-211availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM6/DC1_C0_RP2_VM6.vmdkdatastore-182persistentfalsefalsefalse52df6798-6491-d370-1cbf-8758a64ada18100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:37:f5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16300:50:56:ab:37:f5true4000172.16.1.16324dhcppreferrednameassignDC1_C0_RP2_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2b2a-9a33-3f2c-544b-fa063efd5f59summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM6/DC1_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.352589Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-211entervm-287availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM4/DC1_C1_RP2_VM4.vmdkdatastore-182persistentfalsefalsefalse5287097e-7e98-44e7-3a35-dda0f72d12cb100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:89:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22900:50:56:ab:89:23true4000172.16.1.22924dhcppreferrednameassignDC1_C1_RP2_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdafc-4b30-8915-78a1-f638dbcfcb66summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM4/DC1_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.169553Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-287entervm-286availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM3/DC1_C1_RP2_VM3.vmdkdatastore-182persistentfalsefalsefalse5208773e-83aa-8df5-7964-cde1728e834e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:68:03falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22800:50:56:ab:68:03true4000172.16.1.22824dhcppreferrednameassignDC1_C1_RP2_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd728-0c0e-3538-3b43-79dbcc6a2513summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM3/DC1_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.118333Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-286entervm-301availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM0/DC1_C1_RP4_VM0.vmdkdatastore-182persistentfalsefalsefalse52fc19ed-6d8e-6bc6-8138-d6020029ae0e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:49:99falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24100:50:56:ab:49:99true4000172.16.1.24124dhcppreferrednameassignDC1_C1_RP4_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf539-5e23-b038-1ac7-075e3ee3fe53summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM0/DC1_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.179948Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-301entervm-328availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM0/DC1_C1_RP7_VM0.vmdkdatastore-182persistentfalsefalsefalse521ce7f4-f56f-7575-08b4-fba002187a42100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:3d:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1100:50:56:ab:3d:5dtrue4000172.16.2.1124dhcppreferrednameassignDC1_C1_RP7_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b76db-6506-4a25-caaa-092894ee97e5summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM0/DC1_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.373178Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-328entervm-329availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM1/DC1_C1_RP7_VM1.vmdkdatastore-182persistentfalsefalsefalse52b509f7-d05b-1313-e414-3017c4bed1b1100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:7b:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1200:50:56:ab:7b:97true4000172.16.2.1224dhcppreferrednameassignDC1_C1_RP7_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1af9-eb2f-be3d-7407-31501a789e42summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM1/DC1_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.387551Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-329entervm-307availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM6/DC1_C1_RP4_VM6.vmdkdatastore-182persistentfalsefalsefalse52480f57-d1b4-f52d-207f-b52973c7b91c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a3:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24700:50:56:ab:a3:a9true4000172.16.1.24724dhcppreferrednameassignDC1_C1_RP4_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b255d-5ddb-ea1e-f5d9-a507ecac5eb7summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM6/DC1_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.269544Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-307entervm-306availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM5/DC1_C1_RP4_VM5.vmdkdatastore-182persistentfalsefalsefalse528663fd-9d0c-25e9-8a1e-02d84c600ddc100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f6:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24600:50:56:ab:f6:eatrue4000172.16.1.24624dhcppreferrednameassignDC1_C1_RP4_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b04bd-a948-0f6e-fe11-0c15c3204347summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM5/DC1_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.254875Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-306entervm-308availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM7/DC1_C1_RP4_VM7.vmdkdatastore-182persistentfalsefalsefalse52253772-782d-11c1-2fed-af82c75cbf4b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:b4:7dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24800:50:56:ab:b4:7dtrue4000172.16.1.24824dhcppreferrednameassignDC1_C1_RP4_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3fad-3d29-7994-0da1-0d5d7bc82c5dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM7/DC1_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.279572Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-308entervm-303availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM2/DC1_C1_RP4_VM2.vmdkdatastore-182persistentfalsefalsefalse52462426-d8c7-0723-644b-a54911993b9f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c0:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24300:50:56:ab:c0:4dtrue4000172.16.1.24324dhcppreferrednameassignDC1_C1_RP4_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0421-5986-c4f6-5051-f2bfd0a689bcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM2/DC1_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.221976Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-303entervm-302availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM1/DC1_C1_RP4_VM1.vmdkdatastore-182persistentfalsefalsefalse5292ea87-81e7-83ca-1a8c-8c37cee206b3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:fa:0ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24200:50:56:ab:fa:0ftrue4000172.16.1.24224dhcppreferrednameassignDC1_C1_RP4_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b02cc-9d7d-27ba-2eed-2981ee20f974summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM1/DC1_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.203554Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-302entervm-305availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM4/DC1_C1_RP4_VM4.vmdkdatastore-182persistentfalsefalsefalse52259f55-76a1-6eb4-7a8d-9bc873083cd5100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:82:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24500:50:56:ab:82:77true4000172.16.1.24524dhcppreferrednameassignDC1_C1_RP4_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b249c-36ca-8b6c-dd3c-9ec5d973f69dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM4/DC1_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.246229Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-305entervm-304availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM3/DC1_C1_RP4_VM3.vmdkdatastore-182persistentfalsefalsefalse52d4af96-9aee-ed29-3264-443da2f1d7c0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:ed:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24400:50:56:ab:ed:8atrue4000172.16.1.24424dhcppreferrednameassignDC1_C1_RP4_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b85c0-eb2f-6940-1237-d5a8785280dfsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM3/DC1_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.236626Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-304true + 0_2session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentervm-163availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP7_VM2/DC0_C1_RP7_VM2.vmdkdatastore-15persistentfalsefalsefalse526ae764-a352-0d19-070a-7795053064a6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a1:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.13100:50:56:ab:a1:97true4000172.16.1.13124dhcppreferrednameassignDC0_C1_RP7_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-160snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b21e8-082e-b20e-0ed8-13c20d0b335asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP7_VM2/DC0_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:02.706443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-163entervm-140availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM6/DC0_C1_RP4_VM6.vmdkdatastore-15persistentfalsefalsefalse52a2f52a-031a-382a-5e7e-30d2fb6bdcb7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:0c:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11100:50:56:ab:0c:aftrue4000172.16.1.11124dhcppreferrednameassignDC0_C1_RP4_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0194-7415-b5d9-8950-4ae584103441summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM6/DC0_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.982732Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-140entervm-86availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM3/DC0_C0_RP7_VM3.vmdkdatastore-15persistentfalsefalsefalse529579bf-f701-cef2-ec1d-b9d87304779f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:e2:bcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6400:50:56:ab:e2:bctrue4000172.16.1.6424dhcppreferrednameassignDC0_C0_RP7_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc815-74e0-6a4f-dbd9-1362ce07ebd8summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM3/DC0_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.074332Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-86entervm-85availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM2/DC0_C0_RP7_VM2.vmdkdatastore-15persistentfalsefalsefalse52d63c1a-52c8-6984-6565-76bcebe57d4e100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:96:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6300:50:56:ab:96:c7true4000172.16.1.6324dhcppreferrednameassignDC0_C0_RP7_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb467-58ed-b044-faf8-c4417c89a53bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM2/DC0_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.048689Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-85entervm-84availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM1/DC0_C0_RP7_VM1.vmdkdatastore-15persistentfalsefalsefalse52f26d60-a6f3-f39b-2b3d-e95f077b8b69100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:4e:20falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6200:50:56:ab:4e:20true4000172.16.1.6224dhcppreferrednameassignDC0_C0_RP7_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c4c-6570-7ceb-391e-31734c40cf7csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM1/DC0_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:37.018231Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-84entervm-83availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP7_VM0/DC0_C0_RP7_VM0.vmdkdatastore-15persistentfalsefalsefalse528334a8-7f2b-99dd-aa4a-600e5a5ece78100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:2c:b0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6100:50:56:ab:2c:b0true4000172.16.1.6124dhcppreferrednameassignDC0_C0_RP7_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-82snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b209b-66d1-5409-b784-958f4266636csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP7_VM0/DC0_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:36.991967Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-83entervm-155availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM3/DC0_C1_RP6_VM3.vmdkdatastore-15persistentfalsefalsefalse525e6efb-e014-01a1-f603-30d8ea8d4904100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:f3:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12400:50:56:ab:f3:1ctrue4000172.16.1.12424dhcppreferrednameassignDC0_C1_RP6_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba5dd-3cf9-5e88-9d98-71e727ef9e6bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM3/DC0_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.416316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-155entervm-81availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM7/DC0_C0_RP6_VM7.vmdkdatastore-15persistentfalsefalsefalse5208825f-72dd-bd3e-bcdd-fbea31445bdd100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:56:51falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.6000:50:56:ab:56:51true4000172.16.1.6024dhcppreferrednameassignDC0_C0_RP6_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b35c7-74a2-3108-1a5b-1ad8771bd6c9summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM7/DC0_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.7044Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-81entervm-150availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM7/DC0_C1_RP5_VM7.vmdkdatastore-15persistentfalsefalsefalse522c2683-535a-9403-2cd0-1812d5a0c419100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:8e:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12000:50:56:ab:8e:cctrue4000172.16.1.12024dhcppreferrednameassignDC0_C1_RP5_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b925b-c4ad-0ef4-8a3f-c78decd68773summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM7/DC0_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.4478Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-150entervm-154availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM2/DC0_C1_RP6_VM2.vmdkdatastore-15persistentfalsefalsefalse527d34ac-7341-8a25-091b-eb463585b218100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e2:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12300:50:56:ab:e2:18true4000172.16.1.12324dhcppreferrednameassignDC0_C1_RP6_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9cd0-4693-d4a2-e07a-21a5a1a120cdsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM2/DC0_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.248416Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-154entervm-153availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM1/DC0_C1_RP6_VM1.vmdkdatastore-15persistentfalsefalsefalse52905228-a42d-354e-2f15-07bf01c2500a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:34:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12200:50:56:ab:34:7ftrue4000172.16.1.12224dhcppreferrednameassignDC0_C1_RP6_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b39f3-755f-eaf7-fb28-ff0875282edasummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM1/DC0_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:00.056327Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-153entervm-31availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmdkdatastore-15persistentfalsefalsefalse52d2b1b9-2d5d-8aa1-6cb9-5ccd50f391ff100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:dd:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1500:50:56:ab:dd:f3true4000172.16.1.1524dhcppreferrednameassignDC0_C0_RP1_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9140-5ed0-1220-d96e-c0338188030asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM2/DC0_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.259336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-31entervm-152availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP6_VM0/DC0_C1_RP6_VM0.vmdkdatastore-15persistentfalsefalsefalse520efb16-df46-de55-7569-d24dd50d047b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:d8:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.12100:50:56:ab:d8:ddtrue4000172.16.1.12124dhcppreferrednameassignDC0_C1_RP6_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-151snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd4c-ab87-0cf7-2075-c5739e6b1d5bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP6_VM0/DC0_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:59.947615Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-152entervm-32availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmdkdatastore-15persistentfalsefalsefalse52dd018c-a782-bfab-cc7e-d40e2e4398c9100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:7c:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1600:50:56:ab:7c:67true4000172.16.1.1624dhcppreferrednameassignDC0_C0_RP1_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fa1-d59b-59d4-5d8c-3e8fba0748cbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM3/DC0_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.270066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-32entervm-33availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmdkdatastore-15persistentfalsefalsefalse5239f423-8fbc-f48a-af70-ebd520529acb100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c2:a3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1700:50:56:ab:c2:a3true4000172.16.1.1724dhcppreferrednameassignDC0_C0_RP1_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b38f2-6eae-e06f-da7a-d874cde49059summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM4/DC0_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.282322Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-33entervm-79availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM5/DC0_C0_RP6_VM5.vmdkdatastore-15persistentfalsefalsefalse525d6760-9ae6-08b2-df74-f42a081cca49100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:65:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5800:50:56:ab:65:78true4000172.16.1.5824dhcppreferrednameassignDC0_C0_RP6_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52af-d544-73e7-bf59-3ebd05f47da6summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM5/DC0_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.651317Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-79entervm-34availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmdkdatastore-15persistentfalsefalsefalse52ad1a6e-0952-3a02-a43b-07d10ac511cf100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:27:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1800:50:56:ab:27:6atrue4000172.16.1.1824dhcppreferrednameassignDC0_C0_RP1_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b25-6dc9-21f7-9cdf-aec4474679cbsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM5/DC0_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.291882Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-34entervm-148availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM5/DC0_C1_RP5_VM5.vmdkdatastore-15persistentfalsefalsefalse529e0bfc-6d66-52de-dc46-a860123da3df100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:df:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11800:50:56:ab:df:6atrue4000172.16.1.11824dhcppreferrednameassignDC0_C1_RP5_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8883-ac33-f0c2-08ea-ae75e2bfca80summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM5/DC0_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.418902Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-148entervm-80availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM6/DC0_C0_RP6_VM6.vmdkdatastore-15persistentfalsefalsefalse52cbf9f8-d61b-6520-1a52-2004632c06f1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:15:e9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5900:50:56:ab:15:e9true4000172.16.1.5924dhcppreferrednameassignDC0_C0_RP6_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9534-584f-4fc4-d707-946c7a318b2csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM6/DC0_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.67862Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-80entervm-35availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmdkdatastore-15persistentfalsefalsefalse526c47b1-e1a9-1c59-afbb-1086b35782c6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:72:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1900:50:56:ab:72:e2true4000172.16.1.1924dhcppreferrednameassignDC0_C0_RP1_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2878-c113-8a56-c00f-097255e315a0summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM6/DC0_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.303039Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-35entervm-149availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM6/DC0_C1_RP5_VM6.vmdkdatastore-15persistentfalsefalsefalse529ccb3e-a3e3-4d2b-175f-683e8e1191a0100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:c9:98falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11900:50:56:ab:c9:98true4000172.16.1.11924dhcppreferrednameassignDC0_C1_RP5_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd5d3-7f95-6ced-c95c-315f46c94f59summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM6/DC0_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.438084Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-149entervm-77availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM3/DC0_C0_RP6_VM3.vmdkdatastore-15persistentfalsefalsefalse526c0d4b-65c7-9d3e-81c3-fca577029920100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:73:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5600:50:56:ab:73:f3true4000172.16.1.5624dhcppreferrednameassignDC0_C0_RP6_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b86d1-3682-0e84-b467-a97b90248de7summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM3/DC0_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.616144Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-77entervm-36availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmdkdatastore-15persistentfalsefalsefalse52d93674-4bcf-1dd5-98f5-b541952ef125100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:8f:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.2000:50:56:ab:8f:6dtrue4000172.16.1.2024dhcppreferrednameassignDC0_C0_RP1_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-28snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44aa-6663-edcc-7ef5-34ceb032be39summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP1_VM7/DC0_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:23.312314Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-36entervm-146availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM3/DC0_C1_RP5_VM3.vmdkdatastore-15persistentfalsefalsefalse525ba451-2251-e0bc-e0db-43e67edcdb52100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:3c:aafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11600:50:56:ab:3c:aatrue4000172.16.1.11624dhcppreferrednameassignDC0_C1_RP5_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9e4e-087a-8c59-057a-0fb2cff3e39bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM3/DC0_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.363561Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-146entervm-78availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM4/DC0_C0_RP6_VM4.vmdkdatastore-15persistentfalsefalsefalse526ad892-cf11-8231-f68a-5ddeb0080b6f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:09:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5700:50:56:ab:09:ectrue4000172.16.1.5724dhcppreferrednameassignDC0_C0_RP6_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbaf3-cca0-73b4-dd18-123b057c697csummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM4/DC0_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.632851Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-78entervm-147availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM4/DC0_C1_RP5_VM4.vmdkdatastore-15persistentfalsefalsefalse5218f06e-3e0f-7302-b4b0-b6ff0ef6902a100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:8e:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11700:50:56:ab:8e:18true4000172.16.1.11724dhcppreferrednameassignDC0_C1_RP5_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf0c5-badf-dd3b-efcd-4d32f3b341f7summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM4/DC0_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.396483Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-147entervm-75availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM1/DC0_C0_RP6_VM1.vmdkdatastore-15persistentfalsefalsefalse5239f394-d756-cf26-a93f-163448e34e45100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:07:3afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5400:50:56:ab:07:3atrue4000172.16.1.5424dhcppreferrednameassignDC0_C0_RP6_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b43da-c713-8558-2606-70db3dacb22bsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM1/DC0_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.573443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-75entervm-144availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM1/DC0_C1_RP5_VM1.vmdkdatastore-15persistentfalsefalsefalse52a8b13b-bbb2-7d65-6259-6fc82971cf1f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:5e:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11400:50:56:ab:5e:7atrue4000172.16.1.11424dhcppreferrednameassignDC0_C1_RP5_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb05e-271b-8442-3d31-6cbb003fa31fsummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM1/DC0_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.331202Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-144entervm-76availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM2/DC0_C0_RP6_VM2.vmdkdatastore-15persistentfalsefalsefalse52180a4c-e1fc-1a14-0014-316eac11a600100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:ff:34falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5500:50:56:ab:ff:34true4000172.16.1.5524dhcppreferrednameassignDC0_C0_RP6_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b82bd-02e2-b6b4-c928-fbcc4cac40f9summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM2/DC0_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.59469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-76entervm-145availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM2/DC0_C1_RP5_VM2.vmdkdatastore-15persistentfalsefalsefalse52e88d62-4e8b-f906-713d-d91dbe0c4688100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:f4:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11500:50:56:ab:f4:0btrue4000172.16.1.11524dhcppreferrednameassignDC0_C1_RP5_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b72a2-14c6-a9f4-0981-cbd94b963fe3summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM2/DC0_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.346499Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-95summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-145entervm-74availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP6_VM0/DC0_C0_RP6_VM0.vmdkdatastore-15persistentfalsefalsefalse52dfd178-8750-959e-f12f-aba84894ad7c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:e0:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.5300:50:56:ab:e0:25true4000172.16.1.5324dhcppreferrednameassignDC0_C0_RP6_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-73snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b828a-7b2f-9366-da3a-7e617c1fafdcsummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP6_VM0/DC0_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:34.552845Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-74entervm-143availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP5_VM0/DC0_C1_RP5_VM0.vmdkdatastore-15persistentfalsefalsefalse523705a6-da92-1791-198d-3e77fcbcaa9c100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a6:52falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.11300:50:56:ab:a6:52true4000172.16.1.11324dhcppreferrednameassignDC0_C1_RP5_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-142snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0e45-79f5-f434-0ef7-f58f80e61549summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP5_VM0/DC0_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:57.297408Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-143entervm-116availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM0/DC0_C1_RP2_VM0.vmdkdatastore-15persistentfalsefalsefalse52d6d509-051e-b3e5-ebab-081cb04cf9ba100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:4f:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.8900:50:56:ab:4f:7btrue4000172.16.1.8924dhcppreferrednameassignDC0_C1_RP2_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c11-d2e4-4e71-f181-46b8ed598c3asummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM0/DC0_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.072457Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-116entervm-135availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM1/DC0_C1_RP4_VM1.vmdkdatastore-15persistentfalsefalsefalse5268dcfa-6ee1-c715-babd-d9f4742b46e4100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:0c:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10600:50:56:ab:0c:57true4000172.16.1.10624dhcppreferrednameassignDC0_C1_RP4_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9db3-f1d8-dee0-8fb0-c13f22c9e6desummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM1/DC0_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.768427Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-135entervm-134availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP4_VM0/DC0_C1_RP4_VM0.vmdkdatastore-15persistentfalsefalsefalse5274e98c-44cf-3c1a-4e51-a58c30a0590b100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:65:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.10500:50:56:ab:65:a9true4000172.16.1.10524dhcppreferrednameassignDC0_C1_RP4_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-133snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd964-df0e-1c2f-ec24-88e47a8cdbf9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP4_VM0/DC0_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:54.728599Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-134entervm-27availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmdkdatastore-15persistentfalsefalsefalse521355c0-9ea2-8f11-fd9e-fdb3f8d19263100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:c8:cbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1200:50:56:ab:c8:cbtrue4000172.16.1.1224dhcppreferrednameassignDC0_C0_RP0_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0cf3-bb57-f366-0783-aa8be09d0202summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM7/DC0_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.33182Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-27entervm-122availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM6/DC0_C1_RP2_VM6.vmdkdatastore-15persistentfalsefalsefalse52d26473-7c9b-18c1-68cd-253bcee61889100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:91:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9500:50:56:ab:91:6atrue4000172.16.1.9524dhcppreferrednameassignDC0_C1_RP2_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9df4-4fe3-5648-338d-ec180f89982esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM6/DC0_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.465207Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-122entervm-121availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM5/DC0_C1_RP2_VM5.vmdkdatastore-15persistentfalsefalsefalse52831796-3ab6-22e2-0aa7-60168d729405100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:2c:dcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9400:50:56:ab:2c:dctrue4000172.16.1.9424dhcppreferrednameassignDC0_C1_RP2_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be260-5966-6e74-6d34-d2a0aa89207esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM5/DC0_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.43273Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-121entervm-24availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmdkdatastore-15persistentfalsefalsefalse52bb4641-c4f6-e1f0-72be-69f1979c5212100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:40:75falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.900:50:56:ab:40:75true4000172.16.1.924dhcppreferrednameassignDC0_C0_RP0_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48e7-169b-8b18-a170-72485f8024f7summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM4/DC0_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.293433Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-16summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-24entervm-123availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM7/DC0_C1_RP2_VM7.vmdkdatastore-15persistentfalsefalsefalse52f5f1d5-81e6-10be-e114-7cddddd0e82f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:64:04falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9600:50:56:ab:64:04true4000172.16.1.9624dhcppreferrednameassignDC0_C1_RP2_VM7parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44d0-f78f-c779-0e07-0ddf331a5c80summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM7/DC0_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.517092Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-123entervm-23availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmdkdatastore-15persistentfalsefalsefalse5218c3d2-dca9-b981-d57b-afae9747d3b7100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:62:aefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.800:50:56:ab:62:aetrue4000172.16.1.824dhcppreferrednameassignDC0_C0_RP0_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6fed-ba9c-f920-4afe-0d1073ee7ff2summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM3/DC0_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.28148Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-23entervm-118availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM2/DC0_C1_RP2_VM2.vmdkdatastore-15persistentfalsefalsefalse5205592b-0b88-07d0-6f85-a8a1a2692f42100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:9f:31falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9100:50:56:ab:9f:31true4000172.16.1.9124dhcppreferrednameassignDC0_C1_RP2_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2826-b787-a07b-5aee-067baccf12e9summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM2/DC0_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.16757Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-118entervm-26availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmdkdatastore-15persistentfalsefalsefalse52924b3c-f0e1-8aa2-bcf5-9714ff2047d6100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:a6:dffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1100:50:56:ab:a6:dftrue4000172.16.1.1124dhcppreferrednameassignDC0_C0_RP0_VM6parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b350b-d571-7fc1-e164-c88a6ebec977summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM6/DC0_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.320387Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-17summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-26entervm-117availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM1/DC0_C1_RP2_VM1.vmdkdatastore-15persistentfalsefalsefalse5266284f-f289-491b-6b35-93880392fdcb100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:73:4afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9000:50:56:ab:73:4atrue4000172.16.1.9024dhcppreferrednameassignDC0_C1_RP2_VM1parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5231-3e9b-2fc4-ad9f-23ab1e032875summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM1/DC0_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.125404Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-93summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-117entervm-25availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmdkdatastore-15persistentfalsefalsefalse52096638-db6a-430c-b1da-719ec6e53455100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:41:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.1000:50:56:ab:41:66true4000172.16.1.1024dhcppreferrednameassignDC0_C0_RP0_VM5parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2dce-2789-ecd2-2621-5bdf8fd3bcd3summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM5/DC0_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.306917Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-25entervm-120availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM4/DC0_C1_RP2_VM4.vmdkdatastore-15persistentfalsefalsefalse523ecc90-a6b5-f18e-8544-9c96628325d1100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:29:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9300:50:56:ab:29:adtrue4000172.16.1.9324dhcppreferrednameassignDC0_C1_RP2_VM4parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9035-ef81-c07e-0639-731d494ac220summary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM4/DC0_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.400847Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-96summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-120entervm-20availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmdkdatastore-15persistentfalsefalsefalse52dcc784-25cf-8e79-9379-ad7ad50e5126100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:cf:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.500:50:56:ab:cf:08true4000172.16.1.524dhcppreferrednameassignDC0_C0_RP0_VM0parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba845-09e4-e6e6-b6fb-6918f6246059summary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM0/DC0_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.223356Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-14summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-20entervm-119availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C1_RP2_VM3/DC0_C1_RP2_VM3.vmdkdatastore-15persistentfalsefalsefalse52abc641-862e-449e-c1ca-7b6faf63415f100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-11truetruetrue1003Assigned00:50:56:ab:b5:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.9200:50:56:ab:b5:7btrue4000172.16.1.9224dhcppreferrednameassignDC0_C1_RP2_VM3parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-115snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5e3d-3e6e-fbe2-5a79-6e685a3da15esummary.config.vmPathNameassign[GlobalDS_0] DC0_C1_RP2_VM3/DC0_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:48.342087Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-94summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-119entervm-22availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmdkdatastore-15persistentfalsefalsefalse52fc0c7a-bee9-6e61-cd70-db6f1c9b6626100005242884000DVSwitch: 4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7b4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7bdvportgroup-10truetruetrue1003Assigned00:50:56:ab:aa:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-15guest.netassign172.16.1.700:50:56:ab:aa:22true4000172.16.1.724dhcppreferrednameassignDC0_C0_RP0_VM2parentassigngroup-v3resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-19snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC0_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1abf-967f-3d1f-6711-18dab9e8de7asummary.config.vmPathNameassign[GlobalDS_0] DC0_C0_RP0_VM2/DC0_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC0_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:06:22.266021Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-18summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-22enterdvportgroup-9config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-9config.nameassignDC0_DVS-DVUplinks-8hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVS-DVUplinks-8parentassigngroup-n6summary.nameassignDC0_DVS-DVUplinks-8tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-11config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-11config.nameassignDC0_DVPG1hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVPG1parentassigngroup-n6summary.nameassignDC0_DVPG1tagassignenterdvportgroup-10config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-8config.keyassigndvportgroup-10config.nameassignDC0_DVPG0hostassignhost-18host-17host-96host-14host-16host-95host-94host-93nameassignDC0_DVPG0parentassigngroup-n6summary.nameassignDC0_DVPG0tagassignenterdvs-8config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-9nameassignDC0_DVSparentassigngroup-n6summary.hostassignsummary.hostMemberassignhost-14host-16host-17host-18host-93host-94host-95host-96summary.nameassignDC0_DVSsummary.uuidassign4e 1f 2b 50 19 20 4c f7-f3 11 41 90 35 76 52 7benternetwork-7nameassignVM Networkparentassigngroup-n6enterdomain-c91configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-93host-94host-95host-96nameassignDC0_C1parentassigngroup-h4resourcePoolassignresgroup-92summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c12configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-14host-16host-17host-18nameassignDC0_C0parentassigngroup-h4resourcePoolassignresgroup-13summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-15capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-18/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-17/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-96/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-16/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-14/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-95/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-94/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-93/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s5summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-15summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-188availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmdkdatastore-182persistentfalsefalsefalse52de28bc-0d0b-faa4-5b3e-d9f4a7c3a7c8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:06:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14200:50:56:ab:06:4ftrue4000172.16.1.14224dhcppreferrednameassignDC1_C0_RP0_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1f2e-08d8-6a57-10d6-4021823a796fsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM1/DC1_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.192253Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-188entervm-319availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM0/DC1_C1_RP6_VM0.vmdkdatastore-182persistentfalsefalsefalse52626127-736c-9792-e881-8f1f46a6cdcd100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:0b:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.300:50:56:ab:0b:22true4000172.16.2.324dhcppreferrednameassignDC1_C1_RP6_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b49f1-dc66-e02a-4e2a-669f75fc71fdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM0/DC1_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.266959Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-319entervm-214availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM0/DC1_C0_RP3_VM0.vmdkdatastore-182persistentfalsefalsefalse526bdbed-992f-573c-2724-4089d3518304100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:18:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16500:50:56:ab:18:b5true4000172.16.1.16524dhcppreferrednameassignDC1_C0_RP3_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb179-47fa-65b3-8982-ef430ca7ef41summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM0/DC1_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.885576Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-214entervm-187availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmdkdatastore-182persistentfalsefalsefalse527a2986-f5e0-e28c-c41a-cc8bf263040b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:90:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14100:50:56:ab:90:6ftrue4000172.16.1.14124dhcppreferrednameassignDC1_C0_RP0_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b77f7-8f65-a018-bc66-8168ea3c620esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM0/DC1_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.143077Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-187entervm-190availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmdkdatastore-182persistentfalsefalsefalse5280716d-f1ce-b2b9-7548-8caed143f25f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:8e:31falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14400:50:56:ab:8e:31true4000172.16.1.14424dhcppreferrednameassignDC1_C0_RP0_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c9c-8f5a-1c24-f399-03250be1797csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM3/DC1_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.251519Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-190entervm-266availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmdkdatastore-182persistentfalsefalsefalse523047a0-10ce-d7aa-42b7-04084c728d55100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:1f:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21000:50:56:ab:1f:91true4000172.16.1.21024dhcppreferrednameassignDC1_C1_RP0_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc592-0910-9a2e-1dde-a61bc5ea4f13summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM1/DC1_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.267838Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-266entervm-189availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmdkdatastore-182persistentfalsefalsefalse5287f3eb-feb3-c8ad-d7e7-9af46b7ea718100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:69:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14300:50:56:ab:69:45true4000172.16.1.14324dhcppreferrednameassignDC1_C0_RP0_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd419-89d9-276e-5b81-5dd37328f4bbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM2/DC1_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.229645Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-189entervm-265availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmdkdatastore-182persistentfalsefalsefalse52a44e2e-e198-c61a-e6ce-23b946985e88100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fe:1ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20900:50:56:ab:fe:1ftrue4000172.16.1.20924dhcppreferrednameassignDC1_C1_RP0_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b884b-fc52-c1a4-5fc7-d919e6d029f4summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM0/DC1_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.253447Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-265entervm-192availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmdkdatastore-182persistentfalsefalsefalse52f6de55-d853-1ea8-52a4-6754ace8dbe8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:1e:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14600:50:56:ab:1e:00true4000172.16.1.14624dhcppreferrednameassignDC1_C0_RP0_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b82ff-0ad5-f4e3-9e0b-26a18e547c3csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM5/DC1_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.288874Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-192entervm-250availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM0/DC1_C0_RP7_VM0.vmdkdatastore-182persistentfalsefalsefalse52615f24-ea2c-f3e9-220a-eaebe787d85b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:1c:fcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19700:50:56:ab:1c:fctrue4000172.16.1.19724dhcppreferrednameassignDC1_C0_RP7_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6a4c-a9f8-61ea-0f25-63cd80b6b3casummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM0/DC1_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.095583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-250entervm-191availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmdkdatastore-182persistentfalsefalsefalse52289988-55c6-c1b7-1095-0300460b004a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a1:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14500:50:56:ab:a1:e0true4000172.16.1.14524dhcppreferrednameassignDC1_C0_RP0_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7bea-e61f-b04b-eecf-c65aa33d5206summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM4/DC1_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.271437Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-191entervm-251availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM1/DC1_C0_RP7_VM1.vmdkdatastore-182persistentfalsefalsefalse5270ab1f-a276-5e53-347d-67a7efe49af2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:d4:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19800:50:56:ab:d4:2etrue4000172.16.1.19824dhcppreferrednameassignDC1_C0_RP7_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb44d-4512-5da7-64d5-0056b6136450summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM1/DC1_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.104364Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-251entervm-252availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM2/DC1_C0_RP7_VM2.vmdkdatastore-182persistentfalsefalsefalse52686a93-c163-8d49-64ba-2690c4471979100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fd:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19900:50:56:ab:fd:aftrue4000172.16.1.19924dhcppreferrednameassignDC1_C0_RP7_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4c68-1487-ed7a-700b-122143e773d1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM2/DC1_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.11336Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-252entervm-270availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmdkdatastore-182persistentfalsefalsefalse52181aa2-657d-66d4-0414-3c510cb98e19100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:61:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21400:50:56:ab:61:77true4000172.16.1.21424dhcppreferrednameassignDC1_C1_RP0_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba1c7-e1fe-21f9-fd0f-424014760784summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM5/DC1_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.334975Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-270entervm-206availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM1/DC1_C0_RP2_VM1.vmdkdatastore-182persistentfalsefalsefalse525e7b25-2f2d-5496-749c-cee9296f3c43100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:79:18falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15800:50:56:ab:79:18true4000172.16.1.15824dhcppreferrednameassignDC1_C0_RP2_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb26d-0b01-835a-eecc-3838e9e214e3summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM1/DC1_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.189846Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-206entervm-253availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM3/DC1_C0_RP7_VM3.vmdkdatastore-182persistentfalsefalsefalse52def41e-30d5-9aef-7cfd-d4d55319776a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:2f:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20000:50:56:ab:2f:5dtrue4000172.16.1.20024dhcppreferrednameassignDC1_C0_RP7_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0566-da95-973b-c274-1e8f06eb5022summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM3/DC1_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.122918Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-253entervm-269availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmdkdatastore-182persistentfalsefalsefalse52c1437c-b24b-51a0-1f8c-5ea1d3877d12100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:1d:dafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21300:50:56:ab:1d:datrue4000172.16.1.21324dhcppreferrednameassignDC1_C1_RP0_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58d5-af20-9ff1-bcf1-0bbedcb2076fsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM4/DC1_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.32133Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-269entervm-205availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM0/DC1_C0_RP2_VM0.vmdkdatastore-182persistentfalsefalsefalse52025013-f93c-bd19-a858-a4188e81a62d100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:3a:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15700:50:56:ab:3a:45true4000172.16.1.15724dhcppreferrednameassignDC1_C0_RP2_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bed9b-234e-7c6f-f9a5-7167f54e8e4csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM0/DC1_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.158784Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-205entervm-254availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM4/DC1_C0_RP7_VM4.vmdkdatastore-182persistentfalsefalsefalse521fad5f-0d42-5de9-1fc7-e4087ed83b2e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:80:fbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20100:50:56:ab:80:fbtrue4000172.16.1.20124dhcppreferrednameassignDC1_C0_RP7_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b83b4-3319-fed5-e163-d0178c5dac93summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM4/DC1_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.137935Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-254entervm-268availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmdkdatastore-182persistentfalsefalsefalse52a24215-aca0-f7af-8887-d9d9c3689d53100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:05:a5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21200:50:56:ab:05:a5true4000172.16.1.21224dhcppreferrednameassignDC1_C1_RP0_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c9e-25f0-72a5-fe78-30131c1b4e70summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM3/DC1_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.302938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-268entervm-208availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM3/DC1_C0_RP2_VM3.vmdkdatastore-182persistentfalsefalsefalse526f4389-cf38-b2db-a080-7cb9983bd968100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:bb:19falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16000:50:56:ab:bb:19true4000172.16.1.16024dhcppreferrednameassignDC1_C0_RP2_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422badaf-11a9-09da-d4cf-fe378c029265summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM3/DC1_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.246067Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-208entervm-255availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM5/DC1_C0_RP7_VM5.vmdkdatastore-182persistentfalsefalsefalse52e7f67f-66f4-43da-73c6-8d1f60c19a94100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:55:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20200:50:56:ab:55:1ctrue4000172.16.1.20224dhcppreferrednameassignDC1_C0_RP7_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c03-2cbc-101b-b981-1165c2e2d39csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM5/DC1_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.146736Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-255entervm-267availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmdkdatastore-182persistentfalsefalsefalse52e37ebb-39a7-9d6b-bc5e-0a4153a5b8d4100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e8:52falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21100:50:56:ab:e8:52true4000172.16.1.21124dhcppreferrednameassignDC1_C1_RP0_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bba15-1e03-b8d5-f6a0-c947ca33b35csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM2/DC1_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.285017Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-267entervm-207availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM2/DC1_C0_RP2_VM2.vmdkdatastore-182persistentfalsefalsefalse5248f2b1-0204-b9ba-88ef-ac3b0a974c43100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e9:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15900:50:56:ab:e9:aftrue4000172.16.1.15924dhcppreferrednameassignDC1_C0_RP2_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb621-3405-fcf2-5fa2-912101aec2bdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM2/DC1_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.222975Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-207entervm-210availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM5/DC1_C0_RP2_VM5.vmdkdatastore-182persistentfalsefalsefalse520bd3b1-91e9-d309-5059-af3f84203213100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:16:d8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16200:50:56:ab:16:d8true4000172.16.1.16224dhcppreferrednameassignDC1_C0_RP2_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2bc1-f9d8-c5fb-af0d-dd469a2fad91summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM5/DC1_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.311554Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-210entervm-290availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM7/DC1_C1_RP2_VM7.vmdkdatastore-182persistentfalsefalsefalse52660f21-e299-1d3f-8654-65a5faf88ad9100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:62:61falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23200:50:56:ab:62:61true4000172.16.1.23224dhcppreferrednameassignDC1_C1_RP2_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b88a5-8b1e-a45f-4b38-63a67f4ad714summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM7/DC1_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.34258Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-290entervm-209availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM4/DC1_C0_RP2_VM4.vmdkdatastore-182persistentfalsefalsefalse52858559-24a7-168f-7c5c-a0d18a7186d0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:4b:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16100:50:56:ab:4b:6atrue4000172.16.1.16124dhcppreferrednameassignDC1_C0_RP2_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bae71-f982-6916-fa44-d89e85a01900summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM4/DC1_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.284121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-209entervm-289availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM6/DC1_C1_RP2_VM6.vmdkdatastore-182persistentfalsefalsefalse5287479a-c408-7f87-20fc-2efa4b643035100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a9:93falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23100:50:56:ab:a9:93true4000172.16.1.23124dhcppreferrednameassignDC1_C1_RP2_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0c61-1bd7-580b-7285-1d8e01a2510dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM6/DC1_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.213731Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-289entervm-212availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM7/DC1_C0_RP2_VM7.vmdkdatastore-182persistentfalsefalsefalse5215ebc9-b4da-6a62-1e52-a85a29da38b2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a1:43falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16400:50:56:ab:a1:43true4000172.16.1.16424dhcppreferrednameassignDC1_C0_RP2_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6af3-b66d-a362-28b6-991bea1bd988summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM7/DC1_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.385643Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-212entervm-288availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM5/DC1_C1_RP2_VM5.vmdkdatastore-182persistentfalsefalsefalse52fc7e47-7adc-152e-4398-88958eecafdf100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:bb:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23000:50:56:ab:bb:adtrue4000172.16.1.23024dhcppreferrednameassignDC1_C1_RP2_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8555-1e7b-f7c4-13e4-f66df5514af6summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM5/DC1_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.189254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-288entervm-211availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP2_VM6/DC1_C0_RP2_VM6.vmdkdatastore-182persistentfalsefalsefalse52df6798-6491-d370-1cbf-8758a64ada18100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:37:f5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16300:50:56:ab:37:f5true4000172.16.1.16324dhcppreferrednameassignDC1_C0_RP2_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-204snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2b2a-9a33-3f2c-544b-fa063efd5f59summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP2_VM6/DC1_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:14.352589Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-211entervm-287availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM4/DC1_C1_RP2_VM4.vmdkdatastore-182persistentfalsefalsefalse5287097e-7e98-44e7-3a35-dda0f72d12cb100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:89:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22900:50:56:ab:89:23true4000172.16.1.22924dhcppreferrednameassignDC1_C1_RP2_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdafc-4b30-8915-78a1-f638dbcfcb66summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM4/DC1_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.169553Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-287entervm-286availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM3/DC1_C1_RP2_VM3.vmdkdatastore-182persistentfalsefalsefalse5208773e-83aa-8df5-7964-cde1728e834e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:68:03falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22800:50:56:ab:68:03true4000172.16.1.22824dhcppreferrednameassignDC1_C1_RP2_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd728-0c0e-3538-3b43-79dbcc6a2513summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM3/DC1_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.118333Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-286entervm-301availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM0/DC1_C1_RP4_VM0.vmdkdatastore-182persistentfalsefalsefalse52fc19ed-6d8e-6bc6-8138-d6020029ae0e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:49:99falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24100:50:56:ab:49:99true4000172.16.1.24124dhcppreferrednameassignDC1_C1_RP4_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf539-5e23-b038-1ac7-075e3ee3fe53summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM0/DC1_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.179948Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-301entervm-328availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM0/DC1_C1_RP7_VM0.vmdkdatastore-182persistentfalsefalsefalse521ce7f4-f56f-7575-08b4-fba002187a42100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:3d:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1100:50:56:ab:3d:5dtrue4000172.16.2.1124dhcppreferrednameassignDC1_C1_RP7_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b76db-6506-4a25-caaa-092894ee97e5summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM0/DC1_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.373178Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-328entervm-329availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM1/DC1_C1_RP7_VM1.vmdkdatastore-182persistentfalsefalsefalse52b509f7-d05b-1313-e414-3017c4bed1b1100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:7b:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1200:50:56:ab:7b:97true4000172.16.2.1224dhcppreferrednameassignDC1_C1_RP7_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1af9-eb2f-be3d-7407-31501a789e42summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM1/DC1_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.387551Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-329entervm-307availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM6/DC1_C1_RP4_VM6.vmdkdatastore-182persistentfalsefalsefalse52480f57-d1b4-f52d-207f-b52973c7b91c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a3:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24700:50:56:ab:a3:a9true4000172.16.1.24724dhcppreferrednameassignDC1_C1_RP4_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b255d-5ddb-ea1e-f5d9-a507ecac5eb7summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM6/DC1_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.269544Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-307entervm-306availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM5/DC1_C1_RP4_VM5.vmdkdatastore-182persistentfalsefalsefalse528663fd-9d0c-25e9-8a1e-02d84c600ddc100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f6:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24600:50:56:ab:f6:eatrue4000172.16.1.24624dhcppreferrednameassignDC1_C1_RP4_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b04bd-a948-0f6e-fe11-0c15c3204347summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM5/DC1_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.254875Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-306entervm-308availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM7/DC1_C1_RP4_VM7.vmdkdatastore-182persistentfalsefalsefalse52253772-782d-11c1-2fed-af82c75cbf4b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:b4:7dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24800:50:56:ab:b4:7dtrue4000172.16.1.24824dhcppreferrednameassignDC1_C1_RP4_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3fad-3d29-7994-0da1-0d5d7bc82c5dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM7/DC1_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.279572Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-308entervm-303availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM2/DC1_C1_RP4_VM2.vmdkdatastore-182persistentfalsefalsefalse52462426-d8c7-0723-644b-a54911993b9f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c0:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24300:50:56:ab:c0:4dtrue4000172.16.1.24324dhcppreferrednameassignDC1_C1_RP4_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0421-5986-c4f6-5051-f2bfd0a689bcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM2/DC1_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.221976Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-303entervm-302availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM1/DC1_C1_RP4_VM1.vmdkdatastore-182persistentfalsefalsefalse5292ea87-81e7-83ca-1a8c-8c37cee206b3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:fa:0ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24200:50:56:ab:fa:0ftrue4000172.16.1.24224dhcppreferrednameassignDC1_C1_RP4_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b02cc-9d7d-27ba-2eed-2981ee20f974summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM1/DC1_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.203554Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-302entervm-305availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM4/DC1_C1_RP4_VM4.vmdkdatastore-182persistentfalsefalsefalse52259f55-76a1-6eb4-7a8d-9bc873083cd5100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:82:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24500:50:56:ab:82:77true4000172.16.1.24524dhcppreferrednameassignDC1_C1_RP4_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b249c-36ca-8b6c-dd3c-9ec5d973f69dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM4/DC1_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.246229Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-305entervm-304availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP4_VM3/DC1_C1_RP4_VM3.vmdkdatastore-182persistentfalsefalsefalse52d4af96-9aee-ed29-3264-443da2f1d7c0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:ed:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24400:50:56:ab:ed:8atrue4000172.16.1.24424dhcppreferrednameassignDC1_C1_RP4_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-300snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b85c0-eb2f-6940-1237-d5a8785280dfsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP4_VM3/DC1_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:50.236626Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-304true http_version: - recorded_at: Thu, 03 May 2018 18:07:56 GMT + recorded_at: Mon, 07 May 2018 16:15:29 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -368,7 +368,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -382,7 +382,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:57 GMT + - Mon, 7 May 2018 16:15:30 GMT Cache-Control: - no-cache Connection: @@ -402,11 +402,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_3session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entervm-230availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM7/DC1_C0_RP4_VM7.vmdkdatastore-182persistentfalsefalsefalse525899eb-936a-1799-9105-6df33f7bd566100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:be:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18000:50:56:ab:be:44true4000172.16.1.18024dhcppreferrednameassignDC1_C0_RP4_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b21e0-020d-777e-cdf4-dbb751bea185summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM7/DC1_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.082355Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-230entervm-229availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM6/DC1_C0_RP4_VM6.vmdkdatastore-182persistentfalsefalsefalse525ca251-1ae7-7f9e-217c-62e43d13bb44100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:b0:0cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17900:50:56:ab:b0:0ctrue4000172.16.1.17924dhcppreferrednameassignDC1_C0_RP4_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba45a-b211-5096-3e2e-059ed92cf314summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM6/DC1_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.047711Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-229entervm-224availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM1/DC1_C0_RP4_VM1.vmdkdatastore-182persistentfalsefalsefalse523c8c9b-ce4a-860a-e5c7-e28719a42faa100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a2:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17400:50:56:ab:a2:e0true4000172.16.1.17424dhcppreferrednameassignDC1_C0_RP4_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fb8-ea4a-47ca-cd09-6a8d64687bfbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM1/DC1_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.786003Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-224entervm-223availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM0/DC1_C0_RP4_VM0.vmdkdatastore-182persistentfalsefalsefalse52233bb6-b211-2827-ab49-b033e16b50b2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:2a:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17300:50:56:ab:2a:57true4000172.16.1.17324dhcppreferrednameassignDC1_C0_RP4_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2634-e1a5-b7b8-b4c8-ad58de4405b6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM0/DC1_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.744327Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-223entervm-228availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM5/DC1_C0_RP4_VM5.vmdkdatastore-182persistentfalsefalsefalse52e0c02b-0879-a82c-2dc1-2f0bc63f66e3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:95:81falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17800:50:56:ab:95:81true4000172.16.1.17824dhcppreferrednameassignDC1_C0_RP4_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b7f-5bb9-52d8-114b-aebdc7e1fdabsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM5/DC1_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.000951Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-228entervm-227availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM4/DC1_C0_RP4_VM4.vmdkdatastore-182persistentfalsefalsefalse520ad52f-4b3d-6d20-19da-b62f47e9520e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:5e:dbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17700:50:56:ab:5e:dbtrue4000172.16.1.17724dhcppreferrednameassignDC1_C0_RP4_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8efb-5b3d-d02a-866e-37be9d260ab5summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM4/DC1_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.943642Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-227entervm-280availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmdkdatastore-182persistentfalsefalsefalse524dcf83-fb1d-d2b4-7b07-f93cf3e705d5100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:67:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22300:50:56:ab:67:f1true4000172.16.1.22324dhcppreferrednameassignDC1_C1_RP1_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b011d-2ab0-c8ed-2554-58915effd678summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.937347Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-280entervm-226availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM3/DC1_C0_RP4_VM3.vmdkdatastore-182persistentfalsefalsefalse528b00d5-7ad6-0888-821e-7cd5428f8989100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:b7:6bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17600:50:56:ab:b7:6btrue4000172.16.1.17624dhcppreferrednameassignDC1_C0_RP4_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf5f-f710-91da-18ba-8250b33614f6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM3/DC1_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.894318Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-226entervm-281availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmdkdatastore-182persistentfalsefalsefalse52b35541-d310-7841-1731-555e981ad560100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:36:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22400:50:56:ab:36:batrue4000172.16.1.22424dhcppreferrednameassignDC1_C1_RP1_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc2fd-f1c5-68e3-98ec-56030cf0ef6csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.963467Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-281entervm-225availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM2/DC1_C0_RP4_VM2.vmdkdatastore-182persistentfalsefalsefalse5214ce65-41c2-21b1-4ca8-3e2d4d52eaf7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:d0:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17500:50:56:ab:d0:c2true4000172.16.1.17524dhcppreferrednameassignDC1_C0_RP4_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b910f-5c46-e26a-1be3-2ca3cc2712c6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM2/DC1_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.847037Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-225entervm-274availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmdkdatastore-182persistentfalsefalsefalse5275db1c-0478-5795-c639-e0c82c67e2d0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e6:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21700:50:56:ab:e6:6ctrue4000172.16.1.21724dhcppreferrednameassignDC1_C1_RP1_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bae4d-7946-c643-abe3-878e100c62b2summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.819741Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-274entervm-275availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmdkdatastore-182persistentfalsefalsefalse52ac1408-fb10-008d-b993-f507f377c544100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:bdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21800:50:56:ab:0a:bdtrue4000172.16.1.21824dhcppreferrednameassignDC1_C1_RP1_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34b1-060c-3a8f-d313-cea0ad66ca98summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.83825Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-275entervm-278availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmdkdatastore-182persistentfalsefalsefalse52301de6-a76f-ba1f-b49e-ef9123aea37b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:58:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22100:50:56:ab:58:67true4000172.16.1.22124dhcppreferrednameassignDC1_C1_RP1_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c84-8925-0cde-dcc9-0c8c7647f7fbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.899951Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-278entervm-279availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmdkdatastore-182persistentfalsefalsefalse5287f208-1bbd-5ef1-d0d9-06e414e4984b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:63:f0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22200:50:56:ab:63:f0true4000172.16.1.22224dhcppreferrednameassignDC1_C1_RP1_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b809d-3a91-90e4-6e95-2219cc00f375summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.91865Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-279entervm-276availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmdkdatastore-182persistentfalsefalsefalse52533ad1-4404-84f9-043c-fa36527120a2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fe:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21900:50:56:ab:fe:5dtrue4000172.16.1.21924dhcppreferrednameassignDC1_C1_RP1_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ebc-f951-c533-31bb-9a5f7d5141dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.862347Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-276entervm-277availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmdkdatastore-182persistentfalsefalsefalse52ef602c-7baa-9e61-bec3-648baa426408100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:03:c4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22000:50:56:ab:03:c4true4000172.16.1.22024dhcppreferrednameassignDC1_C1_RP1_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b796f-0b51-4f7a-1490-0f4d49981471summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.882779Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-277entervm-292availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM0/DC1_C1_RP3_VM0.vmdkdatastore-182persistentfalsefalsefalse52bdade9-0fef-ae90-a2e9-b0da34328dc7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:eb:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23300:50:56:ab:eb:e8true4000172.16.1.23324dhcppreferrednameassignDC1_C1_RP3_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6fea-2723-7f71-0ec6-b0afe39e7037summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM0/DC1_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.006722Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-292entervm-293availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM1/DC1_C1_RP3_VM1.vmdkdatastore-182persistentfalsefalsefalse52102817-e962-2e4f-7fcc-21545c317a92100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e3:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23400:50:56:ab:e3:cctrue4000172.16.1.23424dhcppreferrednameassignDC1_C1_RP3_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba67e-fea6-d662-ac3e-c083e824a428summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM1/DC1_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.07597Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-293entervm-294availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM2/DC1_C1_RP3_VM2.vmdkdatastore-182persistentfalsefalsefalse52104d46-564b-fd6c-3a21-ba06a6872d83100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e2:1ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23500:50:56:ab:e2:1ftrue4000172.16.1.23524dhcppreferrednameassignDC1_C1_RP3_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc243-dbed-3c2f-6d10-d2568e6bd32csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM2/DC1_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.108094Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-294entervm-295availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM3/DC1_C1_RP3_VM3.vmdkdatastore-182persistentfalsefalsefalse52d8d2a1-69c9-4f91-fde4-a2ea5d095fbe100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c1:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23600:50:56:ab:c1:f1true4000172.16.1.23624dhcppreferrednameassignDC1_C1_RP3_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2400-4799-0842-4516-375294305b48summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM3/DC1_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.145283Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-295entervm-296availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM4/DC1_C1_RP3_VM4.vmdkdatastore-182persistentfalsefalsefalse526b18dc-af61-c172-360c-7ab0a20c2996100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c0:38falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23700:50:56:ab:c0:38true4000172.16.1.23724dhcppreferrednameassignDC1_C1_RP3_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b082f-794b-981c-c1e3-eb52306060a6summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM4/DC1_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.17167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-296entervm-297availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM5/DC1_C1_RP3_VM5.vmdkdatastore-182persistentfalsefalsefalse521f4f9f-de00-6ffe-c28a-37d414eb9254100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:aa:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23800:50:56:ab:aa:5btrue4000172.16.1.23824dhcppreferrednameassignDC1_C1_RP3_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc517-1ab9-bed2-eca1-c3c6b463ec24summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM5/DC1_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.195571Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-297entervm-298availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM6/DC1_C1_RP3_VM6.vmdkdatastore-182persistentfalsefalsefalse5213b03a-5119-5824-6706-3ea50b8cb01b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:0c:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23900:50:56:ab:0c:5btrue4000172.16.1.23924dhcppreferrednameassignDC1_C1_RP3_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2089-b9e2-6cff-a02e-483b3f272d7bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM6/DC1_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.222469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-298entervm-299availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM7/DC1_C1_RP3_VM7.vmdkdatastore-182persistentfalsefalsefalse52d87e69-d9c5-3d95-049f-ab1e1312d217100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:3c:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24000:50:56:ab:3c:6atrue4000172.16.1.24024dhcppreferrednameassignDC1_C1_RP3_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6578-8cf3-a7f7-f666-ce44fe1fd54asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM7/DC1_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.261937Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-299entervm-241availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM0/DC1_C0_RP6_VM0.vmdkdatastore-182persistentfalsefalsefalse52236482-64a7-2476-5d80-66a6a08d7361100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:83:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18900:50:56:ab:83:71true4000172.16.1.18924dhcppreferrednameassignDC1_C0_RP6_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be012-80e8-7757-fabf-b676ae15a85esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM0/DC1_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.843361Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-241entervm-219availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM5/DC1_C0_RP3_VM5.vmdkdatastore-182persistentfalsefalsefalse5220cdda-5ebe-2e2b-82f0-2c0f7b515988100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:62:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17000:50:56:ab:62:cctrue4000172.16.1.17024dhcppreferrednameassignDC1_C0_RP3_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b06de-fe73-b89f-c5c0-8373f5e3d267summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM5/DC1_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.983528Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-219entervm-203availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmdkdatastore-182persistentfalsefalsefalse52a2baf0-925e-598c-44e0-63a7c3614757100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:38:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15600:50:56:ab:38:72true4000172.16.1.15624dhcppreferrednameassignDC1_C0_RP1_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf198-fde5-9b94-5afa-153096c3154asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.170066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-203entervm-220availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM6/DC1_C0_RP3_VM6.vmdkdatastore-182persistentfalsefalsefalse5208d28b-9ae7-f860-fb59-9f2025780fda100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c6:1dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17100:50:56:ab:c6:1dtrue4000172.16.1.17124dhcppreferrednameassignDC1_C0_RP3_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfb16-2e9b-b513-0557-422d92e40093summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM6/DC1_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:16.001507Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-220entervm-221availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM7/DC1_C0_RP3_VM7.vmdkdatastore-182persistentfalsefalsefalse52828bef-faec-3ee3-da6a-b699fc033a88100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:24:cafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17200:50:56:ab:24:catrue4000172.16.1.17224dhcppreferrednameassignDC1_C0_RP3_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb85d-2254-1215-1f3f-f51a1a4ddc0csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM7/DC1_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:16.03261Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-221entervm-247availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM6/DC1_C0_RP6_VM6.vmdkdatastore-182persistentfalsefalsefalse52105dde-4fe3-4228-9479-277596733d63100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:32:0efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19500:50:56:ab:32:0etrue4000172.16.1.19524dhcppreferrednameassignDC1_C0_RP6_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1e75-6059-3c14-b0ba-a59cf37b9bfasummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM6/DC1_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:23.024329Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-247entervm-246availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM5/DC1_C0_RP6_VM5.vmdkdatastore-182persistentfalsefalsefalse526852fe-d886-1059-36f0-530e0e508f64100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:72:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19400:50:56:ab:72:4dtrue4000172.16.1.19424dhcppreferrednameassignDC1_C0_RP6_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9e8-1bc9-70f7-4f38-162d27ee110asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM5/DC1_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.992252Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-246entervm-199availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmdkdatastore-182persistentfalsefalsefalse5262d950-adcf-8f9c-f5e3-659ad00b45da100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e5:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15200:50:56:ab:e5:ddtrue4000172.16.1.15224dhcppreferrednameassignDC1_C0_RP1_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b025b-cbce-4e2f-350d-f30926f086bdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.995442Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-199entervm-239availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM7/DC1_C0_RP5_VM7.vmdkdatastore-182persistentfalsefalsefalse5285aa28-14e3-4da3-1922-5c1aae3cec3e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:34:13falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18800:50:56:ab:34:13true4000172.16.1.18824dhcppreferrednameassignDC1_C0_RP5_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44f5-d345-6abe-8966-5fc736df2e69summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM7/DC1_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.877775Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-239entervm-200availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmdkdatastore-182persistentfalsefalsefalse52784781-dcfe-cb0c-37a1-1465cd92f643100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:d4:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15300:50:56:ab:d4:aftrue4000172.16.1.15324dhcppreferrednameassignDC1_C0_RP1_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58f3-4ab4-755f-a47f-344238bbdb03summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.018752Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-200entervm-248availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM7/DC1_C0_RP6_VM7.vmdkdatastore-182persistentfalsefalsefalse52d2842f-bc8b-e9d4-53bd-476918457c5c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:8a:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19600:50:56:ab:8a:actrue4000172.16.1.19624dhcppreferrednameassignDC1_C0_RP6_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc7ee-0ed3-b950-1f07-8f3b41055e86summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM7/DC1_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:23.041097Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-248entervm-326availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM7/DC1_C1_RP6_VM7.vmdkdatastore-182persistentfalsefalsefalse526cfe45-d5b2-c857-c66a-26f70b17d367100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:97:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1000:50:56:ab:97:09true4000172.16.2.1024dhcppreferrednameassignDC1_C1_RP6_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6188-fe82-f737-c321-29f0022dd55bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM7/DC1_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.3942Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-326entervm-201availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmdkdatastore-182persistentfalsefalsefalse52b94e62-4418-16d3-ba0b-d5b8ba084710100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:5a:3efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15400:50:56:ab:5a:3etrue4000172.16.1.15424dhcppreferrednameassignDC1_C0_RP1_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbbbf-a20f-5121-bfa3-e9ae3faa37a5summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.067968Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-201entervm-237availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM5/DC1_C0_RP5_VM5.vmdkdatastore-182persistentfalsefalsefalse526214c4-a933-166d-a4ab-c9e9608a11f7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f9:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18600:50:56:ab:f9:84true4000172.16.1.18624dhcppreferrednameassignDC1_C0_RP5_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3dbc-7ab4-2078-fb9f-838b616f94b2summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM5/DC1_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.802488Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-237entervm-243availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM2/DC1_C0_RP6_VM2.vmdkdatastore-182persistentfalsefalsefalse52ac035b-6e1a-45a4-b0f4-33785e96fd21100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:34:9efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19100:50:56:ab:34:9etrue4000172.16.1.19124dhcppreferrednameassignDC1_C0_RP6_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6662-765c-fba7-da19-8df712c4138asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM2/DC1_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.918978Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-243entervm-325availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM6/DC1_C1_RP6_VM6.vmdkdatastore-182persistentfalsefalsefalse521d4edf-ad91-01db-6ce8-c093140c33a0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:70:99falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.900:50:56:ab:70:99true4000172.16.2.924dhcppreferrednameassignDC1_C1_RP6_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5ab2-37ab-a082-a183-c20be4a2adfdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM6/DC1_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.37708Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-325entervm-202availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmdkdatastore-182persistentfalsefalsefalse5209c66f-5e5a-caac-5246-7f3c66ef212c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:5e:fbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15500:50:56:ab:5e:fbtrue4000172.16.1.15524dhcppreferrednameassignDC1_C0_RP1_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b47c1-fc87-cadf-2540-e658fcbbe78bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.140061Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-202entervm-238availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM6/DC1_C0_RP5_VM6.vmdkdatastore-182persistentfalsefalsefalse5254f744-3a88-cd99-f97c-be6a1017b8af100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:6d:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18700:50:56:ab:6d:7ftrue4000172.16.1.18724dhcppreferrednameassignDC1_C0_RP5_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48b8-2bd5-3d02-4d46-d4c6841b6d26summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM6/DC1_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.843439Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-238entervm-242availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM1/DC1_C0_RP6_VM1.vmdkdatastore-182persistentfalsefalsefalse522c8e49-5a07-224d-b03b-1fa6663fa451100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c7:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19000:50:56:ab:c7:0atrue4000172.16.1.19024dhcppreferrednameassignDC1_C0_RP6_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b42b6-7d71-6f6d-1e17-62887c9f072bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM1/DC1_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.875411Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-242entervm-324availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM5/DC1_C1_RP6_VM5.vmdkdatastore-182persistentfalsefalsefalse527aeb12-5b06-4439-8db0-2c9153f92102100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:5f:95falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.800:50:56:ab:5f:95true4000172.16.2.824dhcppreferrednameassignDC1_C1_RP6_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b379b-bfd7-1543-7c9c-186b4e29a40dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM5/DC1_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.362676Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-324entervm-235availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM3/DC1_C0_RP5_VM3.vmdkdatastore-182persistentfalsefalsefalse52297795-47c8-9bcd-6a11-8dfef36b9925100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f7:1dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18400:50:56:ab:f7:1dtrue4000172.16.1.18424dhcppreferrednameassignDC1_C0_RP5_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9e1-060f-e5ba-9c13-baf1f80c7668summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM3/DC1_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.729751Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-235entervm-245availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM4/DC1_C0_RP6_VM4.vmdkdatastore-182persistentfalsefalsefalse52d2b4bf-a85a-8d3c-1b37-eb3fa0577e13100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:41:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19300:50:56:ab:41:adtrue4000172.16.1.19324dhcppreferrednameassignDC1_C0_RP6_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2eca-165e-22db-db45-3f87067ae314summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM4/DC1_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.971856Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-245entervm-236availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM4/DC1_C0_RP5_VM4.vmdkdatastore-182persistentfalsefalsefalse52cebd19-5347-3133-3f58-b16d816c0217100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:9d:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18500:50:56:ab:9d:eatrue4000172.16.1.18524dhcppreferrednameassignDC1_C0_RP5_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd6d0-3790-79a5-ab3d-9925f160e1c4summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM4/DC1_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.761827Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-236entervm-244availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM3/DC1_C0_RP6_VM3.vmdkdatastore-182persistentfalsefalsefalse5209db1f-b6ff-1345-6488-d647a640b726100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:17:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19200:50:56:ab:17:actrue4000172.16.1.19224dhcppreferrednameassignDC1_C0_RP6_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2049-3c72-7a30-dfe7-f07f3389572asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM3/DC1_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.94874Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-244entervm-196availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmdkdatastore-182persistentfalsefalsefalse5275a425-ebf2-3b8f-0be6-7f2ce2faab6c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:91:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14900:50:56:ab:91:25true4000172.16.1.14924dhcppreferrednameassignDC1_C0_RP1_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7a1d-8403-c426-836b-d6d43cca7126summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.904152Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-196entervm-233availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM1/DC1_C0_RP5_VM1.vmdkdatastore-182persistentfalsefalsefalse525819aa-a785-4988-d2e5-1d0e6d41e618100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18200:50:56:ab:0a:fatrue4000172.16.1.18224dhcppreferrednameassignDC1_C0_RP5_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6345-c06b-b3c0-78b4-0344fb6e321esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM1/DC1_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.667415Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-233entervm-197availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmdkdatastore-182persistentfalsefalsefalse52311486-264d-884d-1ce9-026df840107f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:6a:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15000:50:56:ab:6a:8ctrue4000172.16.1.15024dhcppreferrednameassignDC1_C0_RP1_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc463-bd6b-be4a-ebd8-79a6e4d05aeesummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.943651Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-197entervm-285availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM2/DC1_C1_RP2_VM2.vmdkdatastore-182persistentfalsefalsefalse526029cb-8e33-cd89-2aee-c1f28320eb36100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:6c:55falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22700:50:56:ab:6c:55true4000172.16.1.22724dhcppreferrednameassignDC1_C1_RP2_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b906c-16c0-7927-d15b-574dc81a56dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM2/DC1_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.106199Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-285entervm-234availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM2/DC1_C0_RP5_VM2.vmdkdatastore-182persistentfalsefalsefalse52318152-a46e-0e94-ae71-ec81d97a4bc1100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:13:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18300:50:56:ab:13:d7true4000172.16.1.18324dhcppreferrednameassignDC1_C0_RP5_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b329b-c1d7-b234-8213-219b5621ba77summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM2/DC1_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.693812Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-234entervm-198availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmdkdatastore-182persistentfalsefalsefalse52f18d13-42f1-53bf-a75a-d8a748bfc967100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:50:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15100:50:56:ab:50:4ftrue4000172.16.1.15124dhcppreferrednameassignDC1_C0_RP1_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc574-ea38-2373-23e0-ace8601afd61summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.968797Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-198entervm-284availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM1/DC1_C1_RP2_VM1.vmdkdatastore-182persistentfalsefalsefalse520fdc97-8375-365d-7a56-eca25b19db40100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:af:83falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22600:50:56:ab:af:83true4000172.16.1.22624dhcppreferrednameassignDC1_C1_RP2_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be242-d034-8efd-2f77-d5e9ac6216f5summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM1/DC1_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.095815Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-284entervm-194availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmdkdatastore-182persistentfalsefalsefalse520f1f4f-23cb-59c6-8b13-c693b7ca3d47100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:72:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14800:50:56:ab:72:fatrue4000172.16.1.14824dhcppreferrednameassignDC1_C0_RP0_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b281d-f0c8-201a-e28f-a4ba48d9d021summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.325523Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-194entervm-283availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM0/DC1_C1_RP2_VM0.vmdkdatastore-182persistentfalsefalsefalse52eed02d-9291-d428-ba1b-42f680202d38100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:2f:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22500:50:56:ab:2f:71true4000172.16.1.22524dhcppreferrednameassignDC1_C1_RP2_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9efb-467f-6acd-9449-9ec7a4fd1691summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM0/DC1_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.083283Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-283entervm-312availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM2/DC1_C1_RP5_VM2.vmdkdatastore-182persistentfalsefalsefalse525bef1d-7b04-8837-d703-e41b86418aa4100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:04:2dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25100:50:56:ab:04:2dtrue4000172.16.1.25124dhcppreferrednameassignDC1_C1_RP5_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be6ea-7264-15d8-b09b-f9f851824f85summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM2/DC1_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.660013Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-312entervm-232availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM0/DC1_C0_RP5_VM0.vmdkdatastore-182persistentfalsefalsefalse5285244d-0678-ccb6-f2fc-5246ddbc0ab8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:88:63falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18100:50:56:ab:88:63true4000172.16.1.18124dhcppreferrednameassignDC1_C0_RP5_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4878-dde7-3704-0084-ef38f5a0a540summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM0/DC1_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.629872Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-232entervm-193availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmdkdatastore-182persistentfalsefalsefalse523781b8-e6f0-db03-279d-42fb836a3b5a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:34:64falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14700:50:56:ab:34:64true4000172.16.1.14724dhcppreferrednameassignDC1_C0_RP0_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b62c8-1863-f2a0-458d-86a599dcc6f9summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.301546Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-193entervm-313availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM3/DC1_C1_RP5_VM3.vmdkdatastore-182persistentfalsefalsefalse52a60e28-d653-2b8c-e755-f4ad40c9b084100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a0:4afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25200:50:56:ab:a0:4atrue4000172.16.1.25224dhcppreferrednameassignDC1_C1_RP5_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3ddb-a9f0-c3bd-84c2-f83bf092839esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM3/DC1_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.705224Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-313entervm-310availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM0/DC1_C1_RP5_VM0.vmdkdatastore-182persistentfalsefalsefalse52971b8f-aec1-017f-a225-9810d2dfc68c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a0:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24900:50:56:ab:a0:d0true4000172.16.1.24924dhcppreferrednameassignDC1_C1_RP5_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1753-32ec-820a-c982-9186822c68f3summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM0/DC1_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.569858Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-310entervm-311availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM1/DC1_C1_RP5_VM1.vmdkdatastore-182persistentfalsefalsefalse526e1eeb-0847-61ee-9a99-5b4d8b68d94c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0e:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25000:50:56:ab:0e:32true4000172.16.1.25024dhcppreferrednameassignDC1_C1_RP5_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1647-e73b-42a1-b0e7-d84c5ef4f08esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM1/DC1_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.612235Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-311entervm-316availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM6/DC1_C1_RP5_VM6.vmdkdatastore-182persistentfalsefalsefalse52dc481d-1cf0-591b-132a-0dc251236b32100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e9:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.100:50:56:ab:e9:b7true4000172.16.2.124dhcppreferrednameassignDC1_C1_RP5_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9273-80f1-3fcf-ddf5-55644d4d9ea9summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM6/DC1_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.765519Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-316entervm-317availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM7/DC1_C1_RP5_VM7.vmdkdatastore-182persistentfalsefalsefalse523bdcf5-d16b-d821-5641-0dd7eee48498100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:6e:86falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.200:50:56:ab:6e:86true4000172.16.2.224dhcppreferrednameassignDC1_C1_RP5_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beb50-a265-42b4-6887-4b6c25334736summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM7/DC1_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.784465Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-317entervm-314availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM4/DC1_C1_RP5_VM4.vmdkdatastore-182persistentfalsefalsefalse52d5c9c7-105f-949d-7542-a87da296d2ee100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:db:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25300:50:56:ab:db:97true4000172.16.1.25324dhcppreferrednameassignDC1_C1_RP5_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be827-d368-0d1f-123c-ed7ca4e81f35summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM4/DC1_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.735215Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-314entervm-330availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM2/DC1_C1_RP7_VM2.vmdkdatastore-182persistentfalsefalsefalse52ac1361-d348-3ce0-e416-8cd6fa1f454f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e8:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1300:50:56:ab:e8:d0true4000172.16.2.1324dhcppreferrednameassignDC1_C1_RP7_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b70ea-21b1-4f2a-ce7b-2d536dcd42dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM2/DC1_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.399035Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-330entervm-215availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM1/DC1_C0_RP3_VM1.vmdkdatastore-182persistentfalsefalsefalse524574c5-968c-db2b-0e86-4421e3d0974f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:80:e4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16600:50:56:ab:80:e4true4000172.16.1.16624dhcppreferrednameassignDC1_C0_RP3_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ed6-372b-3580-ce26-90381af0f4b1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM1/DC1_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.904114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-215entervm-315availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM5/DC1_C1_RP5_VM5.vmdkdatastore-182persistentfalsefalsefalse52a1b394-2ea5-5a61-a238-268910fac001100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e9:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25400:50:56:ab:e9:76true4000172.16.1.25424dhcppreferrednameassignDC1_C1_RP5_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9500-e18b-fa60-3a81-225e4b8321d0summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM5/DC1_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.751485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-315entervm-331availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM3/DC1_C1_RP7_VM3.vmdkdatastore-182persistentfalsefalsefalse521bbd85-3744-6a81-99ef-fb4d16827c49100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:4a:12falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1400:50:56:ab:4a:12true4000172.16.2.1424dhcppreferrednameassignDC1_C1_RP7_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b99ee-dbb6-0541-8ef3-3af894426f83summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM3/DC1_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.410875Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-331entervm-216availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM2/DC1_C0_RP3_VM2.vmdkdatastore-182persistentfalsefalsefalse52ee95af-3cfe-d973-e62a-f3394337a732100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:cb:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16700:50:56:ab:cb:59true4000172.16.1.16724dhcppreferrednameassignDC1_C0_RP3_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5443-460f-3ecb-5fdc-01d2298fd615summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM2/DC1_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.922298Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-216entervm-256availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM6/DC1_C0_RP7_VM6.vmdkdatastore-182persistentfalsefalsefalse52a72304-9e3b-d391-d7ce-892eef05d4b3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:50:defalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20300:50:56:ab:50:detrue4000172.16.1.20324dhcppreferrednameassignDC1_C0_RP7_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5a3d-96f8-71cd-199a-e6529f5075e8summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM6/DC1_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.156889Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-256entervm-332availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM4/DC1_C1_RP7_VM4.vmdkdatastore-182persistentfalsefalsefalse527e64dc-009e-e5f6-b7da-a7ab930e590a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:b4:d5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1500:50:56:ab:b4:d5true4000172.16.2.1524dhcppreferrednameassignDC1_C1_RP7_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b168b-a58a-bba2-6266-6a84ffecce0bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM4/DC1_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.423048Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-332entervm-217availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM3/DC1_C0_RP3_VM3.vmdkdatastore-182persistentfalsefalsefalse52b859f6-2a05-cb18-d68e-1b9d23ec232e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:dffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16800:50:56:ab:0a:dftrue4000172.16.1.16824dhcppreferrednameassignDC1_C0_RP3_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7056-451c-0545-5f5c-dabae8d5bf0asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM3/DC1_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.945822Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-217entervm-257availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM7/DC1_C0_RP7_VM7.vmdkdatastore-182persistentfalsefalsefalse52c95ce2-542a-0014-7dc9-199b59cf2bb6100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:40:9dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20400:50:56:ab:40:9dtrue4000172.16.1.20424dhcppreferrednameassignDC1_C0_RP7_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6021-749c-da24-1dea-88d274f765c1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM7/DC1_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.166357Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-257entervm-323availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM4/DC1_C1_RP6_VM4.vmdkdatastore-182persistentfalsefalsefalse526549e9-89cd-49e4-187c-b51bae3e0c67100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:80:cafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.700:50:56:ab:80:catrue4000172.16.2.724dhcppreferrednameassignDC1_C1_RP6_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be4cd-6229-24ba-db3f-1144cd03decesummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM4/DC1_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.348052Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-323entervm-333availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM5/DC1_C1_RP7_VM5.vmdkdatastore-182persistentfalsefalsefalse52a4ad2e-1b20-cb3a-7a0c-da349c7705c2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c8:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1600:50:56:ab:c8:8ctrue4000172.16.2.1624dhcppreferrednameassignDC1_C1_RP7_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5804-3002-982d-0769-5690562fee7asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM5/DC1_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.43482Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-333entervm-272availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmdkdatastore-182persistentfalsefalsefalse520da2fc-3fdb-9a7b-a9d0-cd8d17e440ab100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:91:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21600:50:56:ab:91:47true4000172.16.1.21624dhcppreferrednameassignDC1_C1_RP0_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f87-705e-bd62-d170-b1ffbd196ca4summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.366149Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-272entervm-218availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM4/DC1_C0_RP3_VM4.vmdkdatastore-182persistentfalsefalsefalse52920b2d-21cd-c029-309e-64b6f484c7e2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c5:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16900:50:56:ab:c5:c8true4000172.16.1.16924dhcppreferrednameassignDC1_C0_RP3_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba38b-c2b3-0170-b3a5-9abc7a83907asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM4/DC1_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.96375Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-218entervm-322availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM3/DC1_C1_RP6_VM3.vmdkdatastore-182persistentfalsefalsefalse529f223a-2050-f943-8c19-6cf72cdd8de3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:d3:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.600:50:56:ab:d3:d3true4000172.16.2.624dhcppreferrednameassignDC1_C1_RP6_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6529-77aa-c865-1be8-0b1d9f59ed97summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM3/DC1_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.335748Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-322entervm-334availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM6/DC1_C1_RP7_VM6.vmdkdatastore-182persistentfalsefalsefalse527e9978-1af4-fbb9-2b1a-829a5da59c5f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:ee:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1700:50:56:ab:ee:66true4000172.16.2.1724dhcppreferrednameassignDC1_C1_RP7_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf6a8-912f-7922-778d-aff69aa7ddcfsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM6/DC1_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.44588Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-334entervm-271availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmdkdatastore-182persistentfalsefalsefalse521931bc-81ab-ec0b-3db1-fc4dfdc448dc100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:ce:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21500:50:56:ab:ce:5ctrue4000172.16.1.21524dhcppreferrednameassignDC1_C1_RP0_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b968d-822a-727f-663b-19d44c4aed3esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.349068Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-271entervm-321availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM2/DC1_C1_RP6_VM2.vmdkdatastore-182persistentfalsefalsefalse52807b30-ebcc-6c68-0a4c-00ad205d7c32100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:7a:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.500:50:56:ab:7a:76true4000172.16.2.524dhcppreferrednameassignDC1_C1_RP6_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc866-c60b-7528-17c6-5f8e76d74f43summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM2/DC1_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.309051Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-321entervm-335availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM7/DC1_C1_RP7_VM7.vmdkdatastore-182persistentfalsefalsefalse526f2f25-fc0d-7a72-081d-46519b10e467100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:11:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1800:50:56:ab:11:e8true4000172.16.2.1824dhcppreferrednameassignDC1_C1_RP7_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd2a2-e4f9-b148-c0ae-a8a866a1790esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM7/DC1_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.45794Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-335entervm-320availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM1/DC1_C1_RP6_VM1.vmdkdatastore-182persistentfalsefalsefalse52d5bd3a-eda6-8e63-3834-c8deac8ba93d100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:19:28falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.400:50:56:ab:19:28true4000172.16.2.424dhcppreferrednameassignDC1_C1_RP6_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1bff-fa23-c1dc-ec8a-0e341d6ad904summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM1/DC1_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.287553Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-320enterdvportgroup-176config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-176config.nameassignDC1_DVS-DVUplinks-175hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVS-DVUplinks-175parentassigngroup-n173summary.nameassignDC1_DVS-DVUplinks-175tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-178config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-178config.nameassignDC1_DVPG1hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVPG1parentassigngroup-n173summary.nameassignDC1_DVPG1tagassignenterdvportgroup-177config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-177config.nameassignDC1_DVPG0hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVPG0parentassigngroup-n173summary.nameassignDC1_DVPG0tagassignenterdvs-175config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-176nameassignDC1_DVSparentassigngroup-n173summary.hostassignsummary.hostMemberassignhost-181host-183host-184host-185host-260host-261host-262host-263summary.nameassignDC1_DVSsummary.uuidassign5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11enternetwork-174nameassignVM Networkparentassigngroup-n173enterdomain-c258configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-260host-261host-262host-263nameassignDC1_C1parentassigngroup-h171resourcePoolassignresgroup-259summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c179configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-181host-183host-184host-185nameassignDC1_C0parentassigngroup-h171resourcePoolassignresgroup-180summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-182capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-261/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-262/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-185/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-263/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-181/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-183/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-184/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-260/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s172summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-182summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-406availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM7/DC2_C0_RP5_VM7.vmdkdatastore-349persistentfalsefalsefalse52eb4c0d-1604-fe56-435f-10a82cbe395d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c6:46falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7000:50:56:ab:c6:46true4000172.16.2.7024dhcppreferrednameassignDC2_C0_RP5_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba782-a032-0772-aadb-8d8af936f7a9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM7/DC2_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.983033Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-406entervm-393availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM3/DC2_C0_RP4_VM3.vmdkdatastore-349persistentfalsefalsefalse5280f930-8abc-0fc5-270d-e0eb1fc36036100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ec:5efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5800:50:56:ab:ec:5etrue4000172.16.2.5824dhcppreferrednameassignDC2_C0_RP4_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422befc4-1698-5ce5-3320-1537eb9420b1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM3/DC2_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.01051Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-393entervm-394availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM4/DC2_C0_RP4_VM4.vmdkdatastore-349persistentfalsefalsefalse527f1583-3cfc-f4bb-e644-bcd676a07a07100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:bb:21falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5900:50:56:ab:bb:21true4000172.16.2.5924dhcppreferrednameassignDC2_C0_RP4_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc0a3-ed34-a35c-98a0-1b64c9af5018summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM4/DC2_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.035759Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-394entervm-404availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM5/DC2_C0_RP5_VM5.vmdkdatastore-349persistentfalsefalsefalse52a23f25-9184-61a6-1132-79997921707d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7f:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6800:50:56:ab:7f:09true4000172.16.2.6824dhcppreferrednameassignDC2_C0_RP5_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3e6e-2db7-ac12-7089-0835d617465asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM5/DC2_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.964595Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-404entervm-391availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM1/DC2_C0_RP4_VM1.vmdkdatastore-349persistentfalsefalsefalse52182d49-fcf8-448c-c7e7-13634ec9ce00100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:68:effalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5600:50:56:ab:68:eftrue4000172.16.2.5624dhcppreferrednameassignDC2_C0_RP4_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9fc-2b71-53d2-2b29-c202db4b7647summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM1/DC2_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.962586Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-391entervm-405availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM6/DC2_C0_RP5_VM6.vmdkdatastore-349persistentfalsefalsefalse524a743e-29fa-a63d-3d88-1b899f39f7ec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:13:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6900:50:56:ab:13:f1true4000172.16.2.6924dhcppreferrednameassignDC2_C0_RP5_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd816-9db5-9fe2-f58c-1cff78a32c75summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM6/DC2_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.974195Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-405entervm-392availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM2/DC2_C0_RP4_VM2.vmdkdatastore-349persistentfalsefalsefalse5295ca7a-7df3-eafe-d46f-04f09ae77223100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6f:abfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5700:50:56:ab:6f:abtrue4000172.16.2.5724dhcppreferrednameassignDC2_C0_RP4_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb5eb-8f62-6a8a-e094-d6417fb132d1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM2/DC2_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.992872Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-392true + 0_3session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentervm-230availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM7/DC1_C0_RP4_VM7.vmdkdatastore-182persistentfalsefalsefalse525899eb-936a-1799-9105-6df33f7bd566100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:be:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18000:50:56:ab:be:44true4000172.16.1.18024dhcppreferrednameassignDC1_C0_RP4_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b21e0-020d-777e-cdf4-dbb751bea185summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM7/DC1_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.082355Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-230entervm-229availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM6/DC1_C0_RP4_VM6.vmdkdatastore-182persistentfalsefalsefalse525ca251-1ae7-7f9e-217c-62e43d13bb44100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:b0:0cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17900:50:56:ab:b0:0ctrue4000172.16.1.17924dhcppreferrednameassignDC1_C0_RP4_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba45a-b211-5096-3e2e-059ed92cf314summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM6/DC1_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.047711Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-229entervm-224availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM1/DC1_C0_RP4_VM1.vmdkdatastore-182persistentfalsefalsefalse523c8c9b-ce4a-860a-e5c7-e28719a42faa100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a2:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17400:50:56:ab:a2:e0true4000172.16.1.17424dhcppreferrednameassignDC1_C0_RP4_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fb8-ea4a-47ca-cd09-6a8d64687bfbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM1/DC1_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.786003Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-224entervm-223availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM0/DC1_C0_RP4_VM0.vmdkdatastore-182persistentfalsefalsefalse52233bb6-b211-2827-ab49-b033e16b50b2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:2a:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17300:50:56:ab:2a:57true4000172.16.1.17324dhcppreferrednameassignDC1_C0_RP4_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2634-e1a5-b7b8-b4c8-ad58de4405b6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM0/DC1_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.744327Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-223entervm-228availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM5/DC1_C0_RP4_VM5.vmdkdatastore-182persistentfalsefalsefalse52e0c02b-0879-a82c-2dc1-2f0bc63f66e3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:95:81falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17800:50:56:ab:95:81true4000172.16.1.17824dhcppreferrednameassignDC1_C0_RP4_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b7f-5bb9-52d8-114b-aebdc7e1fdabsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM5/DC1_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:18.000951Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-228entervm-227availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM4/DC1_C0_RP4_VM4.vmdkdatastore-182persistentfalsefalsefalse520ad52f-4b3d-6d20-19da-b62f47e9520e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:5e:dbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17700:50:56:ab:5e:dbtrue4000172.16.1.17724dhcppreferrednameassignDC1_C0_RP4_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8efb-5b3d-d02a-866e-37be9d260ab5summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM4/DC1_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.943642Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-227entervm-280availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmdkdatastore-182persistentfalsefalsefalse524dcf83-fb1d-d2b4-7b07-f93cf3e705d5100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:67:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22300:50:56:ab:67:f1true4000172.16.1.22324dhcppreferrednameassignDC1_C1_RP1_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b011d-2ab0-c8ed-2554-58915effd678summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM6/DC1_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.937347Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-280entervm-226availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM3/DC1_C0_RP4_VM3.vmdkdatastore-182persistentfalsefalsefalse528b00d5-7ad6-0888-821e-7cd5428f8989100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:b7:6bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17600:50:56:ab:b7:6btrue4000172.16.1.17624dhcppreferrednameassignDC1_C0_RP4_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf5f-f710-91da-18ba-8250b33614f6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM3/DC1_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.894318Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-226entervm-281availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmdkdatastore-182persistentfalsefalsefalse52b35541-d310-7841-1731-555e981ad560100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:36:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22400:50:56:ab:36:batrue4000172.16.1.22424dhcppreferrednameassignDC1_C1_RP1_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc2fd-f1c5-68e3-98ec-56030cf0ef6csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM7/DC1_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.963467Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-281entervm-225availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP4_VM2/DC1_C0_RP4_VM2.vmdkdatastore-182persistentfalsefalsefalse5214ce65-41c2-21b1-4ca8-3e2d4d52eaf7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:d0:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17500:50:56:ab:d0:c2true4000172.16.1.17524dhcppreferrednameassignDC1_C0_RP4_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-222snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b910f-5c46-e26a-1be3-2ca3cc2712c6summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP4_VM2/DC1_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:17.847037Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-225entervm-274availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmdkdatastore-182persistentfalsefalsefalse5275db1c-0478-5795-c639-e0c82c67e2d0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e6:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21700:50:56:ab:e6:6ctrue4000172.16.1.21724dhcppreferrednameassignDC1_C1_RP1_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bae4d-7946-c643-abe3-878e100c62b2summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM0/DC1_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.819741Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-274entervm-275availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmdkdatastore-182persistentfalsefalsefalse52ac1408-fb10-008d-b993-f507f377c544100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:bdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21800:50:56:ab:0a:bdtrue4000172.16.1.21824dhcppreferrednameassignDC1_C1_RP1_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34b1-060c-3a8f-d313-cea0ad66ca98summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM1/DC1_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.83825Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-275entervm-278availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmdkdatastore-182persistentfalsefalsefalse52301de6-a76f-ba1f-b49e-ef9123aea37b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:58:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22100:50:56:ab:58:67true4000172.16.1.22124dhcppreferrednameassignDC1_C1_RP1_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c84-8925-0cde-dcc9-0c8c7647f7fbsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM4/DC1_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.899951Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-278entervm-279availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmdkdatastore-182persistentfalsefalsefalse5287f208-1bbd-5ef1-d0d9-06e414e4984b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:63:f0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22200:50:56:ab:63:f0true4000172.16.1.22224dhcppreferrednameassignDC1_C1_RP1_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b809d-3a91-90e4-6e95-2219cc00f375summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM5/DC1_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.91865Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-279entervm-276availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmdkdatastore-182persistentfalsefalsefalse52533ad1-4404-84f9-043c-fa36527120a2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:fe:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21900:50:56:ab:fe:5dtrue4000172.16.1.21924dhcppreferrednameassignDC1_C1_RP1_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ebc-f951-c533-31bb-9a5f7d5141dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM2/DC1_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.862347Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-276entervm-277availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmdkdatastore-182persistentfalsefalsefalse52ef602c-7baa-9e61-bec3-648baa426408100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:03:c4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22000:50:56:ab:03:c4true4000172.16.1.22024dhcppreferrednameassignDC1_C1_RP1_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-273snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b796f-0b51-4f7a-1490-0f4d49981471summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP1_VM3/DC1_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:36.882779Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-277entervm-292availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM0/DC1_C1_RP3_VM0.vmdkdatastore-182persistentfalsefalsefalse52bdade9-0fef-ae90-a2e9-b0da34328dc7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:eb:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23300:50:56:ab:eb:e8true4000172.16.1.23324dhcppreferrednameassignDC1_C1_RP3_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6fea-2723-7f71-0ec6-b0afe39e7037summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM0/DC1_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.006722Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-292entervm-293availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM1/DC1_C1_RP3_VM1.vmdkdatastore-182persistentfalsefalsefalse52102817-e962-2e4f-7fcc-21545c317a92100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e3:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23400:50:56:ab:e3:cctrue4000172.16.1.23424dhcppreferrednameassignDC1_C1_RP3_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba67e-fea6-d662-ac3e-c083e824a428summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM1/DC1_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.07597Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-293entervm-294availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM2/DC1_C1_RP3_VM2.vmdkdatastore-182persistentfalsefalsefalse52104d46-564b-fd6c-3a21-ba06a6872d83100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e2:1ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23500:50:56:ab:e2:1ftrue4000172.16.1.23524dhcppreferrednameassignDC1_C1_RP3_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc243-dbed-3c2f-6d10-d2568e6bd32csummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM2/DC1_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.108094Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-294entervm-295availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM3/DC1_C1_RP3_VM3.vmdkdatastore-182persistentfalsefalsefalse52d8d2a1-69c9-4f91-fde4-a2ea5d095fbe100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c1:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23600:50:56:ab:c1:f1true4000172.16.1.23624dhcppreferrednameassignDC1_C1_RP3_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2400-4799-0842-4516-375294305b48summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM3/DC1_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.145283Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-295entervm-296availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM4/DC1_C1_RP3_VM4.vmdkdatastore-182persistentfalsefalsefalse526b18dc-af61-c172-360c-7ab0a20c2996100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c0:38falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23700:50:56:ab:c0:38true4000172.16.1.23724dhcppreferrednameassignDC1_C1_RP3_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b082f-794b-981c-c1e3-eb52306060a6summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM4/DC1_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.17167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-296entervm-297availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM5/DC1_C1_RP3_VM5.vmdkdatastore-182persistentfalsefalsefalse521f4f9f-de00-6ffe-c28a-37d414eb9254100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:aa:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23800:50:56:ab:aa:5btrue4000172.16.1.23824dhcppreferrednameassignDC1_C1_RP3_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc517-1ab9-bed2-eca1-c3c6b463ec24summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM5/DC1_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.195571Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-297entervm-298availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM6/DC1_C1_RP3_VM6.vmdkdatastore-182persistentfalsefalsefalse5213b03a-5119-5824-6706-3ea50b8cb01b100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:0c:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.23900:50:56:ab:0c:5btrue4000172.16.1.23924dhcppreferrednameassignDC1_C1_RP3_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2089-b9e2-6cff-a02e-483b3f272d7bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM6/DC1_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.222469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-298entervm-299availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP3_VM7/DC1_C1_RP3_VM7.vmdkdatastore-182persistentfalsefalsefalse52d87e69-d9c5-3d95-049f-ab1e1312d217100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:3c:6afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24000:50:56:ab:3c:6atrue4000172.16.1.24024dhcppreferrednameassignDC1_C1_RP3_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-291snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6578-8cf3-a7f7-f666-ce44fe1fd54asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP3_VM7/DC1_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:48.261937Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-299entervm-241availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM0/DC1_C0_RP6_VM0.vmdkdatastore-182persistentfalsefalsefalse52236482-64a7-2476-5d80-66a6a08d7361100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:83:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18900:50:56:ab:83:71true4000172.16.1.18924dhcppreferrednameassignDC1_C0_RP6_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be012-80e8-7757-fabf-b676ae15a85esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM0/DC1_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.843361Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-241entervm-219availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM5/DC1_C0_RP3_VM5.vmdkdatastore-182persistentfalsefalsefalse5220cdda-5ebe-2e2b-82f0-2c0f7b515988100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:62:ccfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17000:50:56:ab:62:cctrue4000172.16.1.17024dhcppreferrednameassignDC1_C0_RP3_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b06de-fe73-b89f-c5c0-8373f5e3d267summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM5/DC1_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.983528Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-219entervm-203availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmdkdatastore-182persistentfalsefalsefalse52a2baf0-925e-598c-44e0-63a7c3614757100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:38:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15600:50:56:ab:38:72true4000172.16.1.15624dhcppreferrednameassignDC1_C0_RP1_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf198-fde5-9b94-5afa-153096c3154asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM7/DC1_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.170066Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-203entervm-220availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM6/DC1_C0_RP3_VM6.vmdkdatastore-182persistentfalsefalsefalse5208d28b-9ae7-f860-fb59-9f2025780fda100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c6:1dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17100:50:56:ab:c6:1dtrue4000172.16.1.17124dhcppreferrednameassignDC1_C0_RP3_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfb16-2e9b-b513-0557-422d92e40093summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM6/DC1_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:16.001507Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-220entervm-221availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM7/DC1_C0_RP3_VM7.vmdkdatastore-182persistentfalsefalsefalse52828bef-faec-3ee3-da6a-b699fc033a88100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:24:cafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.17200:50:56:ab:24:catrue4000172.16.1.17224dhcppreferrednameassignDC1_C0_RP3_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb85d-2254-1215-1f3f-f51a1a4ddc0csummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM7/DC1_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:16.03261Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-221entervm-247availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM6/DC1_C0_RP6_VM6.vmdkdatastore-182persistentfalsefalsefalse52105dde-4fe3-4228-9479-277596733d63100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:32:0efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19500:50:56:ab:32:0etrue4000172.16.1.19524dhcppreferrednameassignDC1_C0_RP6_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1e75-6059-3c14-b0ba-a59cf37b9bfasummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM6/DC1_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:23.024329Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-247entervm-246availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM5/DC1_C0_RP6_VM5.vmdkdatastore-182persistentfalsefalsefalse526852fe-d886-1059-36f0-530e0e508f64100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:72:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19400:50:56:ab:72:4dtrue4000172.16.1.19424dhcppreferrednameassignDC1_C0_RP6_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9e8-1bc9-70f7-4f38-162d27ee110asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM5/DC1_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.992252Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-246entervm-199availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmdkdatastore-182persistentfalsefalsefalse5262d950-adcf-8f9c-f5e3-659ad00b45da100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e5:ddfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15200:50:56:ab:e5:ddtrue4000172.16.1.15224dhcppreferrednameassignDC1_C0_RP1_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b025b-cbce-4e2f-350d-f30926f086bdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM3/DC1_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.995442Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-199entervm-239availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM7/DC1_C0_RP5_VM7.vmdkdatastore-182persistentfalsefalsefalse5285aa28-14e3-4da3-1922-5c1aae3cec3e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:34:13falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18800:50:56:ab:34:13true4000172.16.1.18824dhcppreferrednameassignDC1_C0_RP5_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b44f5-d345-6abe-8966-5fc736df2e69summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM7/DC1_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.877775Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-239entervm-200availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmdkdatastore-182persistentfalsefalsefalse52784781-dcfe-cb0c-37a1-1465cd92f643100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:d4:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15300:50:56:ab:d4:aftrue4000172.16.1.15324dhcppreferrednameassignDC1_C0_RP1_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58f3-4ab4-755f-a47f-344238bbdb03summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM4/DC1_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.018752Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-200entervm-248availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM7/DC1_C0_RP6_VM7.vmdkdatastore-182persistentfalsefalsefalse52d2842f-bc8b-e9d4-53bd-476918457c5c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:8a:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19600:50:56:ab:8a:actrue4000172.16.1.19624dhcppreferrednameassignDC1_C0_RP6_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc7ee-0ed3-b950-1f07-8f3b41055e86summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM7/DC1_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:23.041097Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-248entervm-326availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM7/DC1_C1_RP6_VM7.vmdkdatastore-182persistentfalsefalsefalse526cfe45-d5b2-c857-c66a-26f70b17d367100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:97:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1000:50:56:ab:97:09true4000172.16.2.1024dhcppreferrednameassignDC1_C1_RP6_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6188-fe82-f737-c321-29f0022dd55bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM7/DC1_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.3942Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-326entervm-201availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmdkdatastore-182persistentfalsefalsefalse52b94e62-4418-16d3-ba0b-d5b8ba084710100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:5a:3efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15400:50:56:ab:5a:3etrue4000172.16.1.15424dhcppreferrednameassignDC1_C0_RP1_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbbbf-a20f-5121-bfa3-e9ae3faa37a5summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM5/DC1_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.067968Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-201entervm-237availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM5/DC1_C0_RP5_VM5.vmdkdatastore-182persistentfalsefalsefalse526214c4-a933-166d-a4ab-c9e9608a11f7100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f9:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18600:50:56:ab:f9:84true4000172.16.1.18624dhcppreferrednameassignDC1_C0_RP5_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3dbc-7ab4-2078-fb9f-838b616f94b2summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM5/DC1_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.802488Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-237entervm-243availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM2/DC1_C0_RP6_VM2.vmdkdatastore-182persistentfalsefalsefalse52ac035b-6e1a-45a4-b0f4-33785e96fd21100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:34:9efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19100:50:56:ab:34:9etrue4000172.16.1.19124dhcppreferrednameassignDC1_C0_RP6_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6662-765c-fba7-da19-8df712c4138asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM2/DC1_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.918978Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-243entervm-325availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM6/DC1_C1_RP6_VM6.vmdkdatastore-182persistentfalsefalsefalse521d4edf-ad91-01db-6ce8-c093140c33a0100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:70:99falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.900:50:56:ab:70:99true4000172.16.2.924dhcppreferrednameassignDC1_C1_RP6_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5ab2-37ab-a082-a183-c20be4a2adfdsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM6/DC1_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.37708Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-325entervm-202availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmdkdatastore-182persistentfalsefalsefalse5209c66f-5e5a-caac-5246-7f3c66ef212c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:5e:fbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15500:50:56:ab:5e:fbtrue4000172.16.1.15524dhcppreferrednameassignDC1_C0_RP1_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b47c1-fc87-cadf-2540-e658fcbbe78bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM6/DC1_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:13.140061Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-202entervm-238availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM6/DC1_C0_RP5_VM6.vmdkdatastore-182persistentfalsefalsefalse5254f744-3a88-cd99-f97c-be6a1017b8af100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:6d:7ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18700:50:56:ab:6d:7ftrue4000172.16.1.18724dhcppreferrednameassignDC1_C0_RP5_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48b8-2bd5-3d02-4d46-d4c6841b6d26summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM6/DC1_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.843439Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-238entervm-242availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM1/DC1_C0_RP6_VM1.vmdkdatastore-182persistentfalsefalsefalse522c8e49-5a07-224d-b03b-1fa6663fa451100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c7:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19000:50:56:ab:c7:0atrue4000172.16.1.19024dhcppreferrednameassignDC1_C0_RP6_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b42b6-7d71-6f6d-1e17-62887c9f072bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM1/DC1_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.875411Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-242entervm-324availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM5/DC1_C1_RP6_VM5.vmdkdatastore-182persistentfalsefalsefalse527aeb12-5b06-4439-8db0-2c9153f92102100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:5f:95falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.800:50:56:ab:5f:95true4000172.16.2.824dhcppreferrednameassignDC1_C1_RP6_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b379b-bfd7-1543-7c9c-186b4e29a40dsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM5/DC1_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.362676Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-324entervm-235availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM3/DC1_C0_RP5_VM3.vmdkdatastore-182persistentfalsefalsefalse52297795-47c8-9bcd-6a11-8dfef36b9925100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:f7:1dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18400:50:56:ab:f7:1dtrue4000172.16.1.18424dhcppreferrednameassignDC1_C0_RP5_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9e1-060f-e5ba-9c13-baf1f80c7668summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM3/DC1_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.729751Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-235entervm-245availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM4/DC1_C0_RP6_VM4.vmdkdatastore-182persistentfalsefalsefalse52d2b4bf-a85a-8d3c-1b37-eb3fa0577e13100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:41:adfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19300:50:56:ab:41:adtrue4000172.16.1.19324dhcppreferrednameassignDC1_C0_RP6_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2eca-165e-22db-db45-3f87067ae314summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM4/DC1_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.971856Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-245entervm-236availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM4/DC1_C0_RP5_VM4.vmdkdatastore-182persistentfalsefalsefalse52cebd19-5347-3133-3f58-b16d816c0217100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:9d:eafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18500:50:56:ab:9d:eatrue4000172.16.1.18524dhcppreferrednameassignDC1_C0_RP5_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd6d0-3790-79a5-ab3d-9925f160e1c4summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM4/DC1_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.761827Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-236entervm-244availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP6_VM3/DC1_C0_RP6_VM3.vmdkdatastore-182persistentfalsefalsefalse5209db1f-b6ff-1345-6488-d647a640b726100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:17:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.19200:50:56:ab:17:actrue4000172.16.1.19224dhcppreferrednameassignDC1_C0_RP6_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-240snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2049-3c72-7a30-dfe7-f07f3389572asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP6_VM3/DC1_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:22.94874Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-244entervm-196availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmdkdatastore-182persistentfalsefalsefalse5275a425-ebf2-3b8f-0be6-7f2ce2faab6c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:91:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14900:50:56:ab:91:25true4000172.16.1.14924dhcppreferrednameassignDC1_C0_RP1_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7a1d-8403-c426-836b-d6d43cca7126summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM0/DC1_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.904152Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-196entervm-233availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM1/DC1_C0_RP5_VM1.vmdkdatastore-182persistentfalsefalsefalse525819aa-a785-4988-d2e5-1d0e6d41e618100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18200:50:56:ab:0a:fatrue4000172.16.1.18224dhcppreferrednameassignDC1_C0_RP5_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6345-c06b-b3c0-78b4-0344fb6e321esummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM1/DC1_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.667415Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-233entervm-197availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmdkdatastore-182persistentfalsefalsefalse52311486-264d-884d-1ce9-026df840107f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:6a:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15000:50:56:ab:6a:8ctrue4000172.16.1.15024dhcppreferrednameassignDC1_C0_RP1_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc463-bd6b-be4a-ebd8-79a6e4d05aeesummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM1/DC1_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.943651Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-197entervm-285availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM2/DC1_C1_RP2_VM2.vmdkdatastore-182persistentfalsefalsefalse526029cb-8e33-cd89-2aee-c1f28320eb36100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:6c:55falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22700:50:56:ab:6c:55true4000172.16.1.22724dhcppreferrednameassignDC1_C1_RP2_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b906c-16c0-7927-d15b-574dc81a56dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM2/DC1_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.106199Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-285entervm-234availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM2/DC1_C0_RP5_VM2.vmdkdatastore-182persistentfalsefalsefalse52318152-a46e-0e94-ae71-ec81d97a4bc1100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:13:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18300:50:56:ab:13:d7true4000172.16.1.18324dhcppreferrednameassignDC1_C0_RP5_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b329b-c1d7-b234-8213-219b5621ba77summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM2/DC1_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.693812Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-234entervm-198availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmdkdatastore-182persistentfalsefalsefalse52f18d13-42f1-53bf-a75a-d8a748bfc967100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:50:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.15100:50:56:ab:50:4ftrue4000172.16.1.15124dhcppreferrednameassignDC1_C0_RP1_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-195snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc574-ea38-2373-23e0-ace8601afd61summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP1_VM2/DC1_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:12.968797Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-185summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-198entervm-284availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM1/DC1_C1_RP2_VM1.vmdkdatastore-182persistentfalsefalsefalse520fdc97-8375-365d-7a56-eca25b19db40100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:af:83falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22600:50:56:ab:af:83true4000172.16.1.22624dhcppreferrednameassignDC1_C1_RP2_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be242-d034-8efd-2f77-d5e9ac6216f5summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM1/DC1_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.095815Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-284entervm-194availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmdkdatastore-182persistentfalsefalsefalse520f1f4f-23cb-59c6-8b13-c693b7ca3d47100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:72:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14800:50:56:ab:72:fatrue4000172.16.1.14824dhcppreferrednameassignDC1_C0_RP0_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b281d-f0c8-201a-e28f-a4ba48d9d021summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM7/DC1_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.325523Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-194entervm-283availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP2_VM0/DC1_C1_RP2_VM0.vmdkdatastore-182persistentfalsefalsefalse52eed02d-9291-d428-ba1b-42f680202d38100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:2f:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.22500:50:56:ab:2f:71true4000172.16.1.22524dhcppreferrednameassignDC1_C1_RP2_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-282snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9efb-467f-6acd-9449-9ec7a4fd1691summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP2_VM0/DC1_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:38.083283Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-283entervm-312availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM2/DC1_C1_RP5_VM2.vmdkdatastore-182persistentfalsefalsefalse525bef1d-7b04-8837-d703-e41b86418aa4100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:04:2dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25100:50:56:ab:04:2dtrue4000172.16.1.25124dhcppreferrednameassignDC1_C1_RP5_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be6ea-7264-15d8-b09b-f9f851824f85summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM2/DC1_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.660013Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-312entervm-232availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP5_VM0/DC1_C0_RP5_VM0.vmdkdatastore-182persistentfalsefalsefalse5285244d-0678-ccb6-f2fc-5246ddbc0ab8100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:88:63falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.18100:50:56:ab:88:63true4000172.16.1.18124dhcppreferrednameassignDC1_C0_RP5_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-231snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4878-dde7-3704-0084-ef38f5a0a540summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP5_VM0/DC1_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:20.629872Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-232entervm-193availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmdkdatastore-182persistentfalsefalsefalse523781b8-e6f0-db03-279d-42fb836a3b5a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:34:64falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.14700:50:56:ab:34:64true4000172.16.1.14724dhcppreferrednameassignDC1_C0_RP0_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-186snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b62c8-1863-f2a0-458d-86a599dcc6f9summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP0_VM6/DC1_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:09.301546Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-193entervm-313availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM3/DC1_C1_RP5_VM3.vmdkdatastore-182persistentfalsefalsefalse52a60e28-d653-2b8c-e755-f4ad40c9b084100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:a0:4afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25200:50:56:ab:a0:4atrue4000172.16.1.25224dhcppreferrednameassignDC1_C1_RP5_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3ddb-a9f0-c3bd-84c2-f83bf092839esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM3/DC1_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.705224Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-313entervm-310availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM0/DC1_C1_RP5_VM0.vmdkdatastore-182persistentfalsefalsefalse52971b8f-aec1-017f-a225-9810d2dfc68c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:a0:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.24900:50:56:ab:a0:d0true4000172.16.1.24924dhcppreferrednameassignDC1_C1_RP5_VM0parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1753-32ec-820a-c982-9186822c68f3summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM0/DC1_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.569858Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-310entervm-311availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM1/DC1_C1_RP5_VM1.vmdkdatastore-182persistentfalsefalsefalse526e1eeb-0847-61ee-9a99-5b4d8b68d94c100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0e:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25000:50:56:ab:0e:32true4000172.16.1.25024dhcppreferrednameassignDC1_C1_RP5_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1647-e73b-42a1-b0e7-d84c5ef4f08esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM1/DC1_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.612235Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-311entervm-316availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM6/DC1_C1_RP5_VM6.vmdkdatastore-182persistentfalsefalsefalse52dc481d-1cf0-591b-132a-0dc251236b32100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e9:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.100:50:56:ab:e9:b7true4000172.16.2.124dhcppreferrednameassignDC1_C1_RP5_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9273-80f1-3fcf-ddf5-55644d4d9ea9summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM6/DC1_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.765519Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-316entervm-317availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM7/DC1_C1_RP5_VM7.vmdkdatastore-182persistentfalsefalsefalse523bdcf5-d16b-d821-5641-0dd7eee48498100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:6e:86falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.200:50:56:ab:6e:86true4000172.16.2.224dhcppreferrednameassignDC1_C1_RP5_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beb50-a265-42b4-6887-4b6c25334736summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM7/DC1_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.784465Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-317entervm-314availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM4/DC1_C1_RP5_VM4.vmdkdatastore-182persistentfalsefalsefalse52d5c9c7-105f-949d-7542-a87da296d2ee100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:db:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25300:50:56:ab:db:97true4000172.16.1.25324dhcppreferrednameassignDC1_C1_RP5_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be827-d368-0d1f-123c-ed7ca4e81f35summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM4/DC1_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.735215Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-314entervm-330availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM2/DC1_C1_RP7_VM2.vmdkdatastore-182persistentfalsefalsefalse52ac1361-d348-3ce0-e416-8cd6fa1f454f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:e8:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1300:50:56:ab:e8:d0true4000172.16.2.1324dhcppreferrednameassignDC1_C1_RP7_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b70ea-21b1-4f2a-ce7b-2d536dcd42dcsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM2/DC1_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.399035Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-330entervm-215availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM1/DC1_C0_RP3_VM1.vmdkdatastore-182persistentfalsefalsefalse524574c5-968c-db2b-0e86-4421e3d0974f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:80:e4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16600:50:56:ab:80:e4true4000172.16.1.16624dhcppreferrednameassignDC1_C0_RP3_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ed6-372b-3580-ce26-90381af0f4b1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM1/DC1_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.904114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-215entervm-315availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP5_VM5/DC1_C1_RP5_VM5.vmdkdatastore-182persistentfalsefalsefalse52a1b394-2ea5-5a61-a238-268910fac001100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:e9:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.25400:50:56:ab:e9:76true4000172.16.1.25424dhcppreferrednameassignDC1_C1_RP5_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-309snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9500-e18b-fa60-3a81-225e4b8321d0summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP5_VM5/DC1_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:51.751485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-315entervm-331availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM3/DC1_C1_RP7_VM3.vmdkdatastore-182persistentfalsefalsefalse521bbd85-3744-6a81-99ef-fb4d16827c49100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:4a:12falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1400:50:56:ab:4a:12true4000172.16.2.1424dhcppreferrednameassignDC1_C1_RP7_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b99ee-dbb6-0541-8ef3-3af894426f83summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM3/DC1_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.410875Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-260summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-331entervm-216availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM2/DC1_C0_RP3_VM2.vmdkdatastore-182persistentfalsefalsefalse52ee95af-3cfe-d973-e62a-f3394337a732100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:cb:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16700:50:56:ab:cb:59true4000172.16.1.16724dhcppreferrednameassignDC1_C0_RP3_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5443-460f-3ecb-5fdc-01d2298fd615summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM2/DC1_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.922298Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-183summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-216entervm-256availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM6/DC1_C0_RP7_VM6.vmdkdatastore-182persistentfalsefalsefalse52a72304-9e3b-d391-d7ce-892eef05d4b3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:50:defalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20300:50:56:ab:50:detrue4000172.16.1.20324dhcppreferrednameassignDC1_C0_RP7_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5a3d-96f8-71cd-199a-e6529f5075e8summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM6/DC1_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.156889Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-256entervm-332availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM4/DC1_C1_RP7_VM4.vmdkdatastore-182persistentfalsefalsefalse527e64dc-009e-e5f6-b7da-a7ab930e590a100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:b4:d5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1500:50:56:ab:b4:d5true4000172.16.2.1524dhcppreferrednameassignDC1_C1_RP7_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b168b-a58a-bba2-6266-6a84ffecce0bsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM4/DC1_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.423048Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-332entervm-217availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM3/DC1_C0_RP3_VM3.vmdkdatastore-182persistentfalsefalsefalse52b859f6-2a05-cb18-d68e-1b9d23ec232e100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:0a:dffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16800:50:56:ab:0a:dftrue4000172.16.1.16824dhcppreferrednameassignDC1_C0_RP3_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7056-451c-0545-5f5c-dabae8d5bf0asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM3/DC1_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.945822Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-217entervm-257availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP7_VM7/DC1_C0_RP7_VM7.vmdkdatastore-182persistentfalsefalsefalse52c95ce2-542a-0014-7dc9-199b59cf2bb6100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:40:9dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.20400:50:56:ab:40:9dtrue4000172.16.1.20424dhcppreferrednameassignDC1_C0_RP7_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-249snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6021-749c-da24-1dea-88d274f765c1summary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP7_VM7/DC1_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:24.166357Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-184summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-257entervm-323availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM4/DC1_C1_RP6_VM4.vmdkdatastore-182persistentfalsefalsefalse526549e9-89cd-49e4-187c-b51bae3e0c67100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:80:cafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.700:50:56:ab:80:catrue4000172.16.2.724dhcppreferrednameassignDC1_C1_RP6_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be4cd-6229-24ba-db3f-1144cd03decesummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM4/DC1_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.348052Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-323entervm-333availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM5/DC1_C1_RP7_VM5.vmdkdatastore-182persistentfalsefalsefalse52a4ad2e-1b20-cb3a-7a0c-da349c7705c2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:c8:8cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1600:50:56:ab:c8:8ctrue4000172.16.2.1624dhcppreferrednameassignDC1_C1_RP7_VM5parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5804-3002-982d-0769-5690562fee7asummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM5/DC1_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.43482Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-333entervm-272availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmdkdatastore-182persistentfalsefalsefalse520da2fc-3fdb-9a7b-a9d0-cd8d17e440ab100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:91:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21600:50:56:ab:91:47true4000172.16.1.21624dhcppreferrednameassignDC1_C1_RP0_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f87-705e-bd62-d170-b1ffbd196ca4summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM7/DC1_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.366149Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-272entervm-218availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C0_RP3_VM4/DC1_C0_RP3_VM4.vmdkdatastore-182persistentfalsefalsefalse52920b2d-21cd-c029-309e-64b6f484c7e2100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:c5:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.16900:50:56:ab:c5:c8true4000172.16.1.16924dhcppreferrednameassignDC1_C0_RP3_VM4parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-213snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba38b-c2b3-0170-b3a5-9abc7a83907asummary.config.vmPathNameassign[GlobalDS_0] DC1_C0_RP3_VM4/DC1_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:15.96375Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-181summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-218entervm-322availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM3/DC1_C1_RP6_VM3.vmdkdatastore-182persistentfalsefalsefalse529f223a-2050-f943-8c19-6cf72cdd8de3100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:d3:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.600:50:56:ab:d3:d3true4000172.16.2.624dhcppreferrednameassignDC1_C1_RP6_VM3parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6529-77aa-c865-1be8-0b1d9f59ed97summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM3/DC1_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.335748Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-322entervm-334availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM6/DC1_C1_RP7_VM6.vmdkdatastore-182persistentfalsefalsefalse527e9978-1af4-fbb9-2b1a-829a5da59c5f100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:ee:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1700:50:56:ab:ee:66true4000172.16.2.1724dhcppreferrednameassignDC1_C1_RP7_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf6a8-912f-7922-778d-aff69aa7ddcfsummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM6/DC1_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.44588Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-334entervm-271availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmdkdatastore-182persistentfalsefalsefalse521931bc-81ab-ec0b-3db1-fc4dfdc448dc100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:ce:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.1.21500:50:56:ab:ce:5ctrue4000172.16.1.21524dhcppreferrednameassignDC1_C1_RP0_VM6parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-264snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b968d-822a-727f-663b-19d44c4aed3esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP0_VM6/DC1_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:35.349068Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-271entervm-321availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM2/DC1_C1_RP6_VM2.vmdkdatastore-182persistentfalsefalsefalse52807b30-ebcc-6c68-0a4c-00ad205d7c32100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-177truetruetrue1003Assigned00:50:56:ab:7a:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.500:50:56:ab:7a:76true4000172.16.2.524dhcppreferrednameassignDC1_C1_RP6_VM2parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc866-c60b-7528-17c6-5f8e76d74f43summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM2/DC1_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.309051Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-263summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-321entervm-335availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP7_VM7/DC1_C1_RP7_VM7.vmdkdatastore-182persistentfalsefalsefalse526f2f25-fc0d-7a72-081d-46519b10e467100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:11:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.1800:50:56:ab:11:e8true4000172.16.2.1824dhcppreferrednameassignDC1_C1_RP7_VM7parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-327snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd2a2-e4f9-b148-c0ae-a8a866a1790esummary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP7_VM7/DC1_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:54.45794Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-262summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-335entervm-320availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC1_C1_RP6_VM1/DC1_C1_RP6_VM1.vmdkdatastore-182persistentfalsefalsefalse52d5bd3a-eda6-8e63-3834-c8deac8ba93d100005242884000DVSwitch: 5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 115a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11dvportgroup-178truetruetrue1003Assigned00:50:56:ab:19:28falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-182guest.netassign172.16.2.400:50:56:ab:19:28true4000172.16.2.424dhcppreferrednameassignDC1_C1_RP6_VM1parentassigngroup-v170resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-318snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC1_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1bff-fa23-c1dc-ec8a-0e341d6ad904summary.config.vmPathNameassign[GlobalDS_0] DC1_C1_RP6_VM1/DC1_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC1_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:07:53.287553Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-261summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-320enterdvportgroup-176config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-176config.nameassignDC1_DVS-DVUplinks-175hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVS-DVUplinks-175parentassigngroup-n173summary.nameassignDC1_DVS-DVUplinks-175tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-178config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-178config.nameassignDC1_DVPG1hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVPG1parentassigngroup-n173summary.nameassignDC1_DVPG1tagassignenterdvportgroup-177config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-175config.keyassigndvportgroup-177config.nameassignDC1_DVPG0hostassignhost-261host-262host-185host-263host-181host-183host-184host-260nameassignDC1_DVPG0parentassigngroup-n173summary.nameassignDC1_DVPG0tagassignenterdvs-175config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-176nameassignDC1_DVSparentassigngroup-n173summary.hostassignsummary.hostMemberassignhost-181host-183host-184host-185host-260host-261host-262host-263summary.nameassignDC1_DVSsummary.uuidassign5a e9 2b 50 69 d0 90 32-70 c0 15 26 a1 c3 e1 11enternetwork-174nameassignVM Networkparentassigngroup-n173enterdomain-c258configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-260host-261host-262host-263nameassignDC1_C1parentassigngroup-h171resourcePoolassignresgroup-259summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c179configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-181host-183host-184host-185nameassignDC1_C0parentassigngroup-h171resourcePoolassignresgroup-180summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-182capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-261/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-262/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-185/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-263/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-181/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-183/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-184/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-260/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s172summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-182summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-406availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM7/DC2_C0_RP5_VM7.vmdkdatastore-349persistentfalsefalsefalse52eb4c0d-1604-fe56-435f-10a82cbe395d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c6:46falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7000:50:56:ab:c6:46true4000172.16.2.7024dhcppreferrednameassignDC2_C0_RP5_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba782-a032-0772-aadb-8d8af936f7a9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM7/DC2_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.983033Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-406entervm-393availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM3/DC2_C0_RP4_VM3.vmdkdatastore-349persistentfalsefalsefalse5280f930-8abc-0fc5-270d-e0eb1fc36036100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ec:5efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5800:50:56:ab:ec:5etrue4000172.16.2.5824dhcppreferrednameassignDC2_C0_RP4_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422befc4-1698-5ce5-3320-1537eb9420b1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM3/DC2_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.01051Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-393entervm-394availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM4/DC2_C0_RP4_VM4.vmdkdatastore-349persistentfalsefalsefalse527f1583-3cfc-f4bb-e644-bcd676a07a07100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:bb:21falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5900:50:56:ab:bb:21true4000172.16.2.5924dhcppreferrednameassignDC2_C0_RP4_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc0a3-ed34-a35c-98a0-1b64c9af5018summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM4/DC2_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.035759Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-394entervm-404availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM5/DC2_C0_RP5_VM5.vmdkdatastore-349persistentfalsefalsefalse52a23f25-9184-61a6-1132-79997921707d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7f:09falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6800:50:56:ab:7f:09true4000172.16.2.6824dhcppreferrednameassignDC2_C0_RP5_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3e6e-2db7-ac12-7089-0835d617465asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM5/DC2_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.964595Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-404entervm-391availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM1/DC2_C0_RP4_VM1.vmdkdatastore-349persistentfalsefalsefalse52182d49-fcf8-448c-c7e7-13634ec9ce00100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:68:effalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5600:50:56:ab:68:eftrue4000172.16.2.5624dhcppreferrednameassignDC2_C0_RP4_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba9fc-2b71-53d2-2b29-c202db4b7647summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM1/DC2_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.962586Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-391entervm-405availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM6/DC2_C0_RP5_VM6.vmdkdatastore-349persistentfalsefalsefalse524a743e-29fa-a63d-3d88-1b899f39f7ec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:13:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6900:50:56:ab:13:f1true4000172.16.2.6924dhcppreferrednameassignDC2_C0_RP5_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd816-9db5-9fe2-f58c-1cff78a32c75summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM6/DC2_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.974195Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-405entervm-392availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM2/DC2_C0_RP4_VM2.vmdkdatastore-349persistentfalsefalsefalse5295ca7a-7df3-eafe-d46f-04f09ae77223100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6f:abfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5700:50:56:ab:6f:abtrue4000172.16.2.5724dhcppreferrednameassignDC2_C0_RP4_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb5eb-8f62-6a8a-e094-d6417fb132d1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM2/DC2_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.992872Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-392true http_version: - recorded_at: Thu, 03 May 2018 18:07:57 GMT + recorded_at: Mon, 07 May 2018 16:15:30 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -422,7 +422,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -436,7 +436,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:57 GMT + - Mon, 7 May 2018 16:15:31 GMT Cache-Control: - no-cache Connection: @@ -456,11 +456,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_4session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entervm-402availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM3/DC2_C0_RP5_VM3.vmdkdatastore-349persistentfalsefalsefalse52cd7ff9-2bbc-c81b-1ed9-ee8e36c8821b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0c:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6600:50:56:ab:0c:b7true4000172.16.2.6624dhcppreferrednameassignDC2_C0_RP5_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2d36-36be-b461-24ad-14bc6a3ec6b3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM3/DC2_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.947767Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-402entervm-403availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM4/DC2_C0_RP5_VM4.vmdkdatastore-349persistentfalsefalsefalse521b2b8e-b5eb-adc3-e7de-660e764175cc100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:08:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6700:50:56:ab:08:66true4000172.16.2.6724dhcppreferrednameassignDC2_C0_RP5_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beda8-654d-c8b1-cf72-6eed5a3746a5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM4/DC2_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.956458Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-403entervm-390availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM0/DC2_C0_RP4_VM0.vmdkdatastore-349persistentfalsefalsefalse524d6512-5f3e-e37d-4284-0ef7cbd7d512100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:87:4cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5500:50:56:ab:87:4ctrue4000172.16.2.5524dhcppreferrednameassignDC2_C0_RP4_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b94a4-903a-b029-7ac0-bc3e4b0bac53summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM0/DC2_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.9349Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-390entervm-400availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM1/DC2_C0_RP5_VM1.vmdkdatastore-349persistentfalsefalsefalse5208e51f-6ea8-eb3a-784a-99adb86e0873100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:8d:c9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6400:50:56:ab:8d:c9true4000172.16.2.6424dhcppreferrednameassignDC2_C0_RP5_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8dff-8aab-b65c-e6d1-11444e609e50summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM1/DC2_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.928411Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-400entervm-401availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM2/DC2_C0_RP5_VM2.vmdkdatastore-349persistentfalsefalsefalse5225be30-e5b7-aec9-ee17-752c5306270f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:da:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6500:50:56:ab:da:e7true4000172.16.2.6524dhcppreferrednameassignDC2_C0_RP5_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48f0-a129-3bef-028b-59b7635fb74esummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM2/DC2_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.937785Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-401entervm-399availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM0/DC2_C0_RP5_VM0.vmdkdatastore-349persistentfalsefalsefalse52a23e69-b75f-f348-6cb4-49a99a94940e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d3:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6300:50:56:ab:d3:ebtrue4000172.16.2.6324dhcppreferrednameassignDC2_C0_RP5_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b84c6-5cc3-3613-2aae-8cca38357f25summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM0/DC2_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.909469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-399entervm-466availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM7/DC2_C1_RP3_VM7.vmdkdatastore-349persistentfalsefalsefalse52ffe8a3-50af-94f8-f21f-1eb701a04157100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:b3:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12200:50:56:ab:b3:57true4000172.16.2.12224dhcppreferrednameassignDC2_C1_RP3_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b68f9-562d-41fa-5ab0-f46518f356c7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM7/DC2_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.908963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-466entervm-465availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM6/DC2_C1_RP3_VM6.vmdkdatastore-349persistentfalsefalsefalse52d50ad8-9783-71e8-10cc-ba8791f76239100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:a4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12100:50:56:ab:59:a4true4000172.16.2.12124dhcppreferrednameassignDC2_C1_RP3_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4350-03b0-259a-ea77-8b0e5bd47511summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM6/DC2_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.876017Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-465entervm-497availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM2/DC2_C1_RP7_VM2.vmdkdatastore-349persistentfalsefalsefalse526b1080-f62e-d97d-26c1-a20d31d972d1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:86:f0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14900:50:56:ab:86:f0true4000172.16.2.14924dhcppreferrednameassignDC2_C1_RP7_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3db7-0a95-1766-7daa-6bd7e35b658csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM2/DC2_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.971662Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-497entervm-498availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM3/DC2_C1_RP7_VM3.vmdkdatastore-349persistentfalsefalsefalse52bafb50-e674-7d75-5c2b-32ecba384714100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:6f:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15000:50:56:ab:6f:fdtrue4000172.16.2.15024dhcppreferrednameassignDC2_C1_RP7_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8cda-7e1b-930e-a6d6-d979689ec1c3summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM3/DC2_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.985374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-498entervm-495availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM0/DC2_C1_RP7_VM0.vmdkdatastore-349persistentfalsefalsefalse52a4266c-a007-e013-2ef2-d22984fd5bac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:b5:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14700:50:56:ab:b5:actrue4000172.16.2.14724dhcppreferrednameassignDC2_C1_RP7_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6910-2889-9aae-2553-70ec7a0f98b1summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM0/DC2_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.916497Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-495entervm-460availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM1/DC2_C1_RP3_VM1.vmdkdatastore-349persistentfalsefalsefalse522ce3fb-de12-8e84-e17f-dce41980a134100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c2:89falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11600:50:56:ab:c2:89true4000172.16.2.11624dhcppreferrednameassignDC2_C1_RP3_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be9e1-c028-0765-ce5a-d34d6f6ec706summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM1/DC2_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.716211Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-460entervm-496availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM1/DC2_C1_RP7_VM1.vmdkdatastore-349persistentfalsefalsefalse526cd5de-315f-50e8-95c1-ad473c72d204100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:97:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14800:50:56:ab:97:4ftrue4000172.16.2.14824dhcppreferrednameassignDC2_C1_RP7_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b23f4-7ac1-fd2f-441d-4d489c61e8e7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM1/DC2_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.94635Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-496entervm-459availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM0/DC2_C1_RP3_VM0.vmdkdatastore-349persistentfalsefalsefalse52583d97-2bc1-99f4-acaa-4d8a23f68dcc100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:e6:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11500:50:56:ab:e6:6dtrue4000172.16.2.11524dhcppreferrednameassignDC2_C1_RP3_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beda3-93e9-a7e2-b148-2366c66356e8summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM0/DC2_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.68928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-459entervm-501availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM6/DC2_C1_RP7_VM6.vmdkdatastore-349persistentfalsefalsefalse523cc731-6b0c-edfd-9fc8-f6a41a21568f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:ff:28falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15300:50:56:ab:ff:28true4000172.16.2.15324dhcppreferrednameassignDC2_C1_RP7_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0503-a29c-e73d-c3d0-dbc9cbb69640summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM6/DC2_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.033963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-501entervm-502availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM7/DC2_C1_RP7_VM7.vmdkdatastore-349persistentfalsefalsefalse52178ddf-8eef-35ab-b1bd-8221aaf8cbcf100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:95:82falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15400:50:56:ab:95:82true4000172.16.2.15424dhcppreferrednameassignDC2_C1_RP7_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8d60-5816-3e51-e887-3c86760a5beesummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM7/DC2_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.051744Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-502entervm-499availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM4/DC2_C1_RP7_VM4.vmdkdatastore-349persistentfalsefalsefalse521fb1de-e138-b88a-b15c-b46848c669ba100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9d:2bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15100:50:56:ab:9d:2btrue4000172.16.2.15124dhcppreferrednameassignDC2_C1_RP7_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5f0b-583f-52aa-f04f-1408dfb554fbsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM4/DC2_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.998427Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-499entervm-464availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM5/DC2_C1_RP3_VM5.vmdkdatastore-349persistentfalsefalsefalse523a8942-3a21-d0ba-f59c-b4dc251fb458100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7d:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12000:50:56:ab:7d:e7true4000172.16.2.12024dhcppreferrednameassignDC2_C1_RP3_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2d1c-663d-c2e2-86e8-9b0e5db131c6summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM5/DC2_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.844952Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-464entervm-500availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM5/DC2_C1_RP7_VM5.vmdkdatastore-349persistentfalsefalsefalse5288392c-450b-24dd-ee5d-1fb77848695e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e0:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15200:50:56:ab:e0:batrue4000172.16.2.15224dhcppreferrednameassignDC2_C1_RP7_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8584-a4cc-68d8-21a5-8cb18cc02d52summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM5/DC2_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.014673Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-500entervm-463availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM4/DC2_C1_RP3_VM4.vmdkdatastore-349persistentfalsefalsefalse522b2672-af5d-f0ae-7df4-30b729b5346e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4a:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11900:50:56:ab:4a:3ctrue4000172.16.2.11924dhcppreferrednameassignDC2_C1_RP3_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfcab-3b43-0aeb-6dab-88056de6da76summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM4/DC2_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.815027Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-463entervm-462availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM3/DC2_C1_RP3_VM3.vmdkdatastore-349persistentfalsefalsefalse52e951c7-fad6-9689-22bb-847db90d34f0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0b:83falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11800:50:56:ab:0b:83true4000172.16.2.11824dhcppreferrednameassignDC2_C1_RP3_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2c85-37e9-326e-8ccf-66ca81669af4summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM3/DC2_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.775267Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-462entervm-461availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM2/DC2_C1_RP3_VM2.vmdkdatastore-349persistentfalsefalsefalse52d35c71-26b2-0909-b19f-cefa236a83fa100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:18:53falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11700:50:56:ab:18:53true4000172.16.2.11724dhcppreferrednameassignDC2_C1_RP3_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5e5c-a113-0ac7-6658-21d9fb7b4e0bsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM2/DC2_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.744643Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-461entervm-493availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM7/DC2_C1_RP6_VM7.vmdkdatastore-349persistentfalsefalsefalse52542558-098d-4d4f-7b8d-ce49f38207eb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:54:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14600:50:56:ab:54:fdtrue4000172.16.2.14624dhcppreferrednameassignDC2_C1_RP6_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2fbc-6f24-9cb2-0070-1018cd9d43a0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM7/DC2_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.685305Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-493entervm-457availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM7/DC2_C1_RP2_VM7.vmdkdatastore-349persistentfalsefalsefalse52c18c40-b7e0-cbe9-146c-8751c37b3d8f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:12:a6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11400:50:56:ab:12:a6true4000172.16.2.11424dhcppreferrednameassignDC2_C1_RP2_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1522-4670-1d33-cbe3-96f8fdf93bccsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM7/DC2_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.718652Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-457entervm-492availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM6/DC2_C1_RP6_VM6.vmdkdatastore-349persistentfalsefalsefalse52e65afa-7d8e-7113-8f7b-a7768992ef2f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:dd:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14500:50:56:ab:dd:a8true4000172.16.2.14524dhcppreferrednameassignDC2_C1_RP6_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b70e7-76f8-2f8c-a724-0597cb18d8aasummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM6/DC2_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.672552Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-492entervm-491availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM5/DC2_C1_RP6_VM5.vmdkdatastore-349persistentfalsefalsefalse52883a2e-1739-cd62-ad97-0ca0133bf565100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:3d:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14400:50:56:ab:3d:7atrue4000172.16.2.14424dhcppreferrednameassignDC2_C1_RP6_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b66cc-fe05-4cb0-b550-405854208736summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM5/DC2_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.66443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-491entervm-455availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM5/DC2_C1_RP2_VM5.vmdkdatastore-349persistentfalsefalsefalse5211e33b-9036-735b-fe27-33a57b42d4ac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:44:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11200:50:56:ab:44:00true4000172.16.2.11224dhcppreferrednameassignDC2_C1_RP2_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd8b3-8a65-594e-2e50-51b8b5041c6esummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM5/DC2_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.656239Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-455entervm-456availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM6/DC2_C1_RP2_VM6.vmdkdatastore-349persistentfalsefalsefalse52e861f1-d760-abf8-a7c2-5f9f9260ba1d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:fb:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11300:50:56:ab:fb:ectrue4000172.16.2.11324dhcppreferrednameassignDC2_C1_RP2_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbf69-7a9c-c91a-8838-3058cfd3e059summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM6/DC2_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.687138Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-456entervm-453availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM3/DC2_C1_RP2_VM3.vmdkdatastore-349persistentfalsefalsefalse52f45f62-2a71-b4d6-e58b-14bf303a068e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:3b:befalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11000:50:56:ab:3b:betrue4000172.16.2.11024dhcppreferrednameassignDC2_C1_RP2_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b56fb-e21c-de46-ae5b-4a8a1a8ad2f9summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM3/DC2_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.611708Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-453entervm-454availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM4/DC2_C1_RP2_VM4.vmdkdatastore-349persistentfalsefalsefalse52b3f5c6-daaf-8677-7ff9-b7c7ee8a315c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:94:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11100:50:56:ab:94:0btrue4000172.16.2.11124dhcppreferrednameassignDC2_C1_RP2_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2527-4c85-8cf2-4c5f-c348d723b659summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM4/DC2_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.631543Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-454entervm-451availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM1/DC2_C1_RP2_VM1.vmdkdatastore-349persistentfalsefalsefalse52177412-8165-5a5f-8e58-61a7490b0f8a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:bf:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10800:50:56:ab:bf:5ctrue4000172.16.2.10824dhcppreferrednameassignDC2_C1_RP2_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9291-bcd6-a9d0-0fcd-0d7cf1753bc0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM1/DC2_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.575925Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-451entervm-433availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM1/DC2_C1_RP0_VM1.vmdkdatastore-349persistentfalsefalsefalse52a03803-b93d-11da-603f-4bb1b93ca66c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:72:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9200:50:56:ab:72:76true4000172.16.2.9224dhcppreferrednameassignDC2_C1_RP0_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b290b-3c83-6ede-eb5c-eab9f507cb15summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM1/DC2_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.679259Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-433entervm-452availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM2/DC2_C1_RP2_VM2.vmdkdatastore-349persistentfalsefalsefalse52420bbc-8143-296a-e3f4-dbd3d4f2c373100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:0a:02falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10900:50:56:ab:0a:02true4000172.16.2.10924dhcppreferrednameassignDC2_C1_RP2_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b40d7-25a8-89d7-df23-5379fb8f610csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM2/DC2_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.596131Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-452entervm-432availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM0/DC2_C1_RP0_VM0.vmdkdatastore-349persistentfalsefalsefalse52df8e38-3fe6-cba7-3773-2f0a03e5a9a0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:95:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9100:50:56:ab:95:72true4000172.16.2.9124dhcppreferrednameassignDC2_C1_RP0_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf30d-5841-7f38-16a6-bfa312c7ea2csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM0/DC2_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.648316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-432entervm-422availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM5/DC2_C0_RP7_VM5.vmdkdatastore-349persistentfalsefalsefalse52416520-33d1-68e7-cd45-0089aa738d3a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:b7:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8400:50:56:ab:b7:a8true4000172.16.2.8424dhcppreferrednameassignDC2_C0_RP7_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfdea-085c-3ddf-872c-61883a7abeb6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM5/DC2_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.643053Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-422entervm-423availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM6/DC2_C0_RP7_VM6.vmdkdatastore-349persistentfalsefalsefalse525fa1d9-9366-c981-5219-02de9ad23d5f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a4:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8500:50:56:ab:a4:0atrue4000172.16.2.8524dhcppreferrednameassignDC2_C0_RP7_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bff76-cbfc-fe7f-4661-d5cb7b2d45d6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM6/DC2_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.666692Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-423entervm-441availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM0/DC2_C1_RP1_VM0.vmdkdatastore-349persistentfalsefalsefalse52a53ca5-cef3-787f-adc9-6a1001e8a944100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:48:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9900:50:56:ab:48:a1true4000172.16.2.9924dhcppreferrednameassignDC2_C1_RP1_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7857-91c9-4e24-c5cf-dc3d2ec7cbcasummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM0/DC2_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.919448Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-441entervm-490availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM4/DC2_C1_RP6_VM4.vmdkdatastore-349persistentfalsefalsefalse528a0d0b-037f-eee2-ac38-ff327263e2c1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:7b:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14300:50:56:ab:7b:e5true4000172.16.2.14324dhcppreferrednameassignDC2_C1_RP6_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9f4-13ac-5c1c-71a3-38694f3967c7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM4/DC2_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.655335Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-490entervm-424availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM7/DC2_C0_RP7_VM7.vmdkdatastore-349persistentfalsefalsefalse5229f4fa-c50d-444d-b5ae-e0337c615fb3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d5:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8600:50:56:ab:d5:a8true4000172.16.2.8624dhcppreferrednameassignDC2_C0_RP7_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b644b-00ae-4c9f-4df5-1dbf125afa7fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM7/DC2_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.69584Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-424entervm-489availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM3/DC2_C1_RP6_VM3.vmdkdatastore-349persistentfalsefalsefalse522fd474-d85d-c016-0040-72d38ddec131100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:8b:f2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14200:50:56:ab:8b:f2true4000172.16.2.14224dhcppreferrednameassignDC2_C1_RP6_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4156-6da9-e660-6fe7-1a027a568062summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM3/DC2_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.639963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-489entervm-488availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM2/DC2_C1_RP6_VM2.vmdkdatastore-349persistentfalsefalsefalse523e0e1f-7df5-b099-bd18-0f8338d5f641100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:63:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14100:50:56:ab:63:0btrue4000172.16.2.14124dhcppreferrednameassignDC2_C1_RP6_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdf7c-162d-9d1a-f00b-a3a371f78b46summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM2/DC2_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.62557Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-488entervm-418availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM1/DC2_C0_RP7_VM1.vmdkdatastore-349persistentfalsefalsefalse525cd76a-be30-2e21-5b9f-5fa12277587c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:77:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8000:50:56:ab:77:c7true4000172.16.2.8024dhcppreferrednameassignDC2_C0_RP7_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd51a-8094-fd14-0751-803d20c1b143summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM1/DC2_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.546177Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-418entervm-487availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM1/DC2_C1_RP6_VM1.vmdkdatastore-349persistentfalsefalsefalse528c9143-c259-5cdf-431e-91fd1df8b0cb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e1:bbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14000:50:56:ab:e1:bbtrue4000172.16.2.14024dhcppreferrednameassignDC2_C1_RP6_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3b52-a3b2-68ce-235c-192773b422a3summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM1/DC2_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.609215Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-487entervm-419availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM2/DC2_C0_RP7_VM2.vmdkdatastore-349persistentfalsefalsefalse52f4cc81-1dbb-61a2-2d50-8683a450782f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:83:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8100:50:56:ab:83:c8true4000172.16.2.8124dhcppreferrednameassignDC2_C0_RP7_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52f8-f92b-ea12-e98f-dcddcd4e3ee5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM2/DC2_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.575907Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-419entervm-486availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM0/DC2_C1_RP6_VM0.vmdkdatastore-349persistentfalsefalsefalse52e16148-a8b6-1072-0b71-25a93778162c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:56:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13900:50:56:ab:56:1atrue4000172.16.2.13924dhcppreferrednameassignDC2_C1_RP6_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf38-258a-1e8b-67b1-3c9a739ae22fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM0/DC2_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.593367Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-486entervm-420availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM3/DC2_C0_RP7_VM3.vmdkdatastore-349persistentfalsefalsefalse522a738b-ece0-19c3-2220-382eb2648845100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:6d:96falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8200:50:56:ab:6d:96true4000172.16.2.8224dhcppreferrednameassignDC2_C0_RP7_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4be4-620a-8773-6e33-f352aa8b75cfsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM3/DC2_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.59485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-420entervm-421availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM4/DC2_C0_RP7_VM4.vmdkdatastore-349persistentfalsefalsefalse5248a8f9-7a8b-8c0c-cb15-f9f759ac0332100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:86:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8300:50:56:ab:86:3ctrue4000172.16.2.8324dhcppreferrednameassignDC2_C0_RP7_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8718-3cdd-2c57-615c-5b88aad88dc5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM4/DC2_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.618492Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-421entervm-448availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM7/DC2_C1_RP1_VM7.vmdkdatastore-349persistentfalsefalsefalse52fc2685-4545-f4a4-a772-c75cb657bc6b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:71:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10600:50:56:ab:71:6ctrue4000172.16.2.10624dhcppreferrednameassignDC2_C1_RP1_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c1e-2766-70aa-94ce-1136ea04d18fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM7/DC2_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.072254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-448entervm-437availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM5/DC2_C1_RP0_VM5.vmdkdatastore-349persistentfalsefalsefalse529a0504-9090-06c3-57d5-fdc03bb4711b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5c:17falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9600:50:56:ab:5c:17true4000172.16.2.9624dhcppreferrednameassignDC2_C1_RP0_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3538-2724-c8b1-9734-526839b05b61summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM5/DC2_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.757771Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-437entervm-446availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM5/DC2_C1_RP1_VM5.vmdkdatastore-349persistentfalsefalsefalse52a1aac5-d7bb-c366-a5b7-8388f9afc4f7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:45:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10400:50:56:ab:45:0atrue4000172.16.2.10424dhcppreferrednameassignDC2_C1_RP1_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b07b4-d10b-607e-9cd5-316c4c84682asummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM5/DC2_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.038183Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-446entervm-436availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM4/DC2_C1_RP0_VM4.vmdkdatastore-349persistentfalsefalsefalse52724458-edc8-f9b2-a395-74f94919e9db100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9f:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9500:50:56:ab:9f:59true4000172.16.2.9524dhcppreferrednameassignDC2_C1_RP0_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b00d4-103f-cae0-17a9-e481f58b1843summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM4/DC2_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.736939Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-436entervm-447availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM6/DC2_C1_RP1_VM6.vmdkdatastore-349persistentfalsefalsefalse52742029-0c8b-8200-61e9-13b137cb9f34100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4e:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10500:50:56:ab:4e:6dtrue4000172.16.2.10524dhcppreferrednameassignDC2_C1_RP1_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf23a-f2eb-c31e-b2a3-e9db1bc7910asummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM6/DC2_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.049195Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-447entervm-435availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM3/DC2_C1_RP0_VM3.vmdkdatastore-349persistentfalsefalsefalse52557623-7e97-33cd-d1fb-6cd620c7f04f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:92:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9400:50:56:ab:92:77true4000172.16.2.9424dhcppreferrednameassignDC2_C1_RP0_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5fd5-7aeb-0e7d-f249-94337948f4edsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM3/DC2_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.725968Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-435entervm-444availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM3/DC2_C1_RP1_VM3.vmdkdatastore-349persistentfalsefalsefalse5272705e-eb03-543c-57f6-685038650aa2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e1:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10200:50:56:ab:e1:d7true4000172.16.2.10224dhcppreferrednameassignDC2_C1_RP1_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b37-d882-272c-2324-497a49d7ced8summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM3/DC2_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.98991Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-444entervm-434availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM2/DC2_C1_RP0_VM2.vmdkdatastore-349persistentfalsefalsefalse524bb20e-0899-2a33-fbd3-03263bf41b84100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:8d:27falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9300:50:56:ab:8d:27true4000172.16.2.9324dhcppreferrednameassignDC2_C1_RP0_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb6dc-3c53-1546-6f10-64b6b66ab705summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM2/DC2_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.713842Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-434entervm-445availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM4/DC2_C1_RP1_VM4.vmdkdatastore-349persistentfalsefalsefalse5281b992-f289-8d99-e61e-bddfa22ea910100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4a:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10300:50:56:ab:4a:e2true4000172.16.2.10324dhcppreferrednameassignDC2_C1_RP1_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b498c-222a-773d-9479-0d156b44abfdsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM4/DC2_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.019253Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-445entervm-442availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM1/DC2_C1_RP1_VM1.vmdkdatastore-349persistentfalsefalsefalse5221ac2d-36df-466b-fe6e-5b4a69a24ca1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d1:b6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10000:50:56:ab:d1:b6true4000172.16.2.10024dhcppreferrednameassignDC2_C1_RP1_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5265-86c0-1367-3b0d-7b5ff8907a5csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM1/DC2_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.942231Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-442entervm-443availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM2/DC2_C1_RP1_VM2.vmdkdatastore-349persistentfalsefalsefalse52041960-0bd6-8424-d5e9-01267e7c0205100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a5:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10100:50:56:ab:a5:cdtrue4000172.16.2.10124dhcppreferrednameassignDC2_C1_RP1_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b29ba-d9ba-527e-63f1-4e37ec8ffc61summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM2/DC2_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.96538Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-443entervm-439availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM7/DC2_C1_RP0_VM7.vmdkdatastore-349persistentfalsefalsefalse52401a9f-2888-e4dd-6abd-5402348d7033100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c4:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9800:50:56:ab:c4:a1true4000172.16.2.9824dhcppreferrednameassignDC2_C1_RP0_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba071-596f-420a-ffa0-6c655f6be0d2summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM7/DC2_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.803542Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-439entervm-438availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM6/DC2_C1_RP0_VM6.vmdkdatastore-349persistentfalsefalsefalse52645eef-488e-a8c7-745f-1011ce59cf90100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:5f:54falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9700:50:56:ab:5f:54true4000172.16.2.9724dhcppreferrednameassignDC2_C1_RP0_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8f1f-c24e-d0af-27fe-d15f1bf7b693summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM6/DC2_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.783186Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-438entervm-370availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM7/DC2_C0_RP1_VM7.vmdkdatastore-349persistentfalsefalsefalse52b6062a-c4d2-bb15-ee09-7f8b72a50fe7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:bf:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3800:50:56:ab:bf:6ctrue4000172.16.2.3824dhcppreferrednameassignDC2_C0_RP1_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbe9f-dd8d-d71c-59da-13b33d474ba4summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM7/DC2_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.962816Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-370entervm-369availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM6/DC2_C0_RP1_VM6.vmdkdatastore-349persistentfalsefalsefalse52e4f5c4-9578-27a8-7250-c0af7564d36e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c2:d6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3700:50:56:ab:c2:d6true4000172.16.2.3724dhcppreferrednameassignDC2_C0_RP1_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bda58-7f18-ba75-fcf6-b3bc9f351360summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM6/DC2_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.942114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-369entervm-384availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM3/DC2_C0_RP3_VM3.vmdkdatastore-349persistentfalsefalsefalse52779320-1e7c-ee7b-bf1d-dd568a510947100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5f:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5000:50:56:ab:5f:ectrue4000172.16.2.5024dhcppreferrednameassignDC2_C0_RP3_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bba04-6030-005d-4ba4-b1fc69842cb5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM3/DC2_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.64417Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-384entervm-379availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM7/DC2_C0_RP2_VM7.vmdkdatastore-349persistentfalsefalsefalse5290a946-e459-c15a-1f88-9391a6fc9156100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:94:d8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4600:50:56:ab:94:d8true4000172.16.2.4624dhcppreferrednameassignDC2_C0_RP2_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b370e-3af5-1137-1b3c-78b007174d84summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM7/DC2_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.141893Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-379entervm-383availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM2/DC2_C0_RP3_VM2.vmdkdatastore-349persistentfalsefalsefalse5292e529-d485-d738-aae9-4551d138f6c3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a6:88falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4900:50:56:ab:a6:88true4000172.16.2.4924dhcppreferrednameassignDC2_C0_RP3_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3aec-62c9-2396-56c8-e6e45ea66e13summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM2/DC2_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.631226Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-383entervm-382availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM1/DC2_C0_RP3_VM1.vmdkdatastore-349persistentfalsefalsefalse52c02aa7-d764-86ff-5769-be8e213c92be100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:15:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4800:50:56:ab:15:aftrue4000172.16.2.4824dhcppreferrednameassignDC2_C0_RP3_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc181-e5be-95d2-9868-7afea648bc84summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM1/DC2_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.616338Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-382entervm-381availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM0/DC2_C0_RP3_VM0.vmdkdatastore-349persistentfalsefalsefalse5295a638-3a17-c26f-ec8f-16d00c7e1af2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:eb:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4700:50:56:ab:eb:44true4000172.16.2.4724dhcppreferrednameassignDC2_C0_RP3_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b531a-0d23-b10c-60cd-6dfe983ec3e9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM0/DC2_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.603926Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-381entervm-388availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM7/DC2_C0_RP3_VM7.vmdkdatastore-349persistentfalsefalsefalse5256ee20-9334-9384-3bb8-27ff7a998fec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:88:73falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5400:50:56:ab:88:73true4000172.16.2.5424dhcppreferrednameassignDC2_C0_RP3_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b906b-dade-2804-530c-a7c248de75d9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM7/DC2_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.690836Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-388entervm-375availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM3/DC2_C0_RP2_VM3.vmdkdatastore-349persistentfalsefalsefalse52917f8c-5451-7dbc-eaef-9301b22d85cb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0d:04falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4200:50:56:ab:0d:04true4000172.16.2.4224dhcppreferrednameassignDC2_C0_RP2_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b15d3-cc82-98b0-9e6e-1a7ac9e07ee6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM3/DC2_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.961362Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-375entervm-387availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM6/DC2_C0_RP3_VM6.vmdkdatastore-349persistentfalsefalsefalse527b6935-942a-dc23-d9f8-e59c97d4b306100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:48:cffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5300:50:56:ab:48:cftrue4000172.16.2.5324dhcppreferrednameassignDC2_C0_RP3_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be8d3-ae4a-0d1a-187e-54a8224b12ffsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM6/DC2_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.682718Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-387entervm-376availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM4/DC2_C0_RP2_VM4.vmdkdatastore-349persistentfalsefalsefalse52c1363b-bcf2-f81d-4687-b7abea6c11d7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:03:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4300:50:56:ab:03:e5true4000172.16.2.4324dhcppreferrednameassignDC2_C0_RP2_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5ad-0610-ab0c-9969-265f727afa7bsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM4/DC2_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.984837Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-376entervm-386availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM5/DC2_C0_RP3_VM5.vmdkdatastore-349persistentfalsefalsefalse529180bf-b5fe-cab1-f681-6762fd1b55c3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:de:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5200:50:56:ab:de:71true4000172.16.2.5224dhcppreferrednameassignDC2_C0_RP3_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3ea8-94fb-45ef-654c-144815141d77summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM5/DC2_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.66923Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-386entervm-364availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM1/DC2_C0_RP1_VM1.vmdkdatastore-349persistentfalsefalsefalse52a9de19-5615-400e-aaa6-0349a1fd8071100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7b:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3200:50:56:ab:7b:59true4000172.16.2.3224dhcppreferrednameassignDC2_C0_RP1_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9aa4-94e7-f47c-4d0f-347423c4e5e2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM1/DC2_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.833351Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-364entervm-377availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM5/DC2_C0_RP2_VM5.vmdkdatastore-349persistentfalsefalsefalse5287a2ae-6d9f-699e-cc6c-a55db3195281100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d0:b9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4400:50:56:ab:d0:b9true4000172.16.2.4424dhcppreferrednameassignDC2_C0_RP2_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcf51-5e28-d536-08ff-4f87b65778d0summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM5/DC2_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.018579Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-377entervm-385availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM4/DC2_C0_RP3_VM4.vmdkdatastore-349persistentfalsefalsefalse527ecd69-570a-d2f2-4295-63d0861ec2f7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:f1:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5100:50:56:ab:f1:72true4000172.16.2.5124dhcppreferrednameassignDC2_C0_RP3_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1cd5-be49-61e4-53b5-d7dc2d3579d2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM4/DC2_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.65565Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-385entervm-363availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM0/DC2_C0_RP1_VM0.vmdkdatastore-349persistentfalsefalsefalse5243aeaa-8071-8ad0-afbc-00390480a108100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9f:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3100:50:56:ab:9f:1ctrue4000172.16.2.3124dhcppreferrednameassignDC2_C0_RP1_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0cab-3f8c-0bd0-fa3d-da94d84c24d8summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM0/DC2_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.775982Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-363entervm-378availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM6/DC2_C0_RP2_VM6.vmdkdatastore-349persistentfalsefalsefalse5269c7e5-56a7-0a65-fda8-f9aab5c565c0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:68:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4500:50:56:ab:68:97true4000172.16.2.4524dhcppreferrednameassignDC2_C0_RP2_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba8e9-af04-0147-ae1a-15f3f45243aasummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM6/DC2_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.080164Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-378entervm-366availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM3/DC2_C0_RP1_VM3.vmdkdatastore-349persistentfalsefalsefalse528b2edf-2f96-42bc-c826-9567a6a5a634100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ec:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3400:50:56:ab:ec:e8true4000172.16.2.3424dhcppreferrednameassignDC2_C0_RP1_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be8af-e115-33ae-0d0f-dfe743bb52c6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM3/DC2_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.89345Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-366entervm-365availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM2/DC2_C0_RP1_VM2.vmdkdatastore-349persistentfalsefalsefalse521226e0-d36f-2bc3-1690-1dee7fd77eac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:0b:d4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3300:50:56:ab:0b:d4true4000172.16.2.3324dhcppreferrednameassignDC2_C0_RP1_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bab04-9d5f-ba75-9abf-21b1e5e02d1fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM2/DC2_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.861506Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-365entervm-368availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM5/DC2_C0_RP1_VM5.vmdkdatastore-349persistentfalsefalsefalse52fab100-e4b4-96ac-1f55-cfdc1cbb78c1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:f1:f8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3600:50:56:ab:f1:f8true4000172.16.2.3624dhcppreferrednameassignDC2_C0_RP1_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0a20-33a0-7171-8f83-2f437a830bbbsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM5/DC2_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.92602Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-368entervm-367availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM4/DC2_C0_RP1_VM4.vmdkdatastore-349persistentfalsefalsefalse52bd26b8-5248-ede0-ce1b-e645874014bd100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3500:50:56:ab:59:8dtrue4000172.16.2.3524dhcppreferrednameassignDC2_C0_RP1_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58c3-1a3e-b4bc-c1ff-6fcb13c5b005summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM4/DC2_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.908846Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-367entervm-361availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM7/DC2_C0_RP0_VM7.vmdkdatastore-349persistentfalsefalsefalse52bb5606-f251-0851-f4f7-5bcefe8b9a94100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d3:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3000:50:56:ab:d3:b4true4000172.16.2.3024dhcppreferrednameassignDC2_C0_RP0_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b012b-623a-a18a-4a02-ef9efd88b8d8summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM7/DC2_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.284898Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-361entervm-360availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM6/DC2_C0_RP0_VM6.vmdkdatastore-349persistentfalsefalsefalse52ee7125-cedc-5f8a-6ebd-04a0dd96d4d6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:f5:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2900:50:56:ab:f5:a8true4000172.16.2.2924dhcppreferrednameassignDC2_C0_RP0_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bee85-669d-e2c7-1f3c-a0045eb38463summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM6/DC2_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.275315Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-360entervm-355availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM1/DC2_C0_RP0_VM1.vmdkdatastore-349persistentfalsefalsefalse52ab8aba-d56d-81a9-7ca3-0c28209ba2f0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:21:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2400:50:56:ab:21:f6true4000172.16.2.2424dhcppreferrednameassignDC2_C0_RP0_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde35-b830-88a8-f1c5-dd054bb86453summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM1/DC2_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.226404Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-355entervm-354availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM0/DC2_C0_RP0_VM0.vmdkdatastore-349persistentfalsefalsefalse5222338a-39d4-4397-e79c-7c4276a3cdf6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d4:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2300:50:56:ab:d4:7btrue4000172.16.2.2324dhcppreferrednameassignDC2_C0_RP0_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbaa2-0aaa-acfb-36f0-8d687302ad00summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM0/DC2_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.217938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-354entervm-359availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM5/DC2_C0_RP0_VM5.vmdkdatastore-349persistentfalsefalsefalse52650f7b-1e2e-2625-d50a-3a5e7860ddbe100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:95:55falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2800:50:56:ab:95:55true4000172.16.2.2824dhcppreferrednameassignDC2_C0_RP0_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b09cf-db52-2a84-730e-de319102ea25summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM5/DC2_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.266979Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-359entervm-358availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM4/DC2_C0_RP0_VM4.vmdkdatastore-349persistentfalsefalsefalse520f09a6-c675-f254-fc51-76a3f76cdc61100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:5c:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2700:50:56:ab:5c:batrue4000172.16.2.2724dhcppreferrednameassignDC2_C0_RP0_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4681-e9a7-44ad-7760-63933e642cd6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM4/DC2_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.257429Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-358entervm-357availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM3/DC2_C0_RP0_VM3.vmdkdatastore-349persistentfalsefalsefalse52157347-342e-56e9-3cee-ac25ed0a6311100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ea:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2600:50:56:ab:ea:08true4000172.16.2.2624dhcppreferrednameassignDC2_C0_RP0_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2716-3f75-27da-1178-a6e2c156b209summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM3/DC2_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.24832Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-357entervm-356availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM2/DC2_C0_RP0_VM2.vmdkdatastore-349persistentfalsefalsefalse52364619-63b7-fc2d-5834-33506e347566100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:fc:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2500:50:56:ab:fc:d9true4000172.16.2.2524dhcppreferrednameassignDC2_C0_RP0_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5700-ce72-5237-e169-3f31bbe252eesummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM2/DC2_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.237121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-356entervm-450availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM0/DC2_C1_RP2_VM0.vmdkdatastore-349persistentfalsefalsefalse522a2ff9-ba39-fc86-73be-41f91a9df9d1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:03:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10700:50:56:ab:03:3ctrue4000172.16.2.10724dhcppreferrednameassignDC2_C1_RP2_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7eff-fc8f-b132-ddce-f0e9abf0cbb6summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM0/DC2_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.55265Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-450entervm-478availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM1/DC2_C1_RP5_VM1.vmdkdatastore-349persistentfalsefalsefalse528ffbc2-653f-b811-f9fb-eee49909b6d6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:76:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13200:50:56:ab:76:b5true4000172.16.2.13224dhcppreferrednameassignDC2_C1_RP5_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b08a2-1cfd-1d5c-4dc6-3a980bb7fd88summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM1/DC2_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.64744Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-478entervm-477availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM0/DC2_C1_RP5_VM0.vmdkdatastore-349persistentfalsefalsefalse52eef6bc-85be-bb35-a809-927a2a5790a5100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:8b:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13100:50:56:ab:8b:32true4000172.16.2.13124dhcppreferrednameassignDC2_C1_RP5_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8f6e-ccac-b965-a713-3d91823ab2aesummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM0/DC2_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.638383Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-477entervm-397availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM7/DC2_C0_RP4_VM7.vmdkdatastore-349persistentfalsefalsefalse52670442-71a5-8808-b070-ea54ea512803100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:03:06falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6200:50:56:ab:03:06true4000172.16.2.6224dhcppreferrednameassignDC2_C0_RP4_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b421a-e5ba-f311-da6e-7a52ee32a188summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM7/DC2_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.099453Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-397entervm-480availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM3/DC2_C1_RP5_VM3.vmdkdatastore-349persistentfalsefalsefalse52d51809-d43d-feec-93a9-7a289437f5c8100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:fc:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13400:50:56:ab:fc:79true4000172.16.2.13424dhcppreferrednameassignDC2_C1_RP5_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd878-93ed-d3e1-d8a7-e667a3af5c35summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM3/DC2_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.664015Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-480entervm-479availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM2/DC2_C1_RP5_VM2.vmdkdatastore-349persistentfalsefalsefalse5292053d-71e9-8682-bdfa-bed37946b77e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6b:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13300:50:56:ab:6b:44true4000172.16.2.13324dhcppreferrednameassignDC2_C1_RP5_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beedb-0b3c-299f-2884-25ea4be4f8c2summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM2/DC2_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.65557Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-479entervm-395availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM5/DC2_C0_RP4_VM5.vmdkdatastore-349persistentfalsefalsefalse5275ea76-be67-4404-78d4-35db1b0fa040100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c7:a2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6000:50:56:ab:c7:a2true4000172.16.2.6024dhcppreferrednameassignDC2_C0_RP4_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c89-9bff-3947-7bb4-2555f38d5f88summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM5/DC2_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.052855Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-395entervm-482availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM5/DC2_C1_RP5_VM5.vmdkdatastore-349persistentfalsefalsefalse52b287c7-8e3c-997e-8f41-68b159094a4c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:fb:02falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13600:50:56:ab:fb:02true4000172.16.2.13624dhcppreferrednameassignDC2_C1_RP5_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bef20-8a20-2d1f-37e6-d3b3936d76d7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM5/DC2_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.680952Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-482entervm-396availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM6/DC2_C0_RP4_VM6.vmdkdatastore-349persistentfalsefalsefalse527f5390-d524-a7ba-beef-9b6821250952100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:de:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6100:50:56:ab:de:1atrue4000172.16.2.6124dhcppreferrednameassignDC2_C0_RP4_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb958-9b6b-caa3-c6d7-b5a7d8fc7ca9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM6/DC2_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.07494Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-396entervm-481availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM4/DC2_C1_RP5_VM4.vmdkdatastore-349persistentfalsefalsefalse52a4fc09-2411-e5a1-3988-b452f24bab9b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a4:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13500:50:56:ab:a4:d9true4000172.16.2.13524dhcppreferrednameassignDC2_C1_RP5_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf75-a3e0-ab28-1d9e-6c5dbb15688csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM4/DC2_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.671953Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-481entervm-484availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM7/DC2_C1_RP5_VM7.vmdkdatastore-349persistentfalsefalsefalse521ecf01-6c03-2db2-de8f-b98ff2fb6c99100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0e:16falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13800:50:56:ab:0e:16true4000172.16.2.13824dhcppreferrednameassignDC2_C1_RP5_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4915-d5f1-e70a-dab5-48583f596ee4summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM7/DC2_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.697652Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-484true + 0_4session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentervm-402availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM3/DC2_C0_RP5_VM3.vmdkdatastore-349persistentfalsefalsefalse52cd7ff9-2bbc-c81b-1ed9-ee8e36c8821b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0c:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6600:50:56:ab:0c:b7true4000172.16.2.6624dhcppreferrednameassignDC2_C0_RP5_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2d36-36be-b461-24ad-14bc6a3ec6b3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM3/DC2_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.947767Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-402entervm-403availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM4/DC2_C0_RP5_VM4.vmdkdatastore-349persistentfalsefalsefalse521b2b8e-b5eb-adc3-e7de-660e764175cc100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:08:66falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6700:50:56:ab:08:66true4000172.16.2.6724dhcppreferrednameassignDC2_C0_RP5_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beda8-654d-c8b1-cf72-6eed5a3746a5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM4/DC2_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.956458Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-403entervm-390availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM0/DC2_C0_RP4_VM0.vmdkdatastore-349persistentfalsefalsefalse524d6512-5f3e-e37d-4284-0ef7cbd7d512100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:87:4cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5500:50:56:ab:87:4ctrue4000172.16.2.5524dhcppreferrednameassignDC2_C0_RP4_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b94a4-903a-b029-7ac0-bc3e4b0bac53summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM0/DC2_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:14.9349Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-390entervm-400availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM1/DC2_C0_RP5_VM1.vmdkdatastore-349persistentfalsefalsefalse5208e51f-6ea8-eb3a-784a-99adb86e0873100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:8d:c9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6400:50:56:ab:8d:c9true4000172.16.2.6424dhcppreferrednameassignDC2_C0_RP5_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8dff-8aab-b65c-e6d1-11444e609e50summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM1/DC2_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.928411Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-400entervm-401availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM2/DC2_C0_RP5_VM2.vmdkdatastore-349persistentfalsefalsefalse5225be30-e5b7-aec9-ee17-752c5306270f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:da:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6500:50:56:ab:da:e7true4000172.16.2.6524dhcppreferrednameassignDC2_C0_RP5_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b48f0-a129-3bef-028b-59b7635fb74esummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM2/DC2_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.937785Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-401entervm-399availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP5_VM0/DC2_C0_RP5_VM0.vmdkdatastore-349persistentfalsefalsefalse52a23e69-b75f-f348-6cb4-49a99a94940e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d3:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6300:50:56:ab:d3:ebtrue4000172.16.2.6324dhcppreferrednameassignDC2_C0_RP5_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-398snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b84c6-5cc3-3613-2aae-8cca38357f25summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP5_VM0/DC2_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.909469Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-399entervm-466availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM7/DC2_C1_RP3_VM7.vmdkdatastore-349persistentfalsefalsefalse52ffe8a3-50af-94f8-f21f-1eb701a04157100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:b3:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12200:50:56:ab:b3:57true4000172.16.2.12224dhcppreferrednameassignDC2_C1_RP3_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b68f9-562d-41fa-5ab0-f46518f356c7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM7/DC2_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.908963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-466entervm-465availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM6/DC2_C1_RP3_VM6.vmdkdatastore-349persistentfalsefalsefalse52d50ad8-9783-71e8-10cc-ba8791f76239100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:a4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12100:50:56:ab:59:a4true4000172.16.2.12124dhcppreferrednameassignDC2_C1_RP3_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4350-03b0-259a-ea77-8b0e5bd47511summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM6/DC2_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.876017Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-465entervm-497availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM2/DC2_C1_RP7_VM2.vmdkdatastore-349persistentfalsefalsefalse526b1080-f62e-d97d-26c1-a20d31d972d1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:86:f0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14900:50:56:ab:86:f0true4000172.16.2.14924dhcppreferrednameassignDC2_C1_RP7_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3db7-0a95-1766-7daa-6bd7e35b658csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM2/DC2_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.971662Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-497entervm-498availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM3/DC2_C1_RP7_VM3.vmdkdatastore-349persistentfalsefalsefalse52bafb50-e674-7d75-5c2b-32ecba384714100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:6f:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15000:50:56:ab:6f:fdtrue4000172.16.2.15024dhcppreferrednameassignDC2_C1_RP7_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8cda-7e1b-930e-a6d6-d979689ec1c3summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM3/DC2_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.985374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-498entervm-495availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM0/DC2_C1_RP7_VM0.vmdkdatastore-349persistentfalsefalsefalse52a4266c-a007-e013-2ef2-d22984fd5bac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:b5:acfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14700:50:56:ab:b5:actrue4000172.16.2.14724dhcppreferrednameassignDC2_C1_RP7_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6910-2889-9aae-2553-70ec7a0f98b1summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM0/DC2_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.916497Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-495entervm-460availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM1/DC2_C1_RP3_VM1.vmdkdatastore-349persistentfalsefalsefalse522ce3fb-de12-8e84-e17f-dce41980a134100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c2:89falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11600:50:56:ab:c2:89true4000172.16.2.11624dhcppreferrednameassignDC2_C1_RP3_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be9e1-c028-0765-ce5a-d34d6f6ec706summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM1/DC2_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.716211Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-460entervm-496availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM1/DC2_C1_RP7_VM1.vmdkdatastore-349persistentfalsefalsefalse526cd5de-315f-50e8-95c1-ad473c72d204100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:97:4ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14800:50:56:ab:97:4ftrue4000172.16.2.14824dhcppreferrednameassignDC2_C1_RP7_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b23f4-7ac1-fd2f-441d-4d489c61e8e7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM1/DC2_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.94635Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-496entervm-459availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM0/DC2_C1_RP3_VM0.vmdkdatastore-349persistentfalsefalsefalse52583d97-2bc1-99f4-acaa-4d8a23f68dcc100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:e6:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11500:50:56:ab:e6:6dtrue4000172.16.2.11524dhcppreferrednameassignDC2_C1_RP3_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beda3-93e9-a7e2-b148-2366c66356e8summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM0/DC2_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.68928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-459entervm-501availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM6/DC2_C1_RP7_VM6.vmdkdatastore-349persistentfalsefalsefalse523cc731-6b0c-edfd-9fc8-f6a41a21568f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:ff:28falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15300:50:56:ab:ff:28true4000172.16.2.15324dhcppreferrednameassignDC2_C1_RP7_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0503-a29c-e73d-c3d0-dbc9cbb69640summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM6/DC2_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.033963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-501entervm-502availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM7/DC2_C1_RP7_VM7.vmdkdatastore-349persistentfalsefalsefalse52178ddf-8eef-35ab-b1bd-8221aaf8cbcf100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:95:82falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15400:50:56:ab:95:82true4000172.16.2.15424dhcppreferrednameassignDC2_C1_RP7_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8d60-5816-3e51-e887-3c86760a5beesummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM7/DC2_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.051744Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-502entervm-499availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM4/DC2_C1_RP7_VM4.vmdkdatastore-349persistentfalsefalsefalse521fb1de-e138-b88a-b15c-b46848c669ba100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9d:2bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15100:50:56:ab:9d:2btrue4000172.16.2.15124dhcppreferrednameassignDC2_C1_RP7_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5f0b-583f-52aa-f04f-1408dfb554fbsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM4/DC2_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:43.998427Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-499entervm-464availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM5/DC2_C1_RP3_VM5.vmdkdatastore-349persistentfalsefalsefalse523a8942-3a21-d0ba-f59c-b4dc251fb458100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7d:e7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12000:50:56:ab:7d:e7true4000172.16.2.12024dhcppreferrednameassignDC2_C1_RP3_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2d1c-663d-c2e2-86e8-9b0e5db131c6summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM5/DC2_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.844952Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-464entervm-500availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP7_VM5/DC2_C1_RP7_VM5.vmdkdatastore-349persistentfalsefalsefalse5288392c-450b-24dd-ee5d-1fb77848695e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e0:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.15200:50:56:ab:e0:batrue4000172.16.2.15224dhcppreferrednameassignDC2_C1_RP7_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-494snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8584-a4cc-68d8-21a5-8cb18cc02d52summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP7_VM5/DC2_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:44.014673Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-500entervm-463availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM4/DC2_C1_RP3_VM4.vmdkdatastore-349persistentfalsefalsefalse522b2672-af5d-f0ae-7df4-30b729b5346e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4a:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11900:50:56:ab:4a:3ctrue4000172.16.2.11924dhcppreferrednameassignDC2_C1_RP3_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfcab-3b43-0aeb-6dab-88056de6da76summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM4/DC2_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.815027Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-463entervm-462availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM3/DC2_C1_RP3_VM3.vmdkdatastore-349persistentfalsefalsefalse52e951c7-fad6-9689-22bb-847db90d34f0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0b:83falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11800:50:56:ab:0b:83true4000172.16.2.11824dhcppreferrednameassignDC2_C1_RP3_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2c85-37e9-326e-8ccf-66ca81669af4summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM3/DC2_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.775267Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-462entervm-461availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP3_VM2/DC2_C1_RP3_VM2.vmdkdatastore-349persistentfalsefalsefalse52d35c71-26b2-0909-b19f-cefa236a83fa100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:18:53falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11700:50:56:ab:18:53true4000172.16.2.11724dhcppreferrednameassignDC2_C1_RP3_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-458snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5e5c-a113-0ac7-6658-21d9fb7b4e0bsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP3_VM2/DC2_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:38.744643Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-461entervm-493availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM7/DC2_C1_RP6_VM7.vmdkdatastore-349persistentfalsefalsefalse52542558-098d-4d4f-7b8d-ce49f38207eb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:54:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14600:50:56:ab:54:fdtrue4000172.16.2.14624dhcppreferrednameassignDC2_C1_RP6_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2fbc-6f24-9cb2-0070-1018cd9d43a0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM7/DC2_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.685305Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-493entervm-457availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM7/DC2_C1_RP2_VM7.vmdkdatastore-349persistentfalsefalsefalse52c18c40-b7e0-cbe9-146c-8751c37b3d8f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:12:a6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11400:50:56:ab:12:a6true4000172.16.2.11424dhcppreferrednameassignDC2_C1_RP2_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1522-4670-1d33-cbe3-96f8fdf93bccsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM7/DC2_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.718652Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-457entervm-492availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM6/DC2_C1_RP6_VM6.vmdkdatastore-349persistentfalsefalsefalse52e65afa-7d8e-7113-8f7b-a7768992ef2f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:dd:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14500:50:56:ab:dd:a8true4000172.16.2.14524dhcppreferrednameassignDC2_C1_RP6_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b70e7-76f8-2f8c-a724-0597cb18d8aasummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM6/DC2_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.672552Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-492entervm-491availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM5/DC2_C1_RP6_VM5.vmdkdatastore-349persistentfalsefalsefalse52883a2e-1739-cd62-ad97-0ca0133bf565100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:3d:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14400:50:56:ab:3d:7atrue4000172.16.2.14424dhcppreferrednameassignDC2_C1_RP6_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b66cc-fe05-4cb0-b550-405854208736summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM5/DC2_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.66443Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-491entervm-455availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM5/DC2_C1_RP2_VM5.vmdkdatastore-349persistentfalsefalsefalse5211e33b-9036-735b-fe27-33a57b42d4ac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:44:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11200:50:56:ab:44:00true4000172.16.2.11224dhcppreferrednameassignDC2_C1_RP2_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd8b3-8a65-594e-2e50-51b8b5041c6esummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM5/DC2_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.656239Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-455entervm-456availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM6/DC2_C1_RP2_VM6.vmdkdatastore-349persistentfalsefalsefalse52e861f1-d760-abf8-a7c2-5f9f9260ba1d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:fb:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11300:50:56:ab:fb:ectrue4000172.16.2.11324dhcppreferrednameassignDC2_C1_RP2_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbf69-7a9c-c91a-8838-3058cfd3e059summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM6/DC2_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.687138Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-456entervm-453availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM3/DC2_C1_RP2_VM3.vmdkdatastore-349persistentfalsefalsefalse52f45f62-2a71-b4d6-e58b-14bf303a068e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:3b:befalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11000:50:56:ab:3b:betrue4000172.16.2.11024dhcppreferrednameassignDC2_C1_RP2_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b56fb-e21c-de46-ae5b-4a8a1a8ad2f9summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM3/DC2_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.611708Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-453entervm-454availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM4/DC2_C1_RP2_VM4.vmdkdatastore-349persistentfalsefalsefalse52b3f5c6-daaf-8677-7ff9-b7c7ee8a315c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:94:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.11100:50:56:ab:94:0btrue4000172.16.2.11124dhcppreferrednameassignDC2_C1_RP2_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2527-4c85-8cf2-4c5f-c348d723b659summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM4/DC2_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.631543Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-454entervm-451availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM1/DC2_C1_RP2_VM1.vmdkdatastore-349persistentfalsefalsefalse52177412-8165-5a5f-8e58-61a7490b0f8a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:bf:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10800:50:56:ab:bf:5ctrue4000172.16.2.10824dhcppreferrednameassignDC2_C1_RP2_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9291-bcd6-a9d0-0fcd-0d7cf1753bc0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM1/DC2_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.575925Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-451entervm-433availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM1/DC2_C1_RP0_VM1.vmdkdatastore-349persistentfalsefalsefalse52a03803-b93d-11da-603f-4bb1b93ca66c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:72:76falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9200:50:56:ab:72:76true4000172.16.2.9224dhcppreferrednameassignDC2_C1_RP0_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b290b-3c83-6ede-eb5c-eab9f507cb15summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM1/DC2_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.679259Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-433entervm-452availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM2/DC2_C1_RP2_VM2.vmdkdatastore-349persistentfalsefalsefalse52420bbc-8143-296a-e3f4-dbd3d4f2c373100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:0a:02falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10900:50:56:ab:0a:02true4000172.16.2.10924dhcppreferrednameassignDC2_C1_RP2_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b40d7-25a8-89d7-df23-5379fb8f610csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM2/DC2_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.596131Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-452entervm-432availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM0/DC2_C1_RP0_VM0.vmdkdatastore-349persistentfalsefalsefalse52df8e38-3fe6-cba7-3773-2f0a03e5a9a0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:95:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9100:50:56:ab:95:72true4000172.16.2.9124dhcppreferrednameassignDC2_C1_RP0_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf30d-5841-7f38-16a6-bfa312c7ea2csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM0/DC2_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.648316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-432entervm-422availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM5/DC2_C0_RP7_VM5.vmdkdatastore-349persistentfalsefalsefalse52416520-33d1-68e7-cd45-0089aa738d3a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:b7:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8400:50:56:ab:b7:a8true4000172.16.2.8424dhcppreferrednameassignDC2_C0_RP7_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfdea-085c-3ddf-872c-61883a7abeb6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM5/DC2_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.643053Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-422entervm-423availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM6/DC2_C0_RP7_VM6.vmdkdatastore-349persistentfalsefalsefalse525fa1d9-9366-c981-5219-02de9ad23d5f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a4:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8500:50:56:ab:a4:0atrue4000172.16.2.8524dhcppreferrednameassignDC2_C0_RP7_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bff76-cbfc-fe7f-4661-d5cb7b2d45d6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM6/DC2_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.666692Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-423entervm-441availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM0/DC2_C1_RP1_VM0.vmdkdatastore-349persistentfalsefalsefalse52a53ca5-cef3-787f-adc9-6a1001e8a944100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:48:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9900:50:56:ab:48:a1true4000172.16.2.9924dhcppreferrednameassignDC2_C1_RP1_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7857-91c9-4e24-c5cf-dc3d2ec7cbcasummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM0/DC2_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.919448Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-441entervm-490availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM4/DC2_C1_RP6_VM4.vmdkdatastore-349persistentfalsefalsefalse528a0d0b-037f-eee2-ac38-ff327263e2c1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:7b:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14300:50:56:ab:7b:e5true4000172.16.2.14324dhcppreferrednameassignDC2_C1_RP6_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9f4-13ac-5c1c-71a3-38694f3967c7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM4/DC2_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.655335Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-490entervm-424availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM7/DC2_C0_RP7_VM7.vmdkdatastore-349persistentfalsefalsefalse5229f4fa-c50d-444d-b5ae-e0337c615fb3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d5:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8600:50:56:ab:d5:a8true4000172.16.2.8624dhcppreferrednameassignDC2_C0_RP7_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b644b-00ae-4c9f-4df5-1dbf125afa7fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM7/DC2_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.69584Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-424entervm-489availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM3/DC2_C1_RP6_VM3.vmdkdatastore-349persistentfalsefalsefalse522fd474-d85d-c016-0040-72d38ddec131100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:8b:f2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14200:50:56:ab:8b:f2true4000172.16.2.14224dhcppreferrednameassignDC2_C1_RP6_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4156-6da9-e660-6fe7-1a027a568062summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM3/DC2_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.639963Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-489entervm-488availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM2/DC2_C1_RP6_VM2.vmdkdatastore-349persistentfalsefalsefalse523e0e1f-7df5-b099-bd18-0f8338d5f641100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:63:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14100:50:56:ab:63:0btrue4000172.16.2.14124dhcppreferrednameassignDC2_C1_RP6_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdf7c-162d-9d1a-f00b-a3a371f78b46summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM2/DC2_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.62557Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-488entervm-418availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM1/DC2_C0_RP7_VM1.vmdkdatastore-349persistentfalsefalsefalse525cd76a-be30-2e21-5b9f-5fa12277587c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:77:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8000:50:56:ab:77:c7true4000172.16.2.8024dhcppreferrednameassignDC2_C0_RP7_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd51a-8094-fd14-0751-803d20c1b143summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM1/DC2_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.546177Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-418entervm-487availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM1/DC2_C1_RP6_VM1.vmdkdatastore-349persistentfalsefalsefalse528c9143-c259-5cdf-431e-91fd1df8b0cb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e1:bbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.14000:50:56:ab:e1:bbtrue4000172.16.2.14024dhcppreferrednameassignDC2_C1_RP6_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3b52-a3b2-68ce-235c-192773b422a3summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM1/DC2_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.609215Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-487entervm-419availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM2/DC2_C0_RP7_VM2.vmdkdatastore-349persistentfalsefalsefalse52f4cc81-1dbb-61a2-2d50-8683a450782f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:83:c8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8100:50:56:ab:83:c8true4000172.16.2.8124dhcppreferrednameassignDC2_C0_RP7_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52f8-f92b-ea12-e98f-dcddcd4e3ee5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM2/DC2_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.575907Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-419entervm-486availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP6_VM0/DC2_C1_RP6_VM0.vmdkdatastore-349persistentfalsefalsefalse52e16148-a8b6-1072-0b71-25a93778162c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:56:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13900:50:56:ab:56:1atrue4000172.16.2.13924dhcppreferrednameassignDC2_C1_RP6_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-485snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf38-258a-1e8b-67b1-3c9a739ae22fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP6_VM0/DC2_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:42.593367Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-486entervm-420availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM3/DC2_C0_RP7_VM3.vmdkdatastore-349persistentfalsefalsefalse522a738b-ece0-19c3-2220-382eb2648845100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:6d:96falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8200:50:56:ab:6d:96true4000172.16.2.8224dhcppreferrednameassignDC2_C0_RP7_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4be4-620a-8773-6e33-f352aa8b75cfsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM3/DC2_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.59485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-420entervm-421availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM4/DC2_C0_RP7_VM4.vmdkdatastore-349persistentfalsefalsefalse5248a8f9-7a8b-8c0c-cb15-f9f759ac0332100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:86:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.8300:50:56:ab:86:3ctrue4000172.16.2.8324dhcppreferrednameassignDC2_C0_RP7_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8718-3cdd-2c57-615c-5b88aad88dc5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM4/DC2_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.618492Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-421entervm-448availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM7/DC2_C1_RP1_VM7.vmdkdatastore-349persistentfalsefalsefalse52fc2685-4545-f4a4-a772-c75cb657bc6b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:71:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10600:50:56:ab:71:6ctrue4000172.16.2.10624dhcppreferrednameassignDC2_C1_RP1_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c1e-2766-70aa-94ce-1136ea04d18fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM7/DC2_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.072254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-448entervm-437availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM5/DC2_C1_RP0_VM5.vmdkdatastore-349persistentfalsefalsefalse529a0504-9090-06c3-57d5-fdc03bb4711b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5c:17falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9600:50:56:ab:5c:17true4000172.16.2.9624dhcppreferrednameassignDC2_C1_RP0_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3538-2724-c8b1-9734-526839b05b61summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM5/DC2_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.757771Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-437entervm-446availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM5/DC2_C1_RP1_VM5.vmdkdatastore-349persistentfalsefalsefalse52a1aac5-d7bb-c366-a5b7-8388f9afc4f7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:45:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10400:50:56:ab:45:0atrue4000172.16.2.10424dhcppreferrednameassignDC2_C1_RP1_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b07b4-d10b-607e-9cd5-316c4c84682asummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM5/DC2_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.038183Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-446entervm-436availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM4/DC2_C1_RP0_VM4.vmdkdatastore-349persistentfalsefalsefalse52724458-edc8-f9b2-a395-74f94919e9db100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9f:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9500:50:56:ab:9f:59true4000172.16.2.9524dhcppreferrednameassignDC2_C1_RP0_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b00d4-103f-cae0-17a9-e481f58b1843summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM4/DC2_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.736939Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-436entervm-447availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM6/DC2_C1_RP1_VM6.vmdkdatastore-349persistentfalsefalsefalse52742029-0c8b-8200-61e9-13b137cb9f34100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4e:6dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10500:50:56:ab:4e:6dtrue4000172.16.2.10524dhcppreferrednameassignDC2_C1_RP1_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf23a-f2eb-c31e-b2a3-e9db1bc7910asummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM6/DC2_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.049195Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-447entervm-435availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM3/DC2_C1_RP0_VM3.vmdkdatastore-349persistentfalsefalsefalse52557623-7e97-33cd-d1fb-6cd620c7f04f100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:92:77falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9400:50:56:ab:92:77true4000172.16.2.9424dhcppreferrednameassignDC2_C1_RP0_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5fd5-7aeb-0e7d-f249-94337948f4edsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM3/DC2_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.725968Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-435entervm-444availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM3/DC2_C1_RP1_VM3.vmdkdatastore-349persistentfalsefalsefalse5272705e-eb03-543c-57f6-685038650aa2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:e1:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10200:50:56:ab:e1:d7true4000172.16.2.10224dhcppreferrednameassignDC2_C1_RP1_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0b37-d882-272c-2324-497a49d7ced8summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM3/DC2_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.98991Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-444entervm-434availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM2/DC2_C1_RP0_VM2.vmdkdatastore-349persistentfalsefalsefalse524bb20e-0899-2a33-fbd3-03263bf41b84100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:8d:27falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9300:50:56:ab:8d:27true4000172.16.2.9324dhcppreferrednameassignDC2_C1_RP0_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb6dc-3c53-1546-6f10-64b6b66ab705summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM2/DC2_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.713842Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-434entervm-445availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM4/DC2_C1_RP1_VM4.vmdkdatastore-349persistentfalsefalsefalse5281b992-f289-8d99-e61e-bddfa22ea910100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:4a:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10300:50:56:ab:4a:e2true4000172.16.2.10324dhcppreferrednameassignDC2_C1_RP1_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b498c-222a-773d-9479-0d156b44abfdsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM4/DC2_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:33.019253Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-445entervm-442availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM1/DC2_C1_RP1_VM1.vmdkdatastore-349persistentfalsefalsefalse5221ac2d-36df-466b-fe6e-5b4a69a24ca1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d1:b6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10000:50:56:ab:d1:b6true4000172.16.2.10024dhcppreferrednameassignDC2_C1_RP1_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5265-86c0-1367-3b0d-7b5ff8907a5csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM1/DC2_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.942231Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-442entervm-443availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP1_VM2/DC2_C1_RP1_VM2.vmdkdatastore-349persistentfalsefalsefalse52041960-0bd6-8424-d5e9-01267e7c0205100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a5:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10100:50:56:ab:a5:cdtrue4000172.16.2.10124dhcppreferrednameassignDC2_C1_RP1_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-440snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b29ba-d9ba-527e-63f1-4e37ec8ffc61summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP1_VM2/DC2_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:32.96538Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-443entervm-439availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM7/DC2_C1_RP0_VM7.vmdkdatastore-349persistentfalsefalsefalse52401a9f-2888-e4dd-6abd-5402348d7033100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c4:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9800:50:56:ab:c4:a1true4000172.16.2.9824dhcppreferrednameassignDC2_C1_RP0_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba071-596f-420a-ffa0-6c655f6be0d2summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM7/DC2_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.803542Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-439entervm-438availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP0_VM6/DC2_C1_RP0_VM6.vmdkdatastore-349persistentfalsefalsefalse52645eef-488e-a8c7-745f-1011ce59cf90100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:5f:54falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.9700:50:56:ab:5f:54true4000172.16.2.9724dhcppreferrednameassignDC2_C1_RP0_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-431snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8f1f-c24e-d0af-27fe-d15f1bf7b693summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP0_VM6/DC2_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:31.783186Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-438entervm-370availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM7/DC2_C0_RP1_VM7.vmdkdatastore-349persistentfalsefalsefalse52b6062a-c4d2-bb15-ee09-7f8b72a50fe7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:bf:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3800:50:56:ab:bf:6ctrue4000172.16.2.3824dhcppreferrednameassignDC2_C0_RP1_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbe9f-dd8d-d71c-59da-13b33d474ba4summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM7/DC2_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.962816Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-370entervm-369availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM6/DC2_C0_RP1_VM6.vmdkdatastore-349persistentfalsefalsefalse52e4f5c4-9578-27a8-7250-c0af7564d36e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c2:d6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3700:50:56:ab:c2:d6true4000172.16.2.3724dhcppreferrednameassignDC2_C0_RP1_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bda58-7f18-ba75-fcf6-b3bc9f351360summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM6/DC2_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.942114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-369entervm-384availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM3/DC2_C0_RP3_VM3.vmdkdatastore-349persistentfalsefalsefalse52779320-1e7c-ee7b-bf1d-dd568a510947100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5f:ecfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5000:50:56:ab:5f:ectrue4000172.16.2.5024dhcppreferrednameassignDC2_C0_RP3_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bba04-6030-005d-4ba4-b1fc69842cb5summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM3/DC2_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.64417Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-384entervm-379availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM7/DC2_C0_RP2_VM7.vmdkdatastore-349persistentfalsefalsefalse5290a946-e459-c15a-1f88-9391a6fc9156100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:94:d8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4600:50:56:ab:94:d8true4000172.16.2.4624dhcppreferrednameassignDC2_C0_RP2_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b370e-3af5-1137-1b3c-78b007174d84summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM7/DC2_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.141893Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-379entervm-383availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM2/DC2_C0_RP3_VM2.vmdkdatastore-349persistentfalsefalsefalse5292e529-d485-d738-aae9-4551d138f6c3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a6:88falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4900:50:56:ab:a6:88true4000172.16.2.4924dhcppreferrednameassignDC2_C0_RP3_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3aec-62c9-2396-56c8-e6e45ea66e13summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM2/DC2_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.631226Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-383entervm-382availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM1/DC2_C0_RP3_VM1.vmdkdatastore-349persistentfalsefalsefalse52c02aa7-d764-86ff-5769-be8e213c92be100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:15:affalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4800:50:56:ab:15:aftrue4000172.16.2.4824dhcppreferrednameassignDC2_C0_RP3_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc181-e5be-95d2-9868-7afea648bc84summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM1/DC2_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.616338Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-382entervm-381availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM0/DC2_C0_RP3_VM0.vmdkdatastore-349persistentfalsefalsefalse5295a638-3a17-c26f-ec8f-16d00c7e1af2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:eb:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4700:50:56:ab:eb:44true4000172.16.2.4724dhcppreferrednameassignDC2_C0_RP3_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b531a-0d23-b10c-60cd-6dfe983ec3e9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM0/DC2_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.603926Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-381entervm-388availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM7/DC2_C0_RP3_VM7.vmdkdatastore-349persistentfalsefalsefalse5256ee20-9334-9384-3bb8-27ff7a998fec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:88:73falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5400:50:56:ab:88:73true4000172.16.2.5424dhcppreferrednameassignDC2_C0_RP3_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b906b-dade-2804-530c-a7c248de75d9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM7/DC2_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.690836Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-388entervm-375availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM3/DC2_C0_RP2_VM3.vmdkdatastore-349persistentfalsefalsefalse52917f8c-5451-7dbc-eaef-9301b22d85cb100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0d:04falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4200:50:56:ab:0d:04true4000172.16.2.4224dhcppreferrednameassignDC2_C0_RP2_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b15d3-cc82-98b0-9e6e-1a7ac9e07ee6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM3/DC2_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.961362Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-375entervm-387availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM6/DC2_C0_RP3_VM6.vmdkdatastore-349persistentfalsefalsefalse527b6935-942a-dc23-d9f8-e59c97d4b306100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:48:cffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5300:50:56:ab:48:cftrue4000172.16.2.5324dhcppreferrednameassignDC2_C0_RP3_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be8d3-ae4a-0d1a-187e-54a8224b12ffsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM6/DC2_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.682718Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-387entervm-376availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM4/DC2_C0_RP2_VM4.vmdkdatastore-349persistentfalsefalsefalse52c1363b-bcf2-f81d-4687-b7abea6c11d7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:03:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4300:50:56:ab:03:e5true4000172.16.2.4324dhcppreferrednameassignDC2_C0_RP2_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5ad-0610-ab0c-9969-265f727afa7bsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM4/DC2_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.984837Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-376entervm-386availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM5/DC2_C0_RP3_VM5.vmdkdatastore-349persistentfalsefalsefalse529180bf-b5fe-cab1-f681-6762fd1b55c3100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:de:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5200:50:56:ab:de:71true4000172.16.2.5224dhcppreferrednameassignDC2_C0_RP3_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3ea8-94fb-45ef-654c-144815141d77summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM5/DC2_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.66923Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-386entervm-364availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM1/DC2_C0_RP1_VM1.vmdkdatastore-349persistentfalsefalsefalse52a9de19-5615-400e-aaa6-0349a1fd8071100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:7b:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3200:50:56:ab:7b:59true4000172.16.2.3224dhcppreferrednameassignDC2_C0_RP1_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9aa4-94e7-f47c-4d0f-347423c4e5e2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM1/DC2_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.833351Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-364entervm-377availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM5/DC2_C0_RP2_VM5.vmdkdatastore-349persistentfalsefalsefalse5287a2ae-6d9f-699e-cc6c-a55db3195281100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d0:b9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4400:50:56:ab:d0:b9true4000172.16.2.4424dhcppreferrednameassignDC2_C0_RP2_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcf51-5e28-d536-08ff-4f87b65778d0summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM5/DC2_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.018579Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-377entervm-385availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP3_VM4/DC2_C0_RP3_VM4.vmdkdatastore-349persistentfalsefalsefalse527ecd69-570a-d2f2-4295-63d0861ec2f7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:f1:72falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.5100:50:56:ab:f1:72true4000172.16.2.5124dhcppreferrednameassignDC2_C0_RP3_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-380snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1cd5-be49-61e4-53b5-d7dc2d3579d2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP3_VM4/DC2_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:13.65565Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-385entervm-363availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM0/DC2_C0_RP1_VM0.vmdkdatastore-349persistentfalsefalsefalse5243aeaa-8071-8ad0-afbc-00390480a108100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:9f:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3100:50:56:ab:9f:1ctrue4000172.16.2.3124dhcppreferrednameassignDC2_C0_RP1_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0cab-3f8c-0bd0-fa3d-da94d84c24d8summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM0/DC2_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.775982Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-363entervm-378availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM6/DC2_C0_RP2_VM6.vmdkdatastore-349persistentfalsefalsefalse5269c7e5-56a7-0a65-fda8-f9aab5c565c0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:68:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4500:50:56:ab:68:97true4000172.16.2.4524dhcppreferrednameassignDC2_C0_RP2_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba8e9-af04-0147-ae1a-15f3f45243aasummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM6/DC2_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:12.080164Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-378entervm-366availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM3/DC2_C0_RP1_VM3.vmdkdatastore-349persistentfalsefalsefalse528b2edf-2f96-42bc-c826-9567a6a5a634100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ec:e8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3400:50:56:ab:ec:e8true4000172.16.2.3424dhcppreferrednameassignDC2_C0_RP1_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be8af-e115-33ae-0d0f-dfe743bb52c6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM3/DC2_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.89345Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-366entervm-365availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM2/DC2_C0_RP1_VM2.vmdkdatastore-349persistentfalsefalsefalse521226e0-d36f-2bc3-1690-1dee7fd77eac100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:0b:d4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3300:50:56:ab:0b:d4true4000172.16.2.3324dhcppreferrednameassignDC2_C0_RP1_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bab04-9d5f-ba75-9abf-21b1e5e02d1fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM2/DC2_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.861506Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-365entervm-368availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM5/DC2_C0_RP1_VM5.vmdkdatastore-349persistentfalsefalsefalse52fab100-e4b4-96ac-1f55-cfdc1cbb78c1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:f1:f8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3600:50:56:ab:f1:f8true4000172.16.2.3624dhcppreferrednameassignDC2_C0_RP1_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0a20-33a0-7171-8f83-2f437a830bbbsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM5/DC2_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.92602Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-368entervm-367availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP1_VM4/DC2_C0_RP1_VM4.vmdkdatastore-349persistentfalsefalsefalse52bd26b8-5248-ede0-ce1b-e645874014bd100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3500:50:56:ab:59:8dtrue4000172.16.2.3524dhcppreferrednameassignDC2_C0_RP1_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-362snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b58c3-1a3e-b4bc-c1ff-6fcb13c5b005summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP1_VM4/DC2_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:04.908846Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-367entervm-361availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM7/DC2_C0_RP0_VM7.vmdkdatastore-349persistentfalsefalsefalse52bb5606-f251-0851-f4f7-5bcefe8b9a94100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:d3:b4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3000:50:56:ab:d3:b4true4000172.16.2.3024dhcppreferrednameassignDC2_C0_RP0_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b012b-623a-a18a-4a02-ef9efd88b8d8summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM7/DC2_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.284898Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-361entervm-360availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM6/DC2_C0_RP0_VM6.vmdkdatastore-349persistentfalsefalsefalse52ee7125-cedc-5f8a-6ebd-04a0dd96d4d6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:f5:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2900:50:56:ab:f5:a8true4000172.16.2.2924dhcppreferrednameassignDC2_C0_RP0_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bee85-669d-e2c7-1f3c-a0045eb38463summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM6/DC2_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.275315Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-360entervm-355availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM1/DC2_C0_RP0_VM1.vmdkdatastore-349persistentfalsefalsefalse52ab8aba-d56d-81a9-7ca3-0c28209ba2f0100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:21:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2400:50:56:ab:21:f6true4000172.16.2.2424dhcppreferrednameassignDC2_C0_RP0_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde35-b830-88a8-f1c5-dd054bb86453summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM1/DC2_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.226404Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-355entervm-354availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM0/DC2_C0_RP0_VM0.vmdkdatastore-349persistentfalsefalsefalse5222338a-39d4-4397-e79c-7c4276a3cdf6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d4:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2300:50:56:ab:d4:7btrue4000172.16.2.2324dhcppreferrednameassignDC2_C0_RP0_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbaa2-0aaa-acfb-36f0-8d687302ad00summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM0/DC2_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.217938Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-354entervm-359availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM5/DC2_C0_RP0_VM5.vmdkdatastore-349persistentfalsefalsefalse52650f7b-1e2e-2625-d50a-3a5e7860ddbe100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:95:55falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2800:50:56:ab:95:55true4000172.16.2.2824dhcppreferrednameassignDC2_C0_RP0_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b09cf-db52-2a84-730e-de319102ea25summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM5/DC2_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.266979Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-359entervm-358availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM4/DC2_C0_RP0_VM4.vmdkdatastore-349persistentfalsefalsefalse520f09a6-c675-f254-fc51-76a3f76cdc61100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:5c:bafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2700:50:56:ab:5c:batrue4000172.16.2.2724dhcppreferrednameassignDC2_C0_RP0_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4681-e9a7-44ad-7760-63933e642cd6summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM4/DC2_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.257429Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-358entervm-357availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM3/DC2_C0_RP0_VM3.vmdkdatastore-349persistentfalsefalsefalse52157347-342e-56e9-3cee-ac25ed0a6311100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:ea:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2600:50:56:ab:ea:08true4000172.16.2.2624dhcppreferrednameassignDC2_C0_RP0_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2716-3f75-27da-1178-a6e2c156b209summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM3/DC2_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.24832Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-357entervm-356availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP0_VM2/DC2_C0_RP0_VM2.vmdkdatastore-349persistentfalsefalsefalse52364619-63b7-fc2d-5834-33506e347566100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:fc:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.2500:50:56:ab:fc:d9true4000172.16.2.2524dhcppreferrednameassignDC2_C0_RP0_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-353snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5700-ce72-5237-e169-3f31bbe252eesummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP0_VM2/DC2_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:03.237121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-356entervm-450availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP2_VM0/DC2_C1_RP2_VM0.vmdkdatastore-349persistentfalsefalsefalse522a2ff9-ba39-fc86-73be-41f91a9df9d1100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:03:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.10700:50:56:ab:03:3ctrue4000172.16.2.10724dhcppreferrednameassignDC2_C1_RP2_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-449snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7eff-fc8f-b132-ddce-f0e9abf0cbb6summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP2_VM0/DC2_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:34.55265Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-450entervm-478availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM1/DC2_C1_RP5_VM1.vmdkdatastore-349persistentfalsefalsefalse528ffbc2-653f-b811-f9fb-eee49909b6d6100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:76:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13200:50:56:ab:76:b5true4000172.16.2.13224dhcppreferrednameassignDC2_C1_RP5_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b08a2-1cfd-1d5c-4dc6-3a980bb7fd88summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM1/DC2_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.64744Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-478entervm-477availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM0/DC2_C1_RP5_VM0.vmdkdatastore-349persistentfalsefalsefalse52eef6bc-85be-bb35-a809-927a2a5790a5100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:8b:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13100:50:56:ab:8b:32true4000172.16.2.13124dhcppreferrednameassignDC2_C1_RP5_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8f6e-ccac-b965-a713-3d91823ab2aesummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM0/DC2_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.638383Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-477entervm-397availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM7/DC2_C0_RP4_VM7.vmdkdatastore-349persistentfalsefalsefalse52670442-71a5-8808-b070-ea54ea512803100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:03:06falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6200:50:56:ab:03:06true4000172.16.2.6224dhcppreferrednameassignDC2_C0_RP4_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b421a-e5ba-f311-da6e-7a52ee32a188summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM7/DC2_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.099453Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-397entervm-480availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM3/DC2_C1_RP5_VM3.vmdkdatastore-349persistentfalsefalsefalse52d51809-d43d-feec-93a9-7a289437f5c8100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:fc:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13400:50:56:ab:fc:79true4000172.16.2.13424dhcppreferrednameassignDC2_C1_RP5_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd878-93ed-d3e1-d8a7-e667a3af5c35summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM3/DC2_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.664015Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-480entervm-479availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM2/DC2_C1_RP5_VM2.vmdkdatastore-349persistentfalsefalsefalse5292053d-71e9-8682-bdfa-bed37946b77e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6b:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13300:50:56:ab:6b:44true4000172.16.2.13324dhcppreferrednameassignDC2_C1_RP5_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422beedb-0b3c-299f-2884-25ea4be4f8c2summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM2/DC2_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.65557Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-479entervm-395availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM5/DC2_C0_RP4_VM5.vmdkdatastore-349persistentfalsefalsefalse5275ea76-be67-4404-78d4-35db1b0fa040100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c7:a2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6000:50:56:ab:c7:a2true4000172.16.2.6024dhcppreferrednameassignDC2_C0_RP4_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9c89-9bff-3947-7bb4-2555f38d5f88summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM5/DC2_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.052855Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-395entervm-482availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM5/DC2_C1_RP5_VM5.vmdkdatastore-349persistentfalsefalsefalse52b287c7-8e3c-997e-8f41-68b159094a4c100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:fb:02falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13600:50:56:ab:fb:02true4000172.16.2.13624dhcppreferrednameassignDC2_C1_RP5_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bef20-8a20-2d1f-37e6-d3b3936d76d7summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM5/DC2_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.680952Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-482entervm-396availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP4_VM6/DC2_C0_RP4_VM6.vmdkdatastore-349persistentfalsefalsefalse527f5390-d524-a7ba-beef-9b6821250952100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:de:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.6100:50:56:ab:de:1atrue4000172.16.2.6124dhcppreferrednameassignDC2_C0_RP4_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-389snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb958-9b6b-caa3-c6d7-b5a7d8fc7ca9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP4_VM6/DC2_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:15.07494Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-396entervm-481availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM4/DC2_C1_RP5_VM4.vmdkdatastore-349persistentfalsefalsefalse52a4fc09-2411-e5a1-3988-b452f24bab9b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a4:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13500:50:56:ab:a4:d9true4000172.16.2.13524dhcppreferrednameassignDC2_C1_RP5_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf75-a3e0-ab28-1d9e-6c5dbb15688csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM4/DC2_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.671953Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-481entervm-484availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM7/DC2_C1_RP5_VM7.vmdkdatastore-349persistentfalsefalsefalse521ecf01-6c03-2db2-de8f-b98ff2fb6c99100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:0e:16falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13800:50:56:ab:0e:16true4000172.16.2.13824dhcppreferrednameassignDC2_C1_RP5_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4915-d5f1-e70a-dab5-48583f596ee4summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM7/DC2_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.697652Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-484true http_version: - recorded_at: Thu, 03 May 2018 18:07:58 GMT + recorded_at: Mon, 07 May 2018 16:15:31 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -476,7 +476,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -490,7 +490,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:58 GMT + - Mon, 7 May 2018 16:15:32 GMT Cache-Control: - no-cache Connection: @@ -510,11 +510,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_5session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entervm-417availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM0/DC2_C0_RP7_VM0.vmdkdatastore-349persistentfalsefalsefalse52e015b1-d469-1c23-2c84-b9c80fec349b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:b6:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7900:50:56:ab:b6:45true4000172.16.2.7924dhcppreferrednameassignDC2_C0_RP7_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc1d5-c822-3b2c-0cab-1570c78d5bf3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM0/DC2_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.525765Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-417entervm-483availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM6/DC2_C1_RP5_VM6.vmdkdatastore-349persistentfalsefalsefalse52f91f4a-3178-6ad7-1d24-0a339668fc5d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a0:2cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13700:50:56:ab:a0:2ctrue4000172.16.2.13724dhcppreferrednameassignDC2_C1_RP5_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8407-a3af-4325-a017-915744393057summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM6/DC2_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.689241Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-483entervm-413availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM5/DC2_C0_RP6_VM5.vmdkdatastore-349persistentfalsefalsefalse52062a88-1ab5-31f2-af0e-088fe0d88ace100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c3:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7600:50:56:ab:c3:00true4000172.16.2.7624dhcppreferrednameassignDC2_C0_RP6_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfe5b-a7a2-f9b6-a22a-701dbb84716asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM5/DC2_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.244227Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-413entervm-475availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM7/DC2_C1_RP4_VM7.vmdkdatastore-349persistentfalsefalsefalse52c67bdf-3a6a-f9d4-19a3-b1637c7008d4100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5f:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13000:50:56:ab:5f:c6true4000172.16.2.13024dhcppreferrednameassignDC2_C1_RP4_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb0ea-e37c-659e-6dd3-eda4af56bd0esummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM7/DC2_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.724998Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-475entervm-412availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM4/DC2_C0_RP6_VM4.vmdkdatastore-349persistentfalsefalsefalse528f91be-07d8-8b00-e0f6-01f1d84737cd100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d1:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7500:50:56:ab:d1:5dtrue4000172.16.2.7524dhcppreferrednameassignDC2_C0_RP6_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b122b-20c0-b595-251c-00a0c4933080summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM4/DC2_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.204374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-412entervm-411availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM3/DC2_C0_RP6_VM3.vmdkdatastore-349persistentfalsefalsefalse521d52e2-8421-382d-8db2-8740289a1576100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:19:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7400:50:56:ab:19:d9true4000172.16.2.7424dhcppreferrednameassignDC2_C0_RP6_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b956f-0d66-c53a-e271-8771941261c3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM3/DC2_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.166891Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-411entervm-410availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM2/DC2_C0_RP6_VM2.vmdkdatastore-349persistentfalsefalsefalse52c69088-83ad-f7eb-3e66-1b6f4cb2baec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:05:48falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7300:50:56:ab:05:48true4000172.16.2.7324dhcppreferrednameassignDC2_C0_RP6_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4187-65c9-5c82-a913-539266547115summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM2/DC2_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.104664Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-410entervm-372availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM0/DC2_C0_RP2_VM0.vmdkdatastore-349persistentfalsefalsefalse52ed6a6e-32a5-4c9f-208f-bceeb3f8f323100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6d:bffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3900:50:56:ab:6d:bftrue4000172.16.2.3924dhcppreferrednameassignDC2_C0_RP2_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd746-e23a-1dc8-c273-4f605d6b4cc9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM0/DC2_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.844502Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-372entervm-373availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM1/DC2_C0_RP2_VM1.vmdkdatastore-349persistentfalsefalsefalse52981e09-7158-324a-c922-46da12bfeb5d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:a7:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4000:50:56:ab:a7:23true4000172.16.2.4024dhcppreferrednameassignDC2_C0_RP2_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b925f-b508-d946-399f-0473468d031fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM1/DC2_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.902076Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-373entervm-471availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM3/DC2_C1_RP4_VM3.vmdkdatastore-349persistentfalsefalsefalse52ce5ad9-e10b-1092-2ef3-a3bbbb50b5b9100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:94:60falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12600:50:56:ab:94:60true4000172.16.2.12624dhcppreferrednameassignDC2_C1_RP4_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c5e-df44-b665-89f4-bff901c2a47fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM3/DC2_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.587074Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-471entervm-374availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM2/DC2_C0_RP2_VM2.vmdkdatastore-349persistentfalsefalsefalse522c2334-bd74-9cd2-416a-66008362ce95100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:49falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4100:50:56:ab:59:49true4000172.16.2.4124dhcppreferrednameassignDC2_C0_RP2_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdd2f-f266-afc1-0854-d4554376aec1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM2/DC2_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.93268Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-374entervm-472availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM4/DC2_C1_RP4_VM4.vmdkdatastore-349persistentfalsefalsefalse52ce32ac-932f-97ed-37c1-7b00ee540ee2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:db:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12700:50:56:ab:db:c6true4000172.16.2.12724dhcppreferrednameassignDC2_C1_RP4_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9085-c860-40d7-1220-d6597001c70csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM4/DC2_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.629429Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-472entervm-415availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM7/DC2_C0_RP6_VM7.vmdkdatastore-349persistentfalsefalsefalse52444405-68ff-88a5-7d35-2ed555340893100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:15:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7800:50:56:ab:15:a8true4000172.16.2.7824dhcppreferrednameassignDC2_C0_RP6_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b97ec-9dd3-bc63-c4f7-8ca7cc6ff56asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM7/DC2_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.332903Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-415entervm-473availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM5/DC2_C1_RP4_VM5.vmdkdatastore-349persistentfalsefalsefalse522652c4-b398-d920-9231-05518dded7f8100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:70:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12800:50:56:ab:70:47true4000172.16.2.12824dhcppreferrednameassignDC2_C1_RP4_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde91-18cf-c86a-26c7-e2b872ea6b2csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM5/DC2_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.674583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-473entervm-414availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM6/DC2_C0_RP6_VM6.vmdkdatastore-349persistentfalsefalsefalse52e233af-67e8-de0a-909c-71365bdee409100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:2b:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7700:50:56:ab:2b:79true4000172.16.2.7724dhcppreferrednameassignDC2_C0_RP6_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bce13-1ed1-9076-5288-5bb4a48050f2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM6/DC2_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.291456Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-414entervm-474availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM6/DC2_C1_RP4_VM6.vmdkdatastore-349persistentfalsefalsefalse52e390bf-a35b-fe18-d536-f265201ad2a9100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:23:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12900:50:56:ab:23:8dtrue4000172.16.2.12924dhcppreferrednameassignDC2_C1_RP4_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b68c2-c11a-1dea-2f00-df3cd94c2578summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM6/DC2_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.70552Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-474entervm-468availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM0/DC2_C1_RP4_VM0.vmdkdatastore-349persistentfalsefalsefalse52162279-cedc-d89b-449c-14a43c0103a5100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c7:42falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12300:50:56:ab:c7:42true4000172.16.2.12324dhcppreferrednameassignDC2_C1_RP4_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be67d-7437-e8ee-7af7-c4b02bc699b9summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM0/DC2_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.51976Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-468entervm-469availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM1/DC2_C1_RP4_VM1.vmdkdatastore-349persistentfalsefalsefalse52c4a19b-0c6c-4285-d5a7-21d7a783380e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:32:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12400:50:56:ab:32:97true4000172.16.2.12424dhcppreferrednameassignDC2_C1_RP4_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd36e-7998-c6be-1cbd-20f79af82377summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM1/DC2_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.536504Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-430summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-469entervm-470availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM2/DC2_C1_RP4_VM2.vmdkdatastore-349persistentfalsefalsefalse525a817d-0143-9193-3dcd-9da2be20e130100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:e6:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12500:50:56:ab:e6:59true4000172.16.2.12524dhcppreferrednameassignDC2_C1_RP4_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5b9-e31f-ad5a-4df0-356fbfca49d0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM2/DC2_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.559755Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-470entervm-409availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM1/DC2_C0_RP6_VM1.vmdkdatastore-349persistentfalsefalsefalse522b9630-0e0d-6ce3-91f7-4e96238eff4a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:a3:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7200:50:56:ab:a3:91true4000172.16.2.7224dhcppreferrednameassignDC2_C0_RP6_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf5c2-a857-7004-ff09-f02d0bcb7b96summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM1/DC2_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.066882Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-409entervm-408availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM0/DC2_C0_RP6_VM0.vmdkdatastore-349persistentfalsefalsefalse5236e9a8-80ed-e21d-c70e-08d623838cb7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c5:34falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7100:50:56:ab:c5:34true4000172.16.2.7124dhcppreferrednameassignDC2_C0_RP6_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b031b-d382-a775-3410-19b356ee0e13summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM0/DC2_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.011921Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-408enterdvportgroup-343config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-343config.nameassignDC2_DVS-DVUplinks-342hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVS-DVUplinks-342parentassigngroup-n340summary.nameassignDC2_DVS-DVUplinks-342tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-345config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-345config.nameassignDC2_DVPG1hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVPG1parentassigngroup-n340summary.nameassignDC2_DVPG1tagassignenterdvportgroup-344config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-344config.nameassignDC2_DVPG0hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVPG0parentassigngroup-n340summary.nameassignDC2_DVPG0tagassignenterdvs-342config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-343nameassignDC2_DVSparentassigngroup-n340summary.hostassignsummary.hostMemberassignhost-348host-350host-351host-352host-427host-428host-429host-430summary.nameassignDC2_DVSsummary.uuidassign8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5enternetwork-341nameassignVM Networkparentassigngroup-n340enterdomain-c425configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-427host-428host-429host-430nameassignDC2_C1parentassigngroup-h338resourcePoolassignresgroup-426summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c346configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-348host-350host-351host-352nameassignDC2_C0parentassigngroup-h338resourcePoolassignresgroup-347summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-349capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-430/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-428/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-351/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-429/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-348/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-427/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-352/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-350/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s339summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-349summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-603availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM4/DC3_C1_RP0_VM4.vmdkdatastore-516persistentfalsefalsefalse52462dd2-8356-c7fa-9093-40598d198a1e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0f:cefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23100:50:56:ab:0f:cetrue4000172.16.2.23124dhcppreferrednameassignDC3_C1_RP0_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4fe3-97f2-19e3-e16e-3c4baa417cdfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM4/DC3_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.916894Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-603entervm-604availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM5/DC3_C1_RP0_VM5.vmdkdatastore-516persistentfalsefalsefalse522c1c3a-afdb-04eb-f979-741667d40c32100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ed:12falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23200:50:56:ab:ed:12true4000172.16.2.23224dhcppreferrednameassignDC3_C1_RP0_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9169-994e-15f8-35a9-4607415a6bf2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM5/DC3_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.941211Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-604entervm-601availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM2/DC3_C1_RP0_VM2.vmdkdatastore-516persistentfalsefalsefalse52023d34-f59b-5d79-21fb-5b2b0afbb5fa100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:20:63falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22900:50:56:ab:20:63true4000172.16.2.22924dhcppreferrednameassignDC3_C1_RP0_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4a94-fe32-5003-8837-3c31e6cdd304summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM2/DC3_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.872436Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-601entervm-602availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM3/DC3_C1_RP0_VM3.vmdkdatastore-516persistentfalsefalsefalse5296864d-2860-da51-2738-9c2bc9827c6b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:11:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23000:50:56:ab:11:c2true4000172.16.2.23024dhcppreferrednameassignDC3_C1_RP0_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb375-8ed1-02cd-8315-92dce737e577summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM3/DC3_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.894444Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-602entervm-591availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM7/DC3_C0_RP7_VM7.vmdkdatastore-516persistentfalsefalsefalse52ac878d-9788-7d8f-99c6-813386bdd4c8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:18:49falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22200:50:56:ab:18:49true4000172.16.2.22224dhcppreferrednameassignDC3_C0_RP7_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4fe7-de5d-9d8b-b65f-b0e6532c50fasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM7/DC3_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:16.028472Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-591entervm-605availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM6/DC3_C1_RP0_VM6.vmdkdatastore-516persistentfalsefalsefalse5207fb2c-910a-39a5-9616-47b5c0004d3f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:6b:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23300:50:56:ab:6b:22true4000172.16.2.23324dhcppreferrednameassignDC3_C1_RP0_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c20-628e-2ed5-b13d-eeb4e843d76dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM6/DC3_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.959114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-605entervm-606availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM7/DC3_C1_RP0_VM7.vmdkdatastore-516persistentfalsefalsefalse52814e48-e4e9-7d9f-99de-2b8df6d4cd34100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f3:50falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23400:50:56:ab:f3:50true4000172.16.2.23424dhcppreferrednameassignDC3_C1_RP0_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b597a-0109-fb86-8652-158b3ec357e4summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM7/DC3_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.977132Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-606entervm-620availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM3/DC3_C1_RP2_VM3.vmdkdatastore-516persistentfalsefalsefalse52700f4d-4c42-1fc0-093c-1ca0b703d673100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c5:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24600:50:56:ab:c5:2etrue4000172.16.2.24624dhcppreferrednameassignDC3_C1_RP2_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422becce-fe1d-4ef8-39aa-cfd74efcd102summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM3/DC3_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.007257Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-620entervm-588availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM4/DC3_C0_RP7_VM4.vmdkdatastore-516persistentfalsefalsefalse528c73f1-1d50-0cb2-351d-b9dddf0fc1cc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:b1:93falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21900:50:56:ab:b1:93true4000172.16.2.21924dhcppreferrednameassignDC3_C0_RP7_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b150c-9e11-d74f-4f5e-c5575bda0444summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM4/DC3_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.958541Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-588entervm-619availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM2/DC3_C1_RP2_VM2.vmdkdatastore-516persistentfalsefalsefalse526a6cf1-e040-a6ff-6862-575cffa8ca9d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:7d:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24500:50:56:ab:7d:71true4000172.16.2.24524dhcppreferrednameassignDC3_C1_RP2_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4e83-6b5b-ca4d-97fd-1d3e07c46156summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM2/DC3_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.966152Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-619entervm-587availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM3/DC3_C0_RP7_VM3.vmdkdatastore-516persistentfalsefalsefalse5294ec9c-f89c-b032-8a6e-95801f593e7f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d5:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21800:50:56:ab:d5:6ctrue4000172.16.2.21824dhcppreferrednameassignDC3_C0_RP7_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b869b-7f62-98dd-2763-beca77aad8eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM3/DC3_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.944082Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-587entervm-618availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM1/DC3_C1_RP2_VM1.vmdkdatastore-516persistentfalsefalsefalse52dec458-2e37-ab95-92a6-afeb34ae8862100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:cb:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24400:50:56:ab:cb:d3true4000172.16.2.24424dhcppreferrednameassignDC3_C1_RP2_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b79c9-0a04-9cf1-2ae5-50df8f4e833dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM1/DC3_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.914446Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-618entervm-590availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM6/DC3_C0_RP7_VM6.vmdkdatastore-516persistentfalsefalsefalse52e008a9-0305-7777-2d28-c7dc5bdb3e86100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:52:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22100:50:56:ab:52:97true4000172.16.2.22124dhcppreferrednameassignDC3_C0_RP7_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7518-d679-c948-6956-2e5fb8d791fbsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM6/DC3_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.998678Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-590entervm-617availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM0/DC3_C1_RP2_VM0.vmdkdatastore-516persistentfalsefalsefalse5201d942-29b7-2083-a048-652a4542d92a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:01:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24300:50:56:ab:01:78true4000172.16.2.24324dhcppreferrednameassignDC3_C1_RP2_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b727c-f3fc-5ed4-f54e-a35fb5a3dbf4summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM0/DC3_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.885426Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-617entervm-589availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM5/DC3_C0_RP7_VM5.vmdkdatastore-516persistentfalsefalsefalse52d7a47e-1336-de5b-2cf7-90c89a249400100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:6e:d6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22000:50:56:ab:6e:d6true4000172.16.2.22024dhcppreferrednameassignDC3_C0_RP7_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7518-e304-86c5-ca45-67513b0dacbcsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM5/DC3_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.973583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-589entervm-599availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM0/DC3_C1_RP0_VM0.vmdkdatastore-516persistentfalsefalsefalse52cf131c-03bd-93cf-4036-e0d099d85aa3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22700:50:56:ab:c5:a9true4000172.16.2.22724dhcppreferrednameassignDC3_C1_RP0_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd2f9-08fc-2a0a-85d0-b99c7b7ce7c8summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM0/DC3_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.82949Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-599entervm-584availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM0/DC3_C0_RP7_VM0.vmdkdatastore-516persistentfalsefalsefalse523338b0-6829-25bb-e244-1254e4c16d22100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:81:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21500:50:56:ab:81:5btrue4000172.16.2.21524dhcppreferrednameassignDC3_C0_RP7_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b636f-cfab-1133-6c41-695882f7da58summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM0/DC3_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.914068Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-584entervm-600availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM1/DC3_C1_RP0_VM1.vmdkdatastore-516persistentfalsefalsefalse529c2474-516e-98a8-7c5b-1492b5d79fcc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:31:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22800:50:56:ab:31:45true4000172.16.2.22824dhcppreferrednameassignDC3_C1_RP0_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba3e9-8234-6981-7697-3c2624c706eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM1/DC3_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.847254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-600entervm-586availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM2/DC3_C0_RP7_VM2.vmdkdatastore-516persistentfalsefalsefalse52f92f81-8e12-2b21-acb9-30debc6adbc6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:97:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21700:50:56:ab:97:fatrue4000172.16.2.21724dhcppreferrednameassignDC3_C0_RP7_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd58b-a649-cece-9234-cc476502140dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM2/DC3_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.935754Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-586entervm-585availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM1/DC3_C0_RP7_VM1.vmdkdatastore-516persistentfalsefalsefalse52a467b7-0ce9-7f2d-59ad-e1d990b61af4100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:6c:e3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21600:50:56:ab:6c:e3true4000172.16.2.21624dhcppreferrednameassignDC3_C0_RP7_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba412-4c85-b510-9b2e-b81306a31895summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM1/DC3_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.924797Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-585entervm-539availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM0/DC3_C0_RP2_VM0.vmdkdatastore-516persistentfalsefalsefalse52345507-2e3c-44cd-8bb0-7a6c89e92e1f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:df:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17500:50:56:ab:df:45true4000172.16.2.17524dhcppreferrednameassignDC3_C0_RP2_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b17be-9e67-8e2f-9e31-34eae047a641summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM0/DC3_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.118223Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-539entervm-564availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM7/DC3_C0_RP4_VM7.vmdkdatastore-516persistentfalsefalsefalse522b6be2-b746-46c5-e1d9-3d2855c61dd6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4f:43falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19800:50:56:ab:4f:43true4000172.16.2.19824dhcppreferrednameassignDC3_C0_RP4_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc87-830d-d7d0-2201-06d755fdd3f4summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM7/DC3_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.684355Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-564entervm-561availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM4/DC3_C0_RP4_VM4.vmdkdatastore-516persistentfalsefalsefalse52476cf9-c1a1-c38e-1c73-ecefb140a57b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:46:8bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19500:50:56:ab:46:8btrue4000172.16.2.19524dhcppreferrednameassignDC3_C0_RP4_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b74d2-a6f8-3595-2459-6856eecc53d1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM4/DC3_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.530696Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-561entervm-560availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM3/DC3_C0_RP4_VM3.vmdkdatastore-516persistentfalsefalsefalse529cdd14-38c3-8964-1243-e2554b880d81100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:30falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19400:50:56:ab:af:30true4000172.16.2.19424dhcppreferrednameassignDC3_C0_RP4_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2786-c32d-4b51-9fe5-25c8186ffbafsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM3/DC3_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.406722Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-560entervm-642availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM7/DC3_C1_RP4_VM7.vmdkdatastore-516persistentfalsefalsefalse5202a953-e82c-4623-65c7-47250e8c0c62100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:b9:f9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1200:50:56:ab:b9:f9true4000172.16.3.1224dhcppreferrednameassignDC3_C1_RP4_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baedc-31d7-d2e1-9fca-4b08aba4e6d3summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM7/DC3_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.523741Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-642entervm-563availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM6/DC3_C0_RP4_VM6.vmdkdatastore-516persistentfalsefalsefalse5235626c-8398-1ffb-b884-cd1cb8d0bf84100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:b9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19700:50:56:ab:21:b9true4000172.16.2.19724dhcppreferrednameassignDC3_C0_RP4_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2b0b-5d5a-5f4b-a542-e02f06bb0f8dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM6/DC3_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.650448Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-563entervm-641availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM6/DC3_C1_RP4_VM6.vmdkdatastore-516persistentfalsefalsefalse5283900f-9bd0-a362-d8cf-b709e1986ded100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:e7:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1100:50:56:ab:e7:1ctrue4000172.16.3.1124dhcppreferrednameassignDC3_C1_RP4_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ffb-b9d8-de2e-04ba-ab98d484faf8summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM6/DC3_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.515536Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-641entervm-562availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM5/DC3_C0_RP4_VM5.vmdkdatastore-516persistentfalsefalsefalse5242c875-e67c-f3a5-a17c-f30d132b50ee100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ac:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19600:50:56:ab:ac:84true4000172.16.2.19624dhcppreferrednameassignDC3_C0_RP4_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bec83-8924-cf18-b7d7-2f243ce28586summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM5/DC3_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.618071Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-562entervm-557availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM0/DC3_C0_RP4_VM0.vmdkdatastore-516persistentfalsefalsefalse5256fb60-b71b-d0bb-5ff1-7ef9d8763448100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:78:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19100:50:56:ab:78:b5true4000172.16.2.19124dhcppreferrednameassignDC3_C0_RP4_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3632-3ef8-b283-bec8-a9b1355118f9summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM0/DC3_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.199036Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-557entervm-559availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM2/DC3_C0_RP4_VM2.vmdkdatastore-516persistentfalsefalsefalse522a5594-0f8c-0afa-700b-3f443365d819100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:25:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19300:50:56:ab:25:ebtrue4000172.16.2.19324dhcppreferrednameassignDC3_C0_RP4_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7eeb-c7a0-0e4e-d12a-01bc22567ab0summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM2/DC3_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.310489Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-559entervm-558availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM1/DC3_C0_RP4_VM1.vmdkdatastore-516persistentfalsefalsefalse5294d856-16e0-3263-31cc-a1438ad11ad1100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:07:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19200:50:56:ab:07:cdtrue4000172.16.2.19224dhcppreferrednameassignDC3_C0_RP4_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52b5-4258-8812-68b1-90d695eace83summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM1/DC3_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.228773Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-558entervm-658availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM5/DC3_C1_RP6_VM5.vmdkdatastore-516persistentfalsefalsefalse528c70d7-75ac-7aec-3b72-666bfc30872b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d0:7efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2600:50:56:ab:d0:7etrue4000172.16.3.2624dhcppreferrednameassignDC3_C1_RP6_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b50fd-313b-ad23-7397-0a90edff3c4dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM5/DC3_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.46322Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-658entervm-657availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM4/DC3_C1_RP6_VM4.vmdkdatastore-516persistentfalsefalsefalse523b6767-6ed3-300f-6020-7fbbbfa18ccc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ce:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2500:50:56:ab:ce:c7true4000172.16.3.2524dhcppreferrednameassignDC3_C1_RP6_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b35cc-8159-2f66-713c-911875cf2462summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM4/DC3_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.424823Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-657entervm-636availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM1/DC3_C1_RP4_VM1.vmdkdatastore-516persistentfalsefalsefalse52005f30-4246-fd47-50d1-4340ef3d4410100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:9f:2dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.600:50:56:ab:9f:2dtrue4000172.16.3.624dhcppreferrednameassignDC3_C1_RP4_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4e22-d792-8d2e-9ad1-a3e6cf01e1ddsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM1/DC3_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.454297Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-636entervm-660availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM7/DC3_C1_RP6_VM7.vmdkdatastore-516persistentfalsefalsefalse52ccdd6e-d70d-e220-e37a-5fdb9c41728a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4a:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2800:50:56:ab:4a:5btrue4000172.16.3.2824dhcppreferrednameassignDC3_C1_RP6_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd7e8-6c55-183d-1f18-0ebb0c47eb24summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM7/DC3_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.529534Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-660entervm-554availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM6/DC3_C0_RP3_VM6.vmdkdatastore-516persistentfalsefalsefalse52f605fa-f316-440b-4a9b-333107474b0d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ed:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18900:50:56:ab:ed:0btrue4000172.16.2.18924dhcppreferrednameassignDC3_C0_RP3_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf1d3-4801-394c-c3ca-86ac3345d9c6summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM6/DC3_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.595824Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-554entervm-635availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM0/DC3_C1_RP4_VM0.vmdkdatastore-516persistentfalsefalsefalse520edd87-f7b4-56db-5356-e4034ab39662100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0b:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.500:50:56:ab:0b:08true4000172.16.3.524dhcppreferrednameassignDC3_C1_RP4_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7fdc-08a3-3576-175c-c672f992a674summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM0/DC3_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.440096Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-635entervm-659availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM6/DC3_C1_RP6_VM6.vmdkdatastore-516persistentfalsefalsefalse52e23569-ee00-1457-0fab-b9e274bcf741100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:41:e9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2700:50:56:ab:41:e9true4000172.16.3.2724dhcppreferrednameassignDC3_C1_RP6_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2345-0d03-18f4-291a-442c1eb88c4bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM6/DC3_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.491285Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-659entervm-555availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM7/DC3_C0_RP3_VM7.vmdkdatastore-516persistentfalsefalsefalse52c53921-0eb4-df5f-775f-67a9746ce1b3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:0f:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19000:50:56:ab:0f:6ftrue4000172.16.2.19024dhcppreferrednameassignDC3_C0_RP3_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b16df-506c-4333-583a-13c0d4a5edd4summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM7/DC3_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.604235Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-555entervm-566availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM0/DC3_C0_RP5_VM0.vmdkdatastore-516persistentfalsefalsefalse52ac65ef-7ee9-bbe1-f0e9-8e4baa856c30100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:10falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19900:50:56:ab:21:10true4000172.16.2.19924dhcppreferrednameassignDC3_C0_RP5_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b96c6-dc38-0873-e68a-9152fbf2a644summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM0/DC3_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.429485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-566entervm-631availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM5/DC3_C1_RP3_VM5.vmdkdatastore-516persistentfalsefalsefalse52bf455c-2786-29cb-e50e-9325f5aeac06100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c6:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.200:50:56:ab:c6:a1true4000172.16.3.224dhcppreferrednameassignDC3_C1_RP3_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcd0c-c593-efb3-2484-e64152a1ccd2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM5/DC3_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.379647Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-631entervm-638availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM3/DC3_C1_RP4_VM3.vmdkdatastore-516persistentfalsefalsefalse52277e0d-0728-cbf4-5ffa-08df4fcce300100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:10:35falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.800:50:56:ab:10:35true4000172.16.3.824dhcppreferrednameassignDC3_C1_RP4_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4464-0d68-5aa3-5880-ee55d1837bcasummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM3/DC3_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.478774Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-638entervm-567availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM1/DC3_C0_RP5_VM1.vmdkdatastore-516persistentfalsefalsefalse52a503e0-1449-02f9-9480-384b4bd8560d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:dc:dafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20000:50:56:ab:dc:datrue4000172.16.2.20024dhcppreferrednameassignDC3_C0_RP5_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbb58-9665-8b89-080c-267b2ed43c95summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM1/DC3_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.450075Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-567entervm-632availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM6/DC3_C1_RP3_VM6.vmdkdatastore-516persistentfalsefalsefalse52ce4ad8-b892-88e3-3a42-958c3f92a5d6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0c:39falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.300:50:56:ab:0c:39true4000172.16.3.324dhcppreferrednameassignDC3_C1_RP3_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc172-9c79-6e9c-244e-4541395ea026summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM6/DC3_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.389795Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-632entervm-637availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM2/DC3_C1_RP4_VM2.vmdkdatastore-516persistentfalsefalsefalse520a69b3-db8b-3941-2007-7541802431fb100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.700:50:56:ab:21:5ctrue4000172.16.3.724dhcppreferrednameassignDC3_C1_RP4_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd31-3396-92dc-b4f4-5b2df3db069fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM2/DC3_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.466806Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-637entervm-568availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM2/DC3_C0_RP5_VM2.vmdkdatastore-516persistentfalsefalsefalse5281105e-4f01-063d-3444-7d468223bbfd100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:45:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20100:50:56:ab:45:e5true4000172.16.2.20124dhcppreferrednameassignDC3_C0_RP5_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3619-19ef-4e63-89f6-f9db3c982e6dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM2/DC3_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.477672Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-568entervm-633availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM7/DC3_C1_RP3_VM7.vmdkdatastore-516persistentfalsefalsefalse5233809d-4033-a573-1fd5-60bc14f6c0df100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:27:b8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.400:50:56:ab:27:b8true4000172.16.3.424dhcppreferrednameassignDC3_C1_RP3_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc65f-1f03-77e1-70f5-38748e4d1f95summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM7/DC3_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.406368Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-633entervm-640availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM5/DC3_C1_RP4_VM5.vmdkdatastore-516persistentfalsefalsefalse5290f066-6719-51a3-7375-c5360812a0f5100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2b:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1000:50:56:ab:2b:fdtrue4000172.16.3.1024dhcppreferrednameassignDC3_C1_RP4_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9311-bc2e-6b96-0380-b81272dd0bd6summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM5/DC3_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.506739Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-640entervm-569availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM3/DC3_C0_RP5_VM3.vmdkdatastore-516persistentfalsefalsefalse5236f9d0-533b-4575-ed13-e5ad4ed92260100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:14:19falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20200:50:56:ab:14:19true4000172.16.2.20224dhcppreferrednameassignDC3_C0_RP5_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba065-374d-b2a0-cfcd-34d8f7a04fffsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM3/DC3_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.495932Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-569entervm-639availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM4/DC3_C1_RP4_VM4.vmdkdatastore-516persistentfalsefalsefalse523e9c76-bc6e-3e14-57b6-ef393bd2e6a0100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:90:dcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.900:50:56:ab:90:dctrue4000172.16.3.924dhcppreferrednameassignDC3_C1_RP4_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8a00-a624-66fb-9796-9c1ed08bf9cfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM4/DC3_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.491598Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-639entervm-570availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM4/DC3_C0_RP5_VM4.vmdkdatastore-516persistentfalsefalsefalse5232bfb3-8bbf-a3d4-05e4-36f4b6b02f9b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:aa:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20300:50:56:ab:aa:67true4000172.16.2.20324dhcppreferrednameassignDC3_C0_RP5_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd186-8e62-8cc0-f0ef-0a68a3e908c7summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM4/DC3_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.521967Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-570entervm-548availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM0/DC3_C0_RP3_VM0.vmdkdatastore-516persistentfalsefalsefalse52b34d2c-28cd-7868-8716-4e6559694110100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c0:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18300:50:56:ab:c0:b7true4000172.16.2.18324dhcppreferrednameassignDC3_C0_RP3_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6d90-f9b6-5439-abe8-d9ae30b62de7summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM0/DC3_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.513289Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-548entervm-571availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM5/DC3_C0_RP5_VM5.vmdkdatastore-516persistentfalsefalsefalse52667eb6-c864-6940-725f-fc40e7464e8d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:41:d4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20400:50:56:ab:41:d4true4000172.16.2.20424dhcppreferrednameassignDC3_C0_RP5_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd2f-426a-c9e9-e48f-8ac9e344a971summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM5/DC3_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.542167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-571entervm-549availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM1/DC3_C0_RP3_VM1.vmdkdatastore-516persistentfalsefalsefalse522510bc-2247-aba7-ad02-c5f847a57d3e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:47:a4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18400:50:56:ab:47:a4true4000172.16.2.18424dhcppreferrednameassignDC3_C0_RP3_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bda47-2271-545c-a6d4-6e2a06c6ec2bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM1/DC3_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.531529Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-549entervm-572availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM6/DC3_C0_RP5_VM6.vmdkdatastore-516persistentfalsefalsefalse52f0e809-ffbe-b42e-180f-bb65269e2633100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:3f:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20500:50:56:ab:3f:e2true4000172.16.2.20524dhcppreferrednameassignDC3_C0_RP5_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fb3-9115-e1ee-99c0-acbe62c45cfesummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM6/DC3_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.561145Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-572entervm-573availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM7/DC3_C0_RP5_VM7.vmdkdatastore-516persistentfalsefalsefalse522099da-38bf-1ee4-7197-35b05fa55bf3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2e:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20600:50:56:ab:2e:22true4000172.16.2.20624dhcppreferrednameassignDC3_C0_RP5_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5fac-1565-56d5-a700-14dcc5b46c44summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM7/DC3_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.573108Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-573entervm-552availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM4/DC3_C0_RP3_VM4.vmdkdatastore-516persistentfalsefalsefalse52637bf3-c3b6-23fe-5b1a-add5dcc0191a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:f0:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18700:50:56:ab:f0:f6true4000172.16.2.18724dhcppreferrednameassignDC3_C0_RP3_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc96a-1689-2fd5-bb85-bd6d0b786289summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM4/DC3_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.571463Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-552entervm-553availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM5/DC3_C0_RP3_VM5.vmdkdatastore-516persistentfalsefalsefalse5233c6d7-a576-abeb-034f-50380c494858100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d5:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18800:50:56:ab:d5:32true4000172.16.2.18824dhcppreferrednameassignDC3_C0_RP3_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34f0-c279-4295-c1c3-fe5252162436summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM5/DC3_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.587184Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-553entervm-550availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM2/DC3_C0_RP3_VM2.vmdkdatastore-516persistentfalsefalsefalse5220e483-d75c-ded2-3c93-1395712fd9ad100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:54:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18500:50:56:ab:54:8atrue4000172.16.2.18524dhcppreferrednameassignDC3_C0_RP3_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b71a4-f802-9b05-7ee6-5d9cefbc1b4asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM2/DC3_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.54624Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-550entervm-551availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM3/DC3_C0_RP3_VM3.vmdkdatastore-516persistentfalsefalsefalse52ad1c71-9b96-8010-380f-5dda14843fca100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8f:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18600:50:56:ab:8f:7atrue4000172.16.2.18624dhcppreferrednameassignDC3_C0_RP3_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b517a-6ca8-e18b-072f-8365cb6f3d55summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM3/DC3_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.558609Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-551entervm-615availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM7/DC3_C1_RP1_VM7.vmdkdatastore-516persistentfalsefalsefalse52c09d4f-1887-a0ca-a735-3bbce0ee471e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c7:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24200:50:56:ab:c7:0btrue4000172.16.2.24224dhcppreferrednameassignDC3_C1_RP1_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc2f-10ca-bb4e-6c50-bd407c5a1c10summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM7/DC3_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.204928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-615entervm-627availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM1/DC3_C1_RP3_VM1.vmdkdatastore-516persistentfalsefalsefalse52553aed-d163-d761-a1f8-2ef002d3d159100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:94:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25200:50:56:ab:94:5ctrue4000172.16.2.25224dhcppreferrednameassignDC3_C1_RP3_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc1d8-79a3-db33-9d21-acb49c969933summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM1/DC3_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.312155Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-627entervm-613availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM5/DC3_C1_RP1_VM5.vmdkdatastore-516persistentfalsefalsefalse529a1296-215c-cf8e-c5d5-4c01dbf0cd9c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:3a:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24000:50:56:ab:3a:91true4000172.16.2.24024dhcppreferrednameassignDC3_C1_RP1_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9a6f-4517-eebc-c63f-0dd7ca238eccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM5/DC3_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.177638Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-613entervm-628availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM2/DC3_C1_RP3_VM2.vmdkdatastore-516persistentfalsefalsefalse52e80bcd-c71e-4e8f-aae7-7f5834411024100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:e6:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25300:50:56:ab:e6:3ctrue4000172.16.2.25324dhcppreferrednameassignDC3_C1_RP3_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baa26-c908-6138-b3eb-1a564fa0be9asummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM2/DC3_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.331563Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-628entervm-654availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM1/DC3_C1_RP6_VM1.vmdkdatastore-516persistentfalsefalsefalse528edb7b-8c20-9f85-f881-3983398a1c7b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2a:81falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2200:50:56:ab:2a:81true4000172.16.3.2224dhcppreferrednameassignDC3_C1_RP6_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4da4-a1c6-a9fe-09ad-708c825a473fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM1/DC3_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.286584Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-654entervm-537availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM7/DC3_C0_RP1_VM7.vmdkdatastore-516persistentfalsefalsefalse523f7422-58ed-9678-7b4a-a9d754990ce8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:83:42falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17400:50:56:ab:83:42true4000172.16.2.17424dhcppreferrednameassignDC3_C0_RP1_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5b3-881a-0f78-e831-3586b08ecb75summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM7/DC3_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.76517Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-537entervm-614availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM6/DC3_C1_RP1_VM6.vmdkdatastore-516persistentfalsefalsefalse52cc07f9-db0e-aa70-52e4-6ac92a08ff43100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:50:05falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24100:50:56:ab:50:05true4000172.16.2.24124dhcppreferrednameassignDC3_C1_RP1_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd0f-0efe-1c63-0c18-bbbb9b9c0742summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM6/DC3_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.189934Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-614entervm-629availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM3/DC3_C1_RP3_VM3.vmdkdatastore-516persistentfalsefalsefalse526953ff-3d5e-5117-22b8-39e26f23375c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:68:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25400:50:56:ab:68:22true4000172.16.2.25424dhcppreferrednameassignDC3_C1_RP3_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9024-6ee9-0b19-0016-fa2882b7a061summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM3/DC3_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.351041Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-629entervm-653availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM0/DC3_C1_RP6_VM0.vmdkdatastore-516persistentfalsefalsefalse5283cabd-b62b-4164-7c04-27ae82348d0e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:fe:befalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2100:50:56:ab:fe:betrue4000172.16.3.2124dhcppreferrednameassignDC3_C1_RP6_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2125-ed03-749b-9a2e-563a36d968fesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM0/DC3_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.24578Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-653entervm-611availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM3/DC3_C1_RP1_VM3.vmdkdatastore-516persistentfalsefalsefalse52e00875-70d3-406d-abf9-13daf5b1e792100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:5a:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23800:50:56:ab:5a:25true4000172.16.2.23824dhcppreferrednameassignDC3_C1_RP1_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b050c-81f7-1222-5d87-afe9ff4ebf32summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM3/DC3_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.121293Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-611entervm-630availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM4/DC3_C1_RP3_VM4.vmdkdatastore-516persistentfalsefalsefalse528a9187-2e98-6d5c-b1f2-8b84ffd208e8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:07falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.100:50:56:ab:c5:07true4000172.16.3.124dhcppreferrednameassignDC3_C1_RP3_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8465-b5ce-3925-8d88-691b9633815bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM4/DC3_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.367316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-630true + 0_5session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentervm-417availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP7_VM0/DC2_C0_RP7_VM0.vmdkdatastore-349persistentfalsefalsefalse52e015b1-d469-1c23-2c84-b9c80fec349b100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:b6:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7900:50:56:ab:b6:45true4000172.16.2.7924dhcppreferrednameassignDC2_C0_RP7_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-416snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc1d5-c822-3b2c-0cab-1570c78d5bf3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP7_VM0/DC2_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:26.525765Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-417entervm-483availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP5_VM6/DC2_C1_RP5_VM6.vmdkdatastore-349persistentfalsefalsefalse52f91f4a-3178-6ad7-1d24-0a339668fc5d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:a0:2cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13700:50:56:ab:a0:2ctrue4000172.16.2.13724dhcppreferrednameassignDC2_C1_RP5_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-476snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8407-a3af-4325-a017-915744393057summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP5_VM6/DC2_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:41.689241Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-483entervm-413availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM5/DC2_C0_RP6_VM5.vmdkdatastore-349persistentfalsefalsefalse52062a88-1ab5-31f2-af0e-088fe0d88ace100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:c3:00falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7600:50:56:ab:c3:00true4000172.16.2.7624dhcppreferrednameassignDC2_C0_RP6_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfe5b-a7a2-f9b6-a22a-701dbb84716asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM5/DC2_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.244227Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-413entervm-475availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM7/DC2_C1_RP4_VM7.vmdkdatastore-349persistentfalsefalsefalse52c67bdf-3a6a-f9d4-19a3-b1637c7008d4100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:5f:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.13000:50:56:ab:5f:c6true4000172.16.2.13024dhcppreferrednameassignDC2_C1_RP4_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb0ea-e37c-659e-6dd3-eda4af56bd0esummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM7/DC2_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.724998Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-475entervm-412availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM4/DC2_C0_RP6_VM4.vmdkdatastore-349persistentfalsefalsefalse528f91be-07d8-8b00-e0f6-01f1d84737cd100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:d1:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7500:50:56:ab:d1:5dtrue4000172.16.2.7524dhcppreferrednameassignDC2_C0_RP6_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b122b-20c0-b595-251c-00a0c4933080summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM4/DC2_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.204374Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-412entervm-411availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM3/DC2_C0_RP6_VM3.vmdkdatastore-349persistentfalsefalsefalse521d52e2-8421-382d-8db2-8740289a1576100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:19:d9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7400:50:56:ab:19:d9true4000172.16.2.7424dhcppreferrednameassignDC2_C0_RP6_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b956f-0d66-c53a-e271-8771941261c3summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM3/DC2_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.166891Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-411entervm-410availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM2/DC2_C0_RP6_VM2.vmdkdatastore-349persistentfalsefalsefalse52c69088-83ad-f7eb-3e66-1b6f4cb2baec100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:05:48falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7300:50:56:ab:05:48true4000172.16.2.7324dhcppreferrednameassignDC2_C0_RP6_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4187-65c9-5c82-a913-539266547115summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM2/DC2_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.104664Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-410entervm-372availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM0/DC2_C0_RP2_VM0.vmdkdatastore-349persistentfalsefalsefalse52ed6a6e-32a5-4c9f-208f-bceeb3f8f323100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:6d:bffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.3900:50:56:ab:6d:bftrue4000172.16.2.3924dhcppreferrednameassignDC2_C0_RP2_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd746-e23a-1dc8-c273-4f605d6b4cc9summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM0/DC2_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.844502Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-352summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-372entervm-373availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM1/DC2_C0_RP2_VM1.vmdkdatastore-349persistentfalsefalsefalse52981e09-7158-324a-c922-46da12bfeb5d100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:a7:23falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4000:50:56:ab:a7:23true4000172.16.2.4024dhcppreferrednameassignDC2_C0_RP2_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b925f-b508-d946-399f-0473468d031fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM1/DC2_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.902076Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-373entervm-471availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM3/DC2_C1_RP4_VM3.vmdkdatastore-349persistentfalsefalsefalse52ce5ad9-e10b-1092-2ef3-a3bbbb50b5b9100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:94:60falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12600:50:56:ab:94:60true4000172.16.2.12624dhcppreferrednameassignDC2_C1_RP4_VM3parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8c5e-df44-b665-89f4-bff901c2a47fsummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM3/DC2_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.587074Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-471entervm-374availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP2_VM2/DC2_C0_RP2_VM2.vmdkdatastore-349persistentfalsefalsefalse522c2334-bd74-9cd2-416a-66008362ce95100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:59:49falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.4100:50:56:ab:59:49true4000172.16.2.4124dhcppreferrednameassignDC2_C0_RP2_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-371snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bdd2f-f266-afc1-0854-d4554376aec1summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP2_VM2/DC2_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:11.93268Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-374entervm-472availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM4/DC2_C1_RP4_VM4.vmdkdatastore-349persistentfalsefalsefalse52ce32ac-932f-97ed-37c1-7b00ee540ee2100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:db:c6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12700:50:56:ab:db:c6true4000172.16.2.12724dhcppreferrednameassignDC2_C1_RP4_VM4parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9085-c860-40d7-1220-d6597001c70csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM4/DC2_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.629429Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-472entervm-415availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM7/DC2_C0_RP6_VM7.vmdkdatastore-349persistentfalsefalsefalse52444405-68ff-88a5-7d35-2ed555340893100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:15:a8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7800:50:56:ab:15:a8true4000172.16.2.7824dhcppreferrednameassignDC2_C0_RP6_VM7parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b97ec-9dd3-bc63-c4f7-8ca7cc6ff56asummary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM7/DC2_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.332903Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-415entervm-473availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM5/DC2_C1_RP4_VM5.vmdkdatastore-349persistentfalsefalsefalse522652c4-b398-d920-9231-05518dded7f8100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:70:47falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12800:50:56:ab:70:47true4000172.16.2.12824dhcppreferrednameassignDC2_C1_RP4_VM5parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bde91-18cf-c86a-26c7-e2b872ea6b2csummary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM5/DC2_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.674583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-473entervm-414availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM6/DC2_C0_RP6_VM6.vmdkdatastore-349persistentfalsefalsefalse52e233af-67e8-de0a-909c-71365bdee409100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:2b:79falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7700:50:56:ab:2b:79true4000172.16.2.7724dhcppreferrednameassignDC2_C0_RP6_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bce13-1ed1-9076-5288-5bb4a48050f2summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM6/DC2_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.291456Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-350summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-414entervm-474availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM6/DC2_C1_RP4_VM6.vmdkdatastore-349persistentfalsefalsefalse52e390bf-a35b-fe18-d536-f265201ad2a9100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:23:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12900:50:56:ab:23:8dtrue4000172.16.2.12924dhcppreferrednameassignDC2_C1_RP4_VM6parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b68c2-c11a-1dea-2f00-df3cd94c2578summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM6/DC2_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.70552Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-428summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-474entervm-468availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM0/DC2_C1_RP4_VM0.vmdkdatastore-349persistentfalsefalsefalse52162279-cedc-d89b-449c-14a43c0103a5100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c7:42falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12300:50:56:ab:c7:42true4000172.16.2.12324dhcppreferrednameassignDC2_C1_RP4_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be67d-7437-e8ee-7af7-c4b02bc699b9summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM0/DC2_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.51976Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-468entervm-469availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM1/DC2_C1_RP4_VM1.vmdkdatastore-349persistentfalsefalsefalse52c4a19b-0c6c-4285-d5a7-21d7a783380e100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:32:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12400:50:56:ab:32:97true4000172.16.2.12424dhcppreferrednameassignDC2_C1_RP4_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd36e-7998-c6be-1cbd-20f79af82377summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM1/DC2_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.536504Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-429summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-469entervm-470availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C1_RP4_VM2/DC2_C1_RP4_VM2.vmdkdatastore-349persistentfalsefalsefalse525a817d-0143-9193-3dcd-9da2be20e130100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:e6:59falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.12500:50:56:ab:e6:59true4000172.16.2.12524dhcppreferrednameassignDC2_C1_RP4_VM2parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-467snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5b9-e31f-ad5a-4df0-356fbfca49d0summary.config.vmPathNameassign[GlobalDS_0] DC2_C1_RP4_VM2/DC2_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:40.559755Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-427summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-470entervm-409availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM1/DC2_C0_RP6_VM1.vmdkdatastore-349persistentfalsefalsefalse522b9630-0e0d-6ce3-91f7-4e96238eff4a100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-345truetruetrue1003Assigned00:50:56:ab:a3:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7200:50:56:ab:a3:91true4000172.16.2.7224dhcppreferrednameassignDC2_C0_RP6_VM1parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf5c2-a857-7004-ff09-f02d0bcb7b96summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM1/DC2_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.066882Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-348summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-409entervm-408availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC2_C0_RP6_VM0/DC2_C0_RP6_VM0.vmdkdatastore-349persistentfalsefalsefalse5236e9a8-80ed-e21d-c70e-08d623838cb7100005242884000DVSwitch: 8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c58b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5dvportgroup-344truetruetrue1003Assigned00:50:56:ab:c5:34falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-349guest.netassign172.16.2.7100:50:56:ab:c5:34true4000172.16.2.7124dhcppreferrednameassignDC2_C0_RP6_VM0parentassigngroup-v337resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-407snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC2_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b031b-d382-a775-3410-19b356ee0e13summary.config.vmPathNameassign[GlobalDS_0] DC2_C0_RP6_VM0/DC2_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC2_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:24.011921Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-351summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-408enterdvportgroup-343config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-343config.nameassignDC2_DVS-DVUplinks-342hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVS-DVUplinks-342parentassigngroup-n340summary.nameassignDC2_DVS-DVUplinks-342tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-345config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-345config.nameassignDC2_DVPG1hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVPG1parentassigngroup-n340summary.nameassignDC2_DVPG1tagassignenterdvportgroup-344config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-342config.keyassigndvportgroup-344config.nameassignDC2_DVPG0hostassignhost-430host-428host-351host-429host-348host-427host-352host-350nameassignDC2_DVPG0parentassigngroup-n340summary.nameassignDC2_DVPG0tagassignenterdvs-342config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-343nameassignDC2_DVSparentassigngroup-n340summary.hostassignsummary.hostMemberassignhost-348host-350host-351host-352host-427host-428host-429host-430summary.nameassignDC2_DVSsummary.uuidassign8b 8c 2b 50 24 d6 19 ce-5b b3 18 cb 0f 6e 8a c5enternetwork-341nameassignVM Networkparentassigngroup-n340enterdomain-c425configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-427host-428host-429host-430nameassignDC2_C1parentassigngroup-h338resourcePoolassignresgroup-426summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c346configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-348host-350host-351host-352nameassignDC2_C0parentassigngroup-h338resourcePoolassignresgroup-347summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-349capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-430/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-428/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-351/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-429/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-348/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-427/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-352/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-350/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s339summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-349summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/entervm-603availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM4/DC3_C1_RP0_VM4.vmdkdatastore-516persistentfalsefalsefalse52462dd2-8356-c7fa-9093-40598d198a1e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0f:cefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23100:50:56:ab:0f:cetrue4000172.16.2.23124dhcppreferrednameassignDC3_C1_RP0_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4fe3-97f2-19e3-e16e-3c4baa417cdfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM4/DC3_C1_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.916894Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-603entervm-604availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM5/DC3_C1_RP0_VM5.vmdkdatastore-516persistentfalsefalsefalse522c1c3a-afdb-04eb-f979-741667d40c32100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ed:12falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23200:50:56:ab:ed:12true4000172.16.2.23224dhcppreferrednameassignDC3_C1_RP0_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9169-994e-15f8-35a9-4607415a6bf2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM5/DC3_C1_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.941211Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-604entervm-601availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM2/DC3_C1_RP0_VM2.vmdkdatastore-516persistentfalsefalsefalse52023d34-f59b-5d79-21fb-5b2b0afbb5fa100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:20:63falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22900:50:56:ab:20:63true4000172.16.2.22924dhcppreferrednameassignDC3_C1_RP0_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4a94-fe32-5003-8837-3c31e6cdd304summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM2/DC3_C1_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.872436Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-601entervm-602availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM3/DC3_C1_RP0_VM3.vmdkdatastore-516persistentfalsefalsefalse5296864d-2860-da51-2738-9c2bc9827c6b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:11:c2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23000:50:56:ab:11:c2true4000172.16.2.23024dhcppreferrednameassignDC3_C1_RP0_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bb375-8ed1-02cd-8315-92dce737e577summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM3/DC3_C1_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.894444Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-602entervm-591availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM7/DC3_C0_RP7_VM7.vmdkdatastore-516persistentfalsefalsefalse52ac878d-9788-7d8f-99c6-813386bdd4c8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:18:49falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22200:50:56:ab:18:49true4000172.16.2.22224dhcppreferrednameassignDC3_C0_RP7_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4fe7-de5d-9d8b-b65f-b0e6532c50fasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM7/DC3_C0_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:16.028472Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-591entervm-605availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM6/DC3_C1_RP0_VM6.vmdkdatastore-516persistentfalsefalsefalse5207fb2c-910a-39a5-9616-47b5c0004d3f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:6b:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23300:50:56:ab:6b:22true4000172.16.2.23324dhcppreferrednameassignDC3_C1_RP0_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c20-628e-2ed5-b13d-eeb4e843d76dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM6/DC3_C1_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.959114Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-605entervm-606availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM7/DC3_C1_RP0_VM7.vmdkdatastore-516persistentfalsefalsefalse52814e48-e4e9-7d9f-99de-2b8df6d4cd34100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f3:50falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23400:50:56:ab:f3:50true4000172.16.2.23424dhcppreferrednameassignDC3_C1_RP0_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b597a-0109-fb86-8652-158b3ec357e4summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM7/DC3_C1_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.977132Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-606entervm-620availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM3/DC3_C1_RP2_VM3.vmdkdatastore-516persistentfalsefalsefalse52700f4d-4c42-1fc0-093c-1ca0b703d673100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c5:2efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24600:50:56:ab:c5:2etrue4000172.16.2.24624dhcppreferrednameassignDC3_C1_RP2_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422becce-fe1d-4ef8-39aa-cfd74efcd102summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM3/DC3_C1_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.007257Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-620entervm-588availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM4/DC3_C0_RP7_VM4.vmdkdatastore-516persistentfalsefalsefalse528c73f1-1d50-0cb2-351d-b9dddf0fc1cc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:b1:93falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21900:50:56:ab:b1:93true4000172.16.2.21924dhcppreferrednameassignDC3_C0_RP7_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b150c-9e11-d74f-4f5e-c5575bda0444summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM4/DC3_C0_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.958541Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-588entervm-619availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM2/DC3_C1_RP2_VM2.vmdkdatastore-516persistentfalsefalsefalse526a6cf1-e040-a6ff-6862-575cffa8ca9d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:7d:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24500:50:56:ab:7d:71true4000172.16.2.24524dhcppreferrednameassignDC3_C1_RP2_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4e83-6b5b-ca4d-97fd-1d3e07c46156summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM2/DC3_C1_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.966152Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-619entervm-587availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM3/DC3_C0_RP7_VM3.vmdkdatastore-516persistentfalsefalsefalse5294ec9c-f89c-b032-8a6e-95801f593e7f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d5:6cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21800:50:56:ab:d5:6ctrue4000172.16.2.21824dhcppreferrednameassignDC3_C0_RP7_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b869b-7f62-98dd-2763-beca77aad8eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM3/DC3_C0_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.944082Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-587entervm-618availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM1/DC3_C1_RP2_VM1.vmdkdatastore-516persistentfalsefalsefalse52dec458-2e37-ab95-92a6-afeb34ae8862100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:cb:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24400:50:56:ab:cb:d3true4000172.16.2.24424dhcppreferrednameassignDC3_C1_RP2_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b79c9-0a04-9cf1-2ae5-50df8f4e833dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM1/DC3_C1_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.914446Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-618entervm-590availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM6/DC3_C0_RP7_VM6.vmdkdatastore-516persistentfalsefalsefalse52e008a9-0305-7777-2d28-c7dc5bdb3e86100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:52:97falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22100:50:56:ab:52:97true4000172.16.2.22124dhcppreferrednameassignDC3_C0_RP7_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7518-d679-c948-6956-2e5fb8d791fbsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM6/DC3_C0_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.998678Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-590entervm-617availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM0/DC3_C1_RP2_VM0.vmdkdatastore-516persistentfalsefalsefalse5201d942-29b7-2083-a048-652a4542d92a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:01:78falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24300:50:56:ab:01:78true4000172.16.2.24324dhcppreferrednameassignDC3_C1_RP2_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b727c-f3fc-5ed4-f54e-a35fb5a3dbf4summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM0/DC3_C1_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:43.885426Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-617entervm-589availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM5/DC3_C0_RP7_VM5.vmdkdatastore-516persistentfalsefalsefalse52d7a47e-1336-de5b-2cf7-90c89a249400100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:6e:d6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22000:50:56:ab:6e:d6true4000172.16.2.22024dhcppreferrednameassignDC3_C0_RP7_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7518-e304-86c5-ca45-67513b0dacbcsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM5/DC3_C0_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.973583Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-589entervm-599availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM0/DC3_C1_RP0_VM0.vmdkdatastore-516persistentfalsefalsefalse52cf131c-03bd-93cf-4036-e0d099d85aa3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:a9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22700:50:56:ab:c5:a9true4000172.16.2.22724dhcppreferrednameassignDC3_C1_RP0_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd2f9-08fc-2a0a-85d0-b99c7b7ce7c8summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM0/DC3_C1_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.82949Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-599entervm-584availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM0/DC3_C0_RP7_VM0.vmdkdatastore-516persistentfalsefalsefalse523338b0-6829-25bb-e244-1254e4c16d22100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:81:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21500:50:56:ab:81:5btrue4000172.16.2.21524dhcppreferrednameassignDC3_C0_RP7_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b636f-cfab-1133-6c41-695882f7da58summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM0/DC3_C0_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.914068Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-584entervm-600availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP0_VM1/DC3_C1_RP0_VM1.vmdkdatastore-516persistentfalsefalsefalse529c2474-516e-98a8-7c5b-1492b5d79fcc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:31:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.22800:50:56:ab:31:45true4000172.16.2.22824dhcppreferrednameassignDC3_C1_RP0_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-598snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba3e9-8234-6981-7697-3c2624c706eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP0_VM1/DC3_C1_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:28.847254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-600entervm-586availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM2/DC3_C0_RP7_VM2.vmdkdatastore-516persistentfalsefalsefalse52f92f81-8e12-2b21-acb9-30debc6adbc6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:97:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21700:50:56:ab:97:fatrue4000172.16.2.21724dhcppreferrednameassignDC3_C0_RP7_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd58b-a649-cece-9234-cc476502140dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM2/DC3_C0_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.935754Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-586entervm-585availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP7_VM1/DC3_C0_RP7_VM1.vmdkdatastore-516persistentfalsefalsefalse52a467b7-0ce9-7f2d-59ad-e1d990b61af4100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:6c:e3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21600:50:56:ab:6c:e3true4000172.16.2.21624dhcppreferrednameassignDC3_C0_RP7_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-583snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba412-4c85-b510-9b2e-b81306a31895summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP7_VM1/DC3_C0_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:15.924797Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-585entervm-539availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM0/DC3_C0_RP2_VM0.vmdkdatastore-516persistentfalsefalsefalse52345507-2e3c-44cd-8bb0-7a6c89e92e1f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:df:45falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17500:50:56:ab:df:45true4000172.16.2.17524dhcppreferrednameassignDC3_C0_RP2_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b17be-9e67-8e2f-9e31-34eae047a641summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM0/DC3_C0_RP2_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.118223Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-539entervm-564availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM7/DC3_C0_RP4_VM7.vmdkdatastore-516persistentfalsefalsefalse522b6be2-b746-46c5-e1d9-3d2855c61dd6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4f:43falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19800:50:56:ab:4f:43true4000172.16.2.19824dhcppreferrednameassignDC3_C0_RP4_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc87-830d-d7d0-2201-06d755fdd3f4summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM7/DC3_C0_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.684355Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-564entervm-561availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM4/DC3_C0_RP4_VM4.vmdkdatastore-516persistentfalsefalsefalse52476cf9-c1a1-c38e-1c73-ecefb140a57b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:46:8bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19500:50:56:ab:46:8btrue4000172.16.2.19524dhcppreferrednameassignDC3_C0_RP4_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b74d2-a6f8-3595-2459-6856eecc53d1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM4/DC3_C0_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.530696Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-561entervm-560availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM3/DC3_C0_RP4_VM3.vmdkdatastore-516persistentfalsefalsefalse529cdd14-38c3-8964-1243-e2554b880d81100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:30falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19400:50:56:ab:af:30true4000172.16.2.19424dhcppreferrednameassignDC3_C0_RP4_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2786-c32d-4b51-9fe5-25c8186ffbafsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM3/DC3_C0_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.406722Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-560entervm-642availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM7/DC3_C1_RP4_VM7.vmdkdatastore-516persistentfalsefalsefalse5202a953-e82c-4623-65c7-47250e8c0c62100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:b9:f9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1200:50:56:ab:b9:f9true4000172.16.3.1224dhcppreferrednameassignDC3_C1_RP4_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baedc-31d7-d2e1-9fca-4b08aba4e6d3summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM7/DC3_C1_RP4_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.523741Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-642entervm-563availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM6/DC3_C0_RP4_VM6.vmdkdatastore-516persistentfalsefalsefalse5235626c-8398-1ffb-b884-cd1cb8d0bf84100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:b9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19700:50:56:ab:21:b9true4000172.16.2.19724dhcppreferrednameassignDC3_C0_RP4_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2b0b-5d5a-5f4b-a542-e02f06bb0f8dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM6/DC3_C0_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.650448Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-563entervm-641availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM6/DC3_C1_RP4_VM6.vmdkdatastore-516persistentfalsefalsefalse5283900f-9bd0-a362-d8cf-b709e1986ded100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:e7:1cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1100:50:56:ab:e7:1ctrue4000172.16.3.1124dhcppreferrednameassignDC3_C1_RP4_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9ffb-b9d8-de2e-04ba-ab98d484faf8summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM6/DC3_C1_RP4_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.515536Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-641entervm-562availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM5/DC3_C0_RP4_VM5.vmdkdatastore-516persistentfalsefalsefalse5242c875-e67c-f3a5-a17c-f30d132b50ee100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ac:84falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19600:50:56:ab:ac:84true4000172.16.2.19624dhcppreferrednameassignDC3_C0_RP4_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bec83-8924-cf18-b7d7-2f243ce28586summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM5/DC3_C0_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.618071Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-562entervm-557availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM0/DC3_C0_RP4_VM0.vmdkdatastore-516persistentfalsefalsefalse5256fb60-b71b-d0bb-5ff1-7ef9d8763448100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:78:b5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19100:50:56:ab:78:b5true4000172.16.2.19124dhcppreferrednameassignDC3_C0_RP4_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3632-3ef8-b283-bec8-a9b1355118f9summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM0/DC3_C0_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.199036Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-557entervm-559availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM2/DC3_C0_RP4_VM2.vmdkdatastore-516persistentfalsefalsefalse522a5594-0f8c-0afa-700b-3f443365d819100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:25:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19300:50:56:ab:25:ebtrue4000172.16.2.19324dhcppreferrednameassignDC3_C0_RP4_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7eeb-c7a0-0e4e-d12a-01bc22567ab0summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM2/DC3_C0_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.310489Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-559entervm-558availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP4_VM1/DC3_C0_RP4_VM1.vmdkdatastore-516persistentfalsefalsefalse5294d856-16e0-3263-31cc-a1438ad11ad1100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:07:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19200:50:56:ab:07:cdtrue4000172.16.2.19224dhcppreferrednameassignDC3_C0_RP4_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-556snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b52b5-4258-8812-68b1-90d695eace83summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP4_VM1/DC3_C0_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:10.228773Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-558entervm-658availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM5/DC3_C1_RP6_VM5.vmdkdatastore-516persistentfalsefalsefalse528c70d7-75ac-7aec-3b72-666bfc30872b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d0:7efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2600:50:56:ab:d0:7etrue4000172.16.3.2624dhcppreferrednameassignDC3_C1_RP6_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b50fd-313b-ad23-7397-0a90edff3c4dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM5/DC3_C1_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.46322Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-658entervm-657availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM4/DC3_C1_RP6_VM4.vmdkdatastore-516persistentfalsefalsefalse523b6767-6ed3-300f-6020-7fbbbfa18ccc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ce:c7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2500:50:56:ab:ce:c7true4000172.16.3.2524dhcppreferrednameassignDC3_C1_RP6_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b35cc-8159-2f66-713c-911875cf2462summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM4/DC3_C1_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.424823Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-657entervm-636availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM1/DC3_C1_RP4_VM1.vmdkdatastore-516persistentfalsefalsefalse52005f30-4246-fd47-50d1-4340ef3d4410100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:9f:2dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.600:50:56:ab:9f:2dtrue4000172.16.3.624dhcppreferrednameassignDC3_C1_RP4_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4e22-d792-8d2e-9ad1-a3e6cf01e1ddsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM1/DC3_C1_RP4_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.454297Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-636entervm-660availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM7/DC3_C1_RP6_VM7.vmdkdatastore-516persistentfalsefalsefalse52ccdd6e-d70d-e220-e37a-5fdb9c41728a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4a:5bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2800:50:56:ab:4a:5btrue4000172.16.3.2824dhcppreferrednameassignDC3_C1_RP6_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd7e8-6c55-183d-1f18-0ebb0c47eb24summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM7/DC3_C1_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.529534Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-660entervm-554availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM6/DC3_C0_RP3_VM6.vmdkdatastore-516persistentfalsefalsefalse52f605fa-f316-440b-4a9b-333107474b0d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ed:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18900:50:56:ab:ed:0btrue4000172.16.2.18924dhcppreferrednameassignDC3_C0_RP3_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf1d3-4801-394c-c3ca-86ac3345d9c6summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM6/DC3_C0_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.595824Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-554entervm-635availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM0/DC3_C1_RP4_VM0.vmdkdatastore-516persistentfalsefalsefalse520edd87-f7b4-56db-5356-e4034ab39662100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0b:08falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.500:50:56:ab:0b:08true4000172.16.3.524dhcppreferrednameassignDC3_C1_RP4_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7fdc-08a3-3576-175c-c672f992a674summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM0/DC3_C1_RP4_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.440096Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-635entervm-659availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM6/DC3_C1_RP6_VM6.vmdkdatastore-516persistentfalsefalsefalse52e23569-ee00-1457-0fab-b9e274bcf741100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:41:e9falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2700:50:56:ab:41:e9true4000172.16.3.2724dhcppreferrednameassignDC3_C1_RP6_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2345-0d03-18f4-291a-442c1eb88c4bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM6/DC3_C1_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.491285Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-659entervm-555availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM7/DC3_C0_RP3_VM7.vmdkdatastore-516persistentfalsefalsefalse52c53921-0eb4-df5f-775f-67a9746ce1b3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:0f:6ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19000:50:56:ab:0f:6ftrue4000172.16.2.19024dhcppreferrednameassignDC3_C0_RP3_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b16df-506c-4333-583a-13c0d4a5edd4summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM7/DC3_C0_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.604235Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-555entervm-566availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM0/DC3_C0_RP5_VM0.vmdkdatastore-516persistentfalsefalsefalse52ac65ef-7ee9-bbe1-f0e9-8e4baa856c30100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:10falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.19900:50:56:ab:21:10true4000172.16.2.19924dhcppreferrednameassignDC3_C0_RP5_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b96c6-dc38-0873-e68a-9152fbf2a644summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM0/DC3_C0_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.429485Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-566entervm-631availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM5/DC3_C1_RP3_VM5.vmdkdatastore-516persistentfalsefalsefalse52bf455c-2786-29cb-e50e-9325f5aeac06100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c6:a1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.200:50:56:ab:c6:a1true4000172.16.3.224dhcppreferrednameassignDC3_C1_RP3_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bcd0c-c593-efb3-2484-e64152a1ccd2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM5/DC3_C1_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.379647Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-631entervm-638availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM3/DC3_C1_RP4_VM3.vmdkdatastore-516persistentfalsefalsefalse52277e0d-0728-cbf4-5ffa-08df4fcce300100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:10:35falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.800:50:56:ab:10:35true4000172.16.3.824dhcppreferrednameassignDC3_C1_RP4_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4464-0d68-5aa3-5880-ee55d1837bcasummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM3/DC3_C1_RP4_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.478774Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-638entervm-567availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM1/DC3_C0_RP5_VM1.vmdkdatastore-516persistentfalsefalsefalse52a503e0-1449-02f9-9480-384b4bd8560d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:dc:dafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20000:50:56:ab:dc:datrue4000172.16.2.20024dhcppreferrednameassignDC3_C0_RP5_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbb58-9665-8b89-080c-267b2ed43c95summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM1/DC3_C0_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.450075Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-567entervm-632availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM6/DC3_C1_RP3_VM6.vmdkdatastore-516persistentfalsefalsefalse52ce4ad8-b892-88e3-3a42-958c3f92a5d6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:0c:39falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.300:50:56:ab:0c:39true4000172.16.3.324dhcppreferrednameassignDC3_C1_RP3_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc172-9c79-6e9c-244e-4541395ea026summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM6/DC3_C1_RP3_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.389795Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-632entervm-637availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM2/DC3_C1_RP4_VM2.vmdkdatastore-516persistentfalsefalsefalse520a69b3-db8b-3941-2007-7541802431fb100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:21:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.700:50:56:ab:21:5ctrue4000172.16.3.724dhcppreferrednameassignDC3_C1_RP4_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd31-3396-92dc-b4f4-5b2df3db069fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM2/DC3_C1_RP4_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.466806Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-637entervm-568availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM2/DC3_C0_RP5_VM2.vmdkdatastore-516persistentfalsefalsefalse5281105e-4f01-063d-3444-7d468223bbfd100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:45:e5falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20100:50:56:ab:45:e5true4000172.16.2.20124dhcppreferrednameassignDC3_C0_RP5_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3619-19ef-4e63-89f6-f9db3c982e6dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM2/DC3_C0_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.477672Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-568entervm-633availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM7/DC3_C1_RP3_VM7.vmdkdatastore-516persistentfalsefalsefalse5233809d-4033-a573-1fd5-60bc14f6c0df100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:27:b8falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.400:50:56:ab:27:b8true4000172.16.3.424dhcppreferrednameassignDC3_C1_RP3_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc65f-1f03-77e1-70f5-38748e4d1f95summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM7/DC3_C1_RP3_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.406368Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-633entervm-640availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM5/DC3_C1_RP4_VM5.vmdkdatastore-516persistentfalsefalsefalse5290f066-6719-51a3-7375-c5360812a0f5100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2b:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1000:50:56:ab:2b:fdtrue4000172.16.3.1024dhcppreferrednameassignDC3_C1_RP4_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9311-bc2e-6b96-0380-b81272dd0bd6summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM5/DC3_C1_RP4_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.506739Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-640entervm-569availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM3/DC3_C0_RP5_VM3.vmdkdatastore-516persistentfalsefalsefalse5236f9d0-533b-4575-ed13-e5ad4ed92260100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:14:19falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20200:50:56:ab:14:19true4000172.16.2.20224dhcppreferrednameassignDC3_C0_RP5_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba065-374d-b2a0-cfcd-34d8f7a04fffsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM3/DC3_C0_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.495932Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-569entervm-639availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP4_VM4/DC3_C1_RP4_VM4.vmdkdatastore-516persistentfalsefalsefalse523e9c76-bc6e-3e14-57b6-ef393bd2e6a0100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:90:dcfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.900:50:56:ab:90:dctrue4000172.16.3.924dhcppreferrednameassignDC3_C1_RP4_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-634snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP4_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8a00-a624-66fb-9796-9c1ed08bf9cfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP4_VM4/DC3_C1_RP4_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP4_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:46.491598Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-639entervm-570availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM4/DC3_C0_RP5_VM4.vmdkdatastore-516persistentfalsefalsefalse5232bfb3-8bbf-a3d4-05e4-36f4b6b02f9b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:aa:67falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20300:50:56:ab:aa:67true4000172.16.2.20324dhcppreferrednameassignDC3_C0_RP5_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd186-8e62-8cc0-f0ef-0a68a3e908c7summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM4/DC3_C0_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.521967Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-570entervm-548availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM0/DC3_C0_RP3_VM0.vmdkdatastore-516persistentfalsefalsefalse52b34d2c-28cd-7868-8716-4e6559694110100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c0:b7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18300:50:56:ab:c0:b7true4000172.16.2.18324dhcppreferrednameassignDC3_C0_RP3_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6d90-f9b6-5439-abe8-d9ae30b62de7summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM0/DC3_C0_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.513289Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-548entervm-571availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM5/DC3_C0_RP5_VM5.vmdkdatastore-516persistentfalsefalsefalse52667eb6-c864-6940-725f-fc40e7464e8d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:41:d4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20400:50:56:ab:41:d4true4000172.16.2.20424dhcppreferrednameassignDC3_C0_RP5_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd2f-426a-c9e9-e48f-8ac9e344a971summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM5/DC3_C0_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.542167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-571entervm-549availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM1/DC3_C0_RP3_VM1.vmdkdatastore-516persistentfalsefalsefalse522510bc-2247-aba7-ad02-c5f847a57d3e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:47:a4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18400:50:56:ab:47:a4true4000172.16.2.18424dhcppreferrednameassignDC3_C0_RP3_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bda47-2271-545c-a6d4-6e2a06c6ec2bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM1/DC3_C0_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.531529Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-549entervm-572availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM6/DC3_C0_RP5_VM6.vmdkdatastore-516persistentfalsefalsefalse52f0e809-ffbe-b42e-180f-bb65269e2633100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:3f:e2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20500:50:56:ab:3f:e2true4000172.16.2.20524dhcppreferrednameassignDC3_C0_RP5_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9fb3-9115-e1ee-99c0-acbe62c45cfesummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM6/DC3_C0_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.561145Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-572entervm-573availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP5_VM7/DC3_C0_RP5_VM7.vmdkdatastore-516persistentfalsefalsefalse522099da-38bf-1ee4-7197-35b05fa55bf3100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2e:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20600:50:56:ab:2e:22true4000172.16.2.20624dhcppreferrednameassignDC3_C0_RP5_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-565snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5fac-1565-56d5-a700-14dcc5b46c44summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP5_VM7/DC3_C0_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:12.573108Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-573entervm-552availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM4/DC3_C0_RP3_VM4.vmdkdatastore-516persistentfalsefalsefalse52637bf3-c3b6-23fe-5b1a-add5dcc0191a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:f0:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18700:50:56:ab:f0:f6true4000172.16.2.18724dhcppreferrednameassignDC3_C0_RP3_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc96a-1689-2fd5-bb85-bd6d0b786289summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM4/DC3_C0_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.571463Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-552entervm-553availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM5/DC3_C0_RP3_VM5.vmdkdatastore-516persistentfalsefalsefalse5233c6d7-a576-abeb-034f-50380c494858100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d5:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18800:50:56:ab:d5:32true4000172.16.2.18824dhcppreferrednameassignDC3_C0_RP3_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b34f0-c279-4295-c1c3-fe5252162436summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM5/DC3_C0_RP3_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.587184Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-553entervm-550availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM2/DC3_C0_RP3_VM2.vmdkdatastore-516persistentfalsefalsefalse5220e483-d75c-ded2-3c93-1395712fd9ad100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:54:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18500:50:56:ab:54:8atrue4000172.16.2.18524dhcppreferrednameassignDC3_C0_RP3_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b71a4-f802-9b05-7ee6-5d9cefbc1b4asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM2/DC3_C0_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.54624Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-550entervm-551availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP3_VM3/DC3_C0_RP3_VM3.vmdkdatastore-516persistentfalsefalsefalse52ad1c71-9b96-8010-380f-5dda14843fca100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8f:7afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18600:50:56:ab:8f:7atrue4000172.16.2.18624dhcppreferrednameassignDC3_C0_RP3_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-547snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b517a-6ca8-e18b-072f-8365cb6f3d55summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP3_VM3/DC3_C0_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:02.558609Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-551entervm-615availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM7/DC3_C1_RP1_VM7.vmdkdatastore-516persistentfalsefalsefalse52c09d4f-1887-a0ca-a735-3bbce0ee471e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:c7:0bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24200:50:56:ab:c7:0btrue4000172.16.2.24224dhcppreferrednameassignDC3_C1_RP1_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfc2f-10ca-bb4e-6c50-bd407c5a1c10summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM7/DC3_C1_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.204928Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-615entervm-627availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM1/DC3_C1_RP3_VM1.vmdkdatastore-516persistentfalsefalsefalse52553aed-d163-d761-a1f8-2ef002d3d159100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:94:5cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25200:50:56:ab:94:5ctrue4000172.16.2.25224dhcppreferrednameassignDC3_C1_RP3_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc1d8-79a3-db33-9d21-acb49c969933summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM1/DC3_C1_RP3_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.312155Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-627entervm-613availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM5/DC3_C1_RP1_VM5.vmdkdatastore-516persistentfalsefalsefalse529a1296-215c-cf8e-c5d5-4c01dbf0cd9c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:3a:91falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24000:50:56:ab:3a:91true4000172.16.2.24024dhcppreferrednameassignDC3_C1_RP1_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9a6f-4517-eebc-c63f-0dd7ca238eccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM5/DC3_C1_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.177638Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-613entervm-628availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM2/DC3_C1_RP3_VM2.vmdkdatastore-516persistentfalsefalsefalse52e80bcd-c71e-4e8f-aae7-7f5834411024100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:e6:3cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25300:50:56:ab:e6:3ctrue4000172.16.2.25324dhcppreferrednameassignDC3_C1_RP3_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baa26-c908-6138-b3eb-1a564fa0be9asummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM2/DC3_C1_RP3_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.331563Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-628entervm-654availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM1/DC3_C1_RP6_VM1.vmdkdatastore-516persistentfalsefalsefalse528edb7b-8c20-9f85-f881-3983398a1c7b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:2a:81falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2200:50:56:ab:2a:81true4000172.16.3.2224dhcppreferrednameassignDC3_C1_RP6_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4da4-a1c6-a9fe-09ad-708c825a473fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM1/DC3_C1_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.286584Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-654entervm-537availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM7/DC3_C0_RP1_VM7.vmdkdatastore-516persistentfalsefalsefalse523f7422-58ed-9678-7b4a-a9d754990ce8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:83:42falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17400:50:56:ab:83:42true4000172.16.2.17424dhcppreferrednameassignDC3_C0_RP1_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422be5b3-881a-0f78-e831-3586b08ecb75summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM7/DC3_C0_RP1_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.76517Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-537entervm-614availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM6/DC3_C1_RP1_VM6.vmdkdatastore-516persistentfalsefalsefalse52cc07f9-db0e-aa70-52e4-6ac92a08ff43100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:50:05falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24100:50:56:ab:50:05true4000172.16.2.24124dhcppreferrednameassignDC3_C1_RP1_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bfd0f-0efe-1c63-0c18-bbbb9b9c0742summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM6/DC3_C1_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.189934Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-614entervm-629availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM3/DC3_C1_RP3_VM3.vmdkdatastore-516persistentfalsefalsefalse526953ff-3d5e-5117-22b8-39e26f23375c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:68:22falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25400:50:56:ab:68:22true4000172.16.2.25424dhcppreferrednameassignDC3_C1_RP3_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9024-6ee9-0b19-0016-fa2882b7a061summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM3/DC3_C1_RP3_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.351041Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-629entervm-653availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM0/DC3_C1_RP6_VM0.vmdkdatastore-516persistentfalsefalsefalse5283cabd-b62b-4164-7c04-27ae82348d0e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:fe:befalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2100:50:56:ab:fe:betrue4000172.16.3.2124dhcppreferrednameassignDC3_C1_RP6_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2125-ed03-749b-9a2e-563a36d968fesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM0/DC3_C1_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.24578Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-653entervm-611availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM3/DC3_C1_RP1_VM3.vmdkdatastore-516persistentfalsefalsefalse52e00875-70d3-406d-abf9-13daf5b1e792100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:5a:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23800:50:56:ab:5a:25true4000172.16.2.23824dhcppreferrednameassignDC3_C1_RP1_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b050c-81f7-1222-5d87-afe9ff4ebf32summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM3/DC3_C1_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.121293Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-611entervm-630availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM4/DC3_C1_RP3_VM4.vmdkdatastore-516persistentfalsefalsefalse528a9187-2e98-6d5c-b1f2-8b84ffd208e8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:07falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.100:50:56:ab:c5:07true4000172.16.3.124dhcppreferrednameassignDC3_C1_RP3_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8465-b5ce-3925-8d88-691b9633815bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM4/DC3_C1_RP3_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.367316Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-630true http_version: - recorded_at: Thu, 03 May 2018 18:07:59 GMT + recorded_at: Mon, 07 May 2018 16:15:32 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -530,7 +530,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -544,7 +544,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:07:59 GMT + - Mon, 7 May 2018 16:15:32 GMT Cache-Control: - no-cache Connection: @@ -564,11 +564,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 0_6session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269entervm-656availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM3/DC3_C1_RP6_VM3.vmdkdatastore-516persistentfalsefalsefalse522ca001-2f30-0988-8981-b2c0be2557da100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f7:82falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2400:50:56:ab:f7:82true4000172.16.3.2424dhcppreferrednameassignDC3_C1_RP6_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5b34-8f1f-1fbf-2b2f-93ec34a34371summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM3/DC3_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.380174Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-656entervm-612availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM4/DC3_C1_RP1_VM4.vmdkdatastore-516persistentfalsefalsefalse52fcae5d-944b-3536-9c65-619c2c1df7e7100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:89:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23900:50:56:ab:89:f1true4000172.16.2.23924dhcppreferrednameassignDC3_C1_RP1_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b28b7-be09-e900-244e-8fdfba6a358csummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM4/DC3_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.153806Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-612entervm-655availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM2/DC3_C1_RP6_VM2.vmdkdatastore-516persistentfalsefalsefalse52dce2f6-9797-1eb1-3523-98d04195063e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:be:85falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2300:50:56:ab:be:85true4000172.16.3.2324dhcppreferrednameassignDC3_C1_RP6_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b771f-9dfa-ce18-a269-dda27830bb84summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM2/DC3_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.335021Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-655entervm-533availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM3/DC3_C0_RP1_VM3.vmdkdatastore-516persistentfalsefalsefalse52da6057-a4db-542f-9f52-09b75defcf17100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:71:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17000:50:56:ab:71:d0true4000172.16.2.17024dhcppreferrednameassignDC3_C0_RP1_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3860-d93c-7cd4-55aa-dd2f8591d44dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM3/DC3_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.726892Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-533entervm-534availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM4/DC3_C0_RP1_VM4.vmdkdatastore-516persistentfalsefalsefalse5220e0c6-d559-8df4-81cd-422cdb34d972100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:26:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17100:50:56:ab:26:fdtrue4000172.16.2.17124dhcppreferrednameassignDC3_C0_RP1_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3bd3-93ff-a19a-a502-e8cc36e10dd2summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM4/DC3_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.734843Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-534entervm-626availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM0/DC3_C1_RP3_VM0.vmdkdatastore-516persistentfalsefalsefalse520dcdd9-c4ff-2e02-6c9c-3ea94aecc258100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:87:fffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25100:50:56:ab:87:fftrue4000172.16.2.25124dhcppreferrednameassignDC3_C1_RP3_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbb1f-e287-1e19-1ea7-49fc8f338648summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM0/DC3_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.266007Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-626entervm-535availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM5/DC3_C0_RP1_VM5.vmdkdatastore-516persistentfalsefalsefalse520cf4f2-35fd-22b9-d548-259d38137586100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:86:e4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17200:50:56:ab:86:e4true4000172.16.2.17224dhcppreferrednameassignDC3_C0_RP1_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c11-a7fc-54d8-09bd-67289188cd3asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM5/DC3_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.74541Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-535entervm-536availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM6/DC3_C0_RP1_VM6.vmdkdatastore-516persistentfalsefalsefalse52eb9227-b8cf-da45-0d3f-b7424ab38404100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ed:40falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17300:50:56:ab:ed:40true4000172.16.2.17324dhcppreferrednameassignDC3_C0_RP1_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3f77-86f5-e230-2157-f3d6dc516a5bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM6/DC3_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.75645Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-536entervm-530availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM0/DC3_C0_RP1_VM0.vmdkdatastore-516persistentfalsefalsefalse520eb37f-485f-a2d8-1411-eba7aba9a695100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:12:a7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16700:50:56:ab:12:a7true4000172.16.2.16724dhcppreferrednameassignDC3_C0_RP1_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0791-4a19-f4d9-2105-f65a1400597bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM0/DC3_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.682815Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-530entervm-665availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM3/DC3_C1_RP7_VM3.vmdkdatastore-516persistentfalsefalsefalse52b124e3-96f7-6d0c-c68b-ff364e04e5f8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:91:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3200:50:56:ab:91:0atrue4000172.16.3.3224dhcppreferrednameassignDC3_C1_RP7_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2503-c4ec-314a-3f68-9cb88aada07fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM3/DC3_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.070163Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-665entervm-531availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM1/DC3_C0_RP1_VM1.vmdkdatastore-516persistentfalsefalsefalse524bbcae-de6d-9999-dc2f-9c0a6d01a09d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:a8:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16800:50:56:ab:a8:7btrue4000172.16.2.16824dhcppreferrednameassignDC3_C0_RP1_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba69c-b394-2905-b53c-12656cca7a88summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM1/DC3_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.708076Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-531entervm-666availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM4/DC3_C1_RP7_VM4.vmdkdatastore-516persistentfalsefalsefalse52f7fc33-5dbc-6590-e02a-4439e04d68c8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:44:36falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3300:50:56:ab:44:36true4000172.16.3.3324dhcppreferrednameassignDC3_C1_RP7_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0713-e2c6-292b-d21d-5058a223ee18summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM4/DC3_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.100919Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-666entervm-532availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM2/DC3_C0_RP1_VM2.vmdkdatastore-516persistentfalsefalsefalse521fe593-a6bc-a953-88ab-bc7f796c8992100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c6:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16900:50:56:ab:c6:f1true4000172.16.2.16924dhcppreferrednameassignDC3_C0_RP1_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba69d-2ad6-1891-d4ec-8db48213f7a3summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM2/DC3_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.718254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-532entervm-663availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM1/DC3_C1_RP7_VM1.vmdkdatastore-516persistentfalsefalsefalse52af2670-deef-4b9f-789d-5eaaa9fcba27100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:31:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3000:50:56:ab:31:8dtrue4000172.16.3.3024dhcppreferrednameassignDC3_C1_RP7_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc0c8-5d75-29e1-7efd-c427722b2e14summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM1/DC3_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:14.996946Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-663entervm-664availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM2/DC3_C1_RP7_VM2.vmdkdatastore-516persistentfalsefalsefalse5271fa80-d585-879b-119e-338d0e4b6085100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:89:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3100:50:56:ab:89:d7true4000172.16.3.3124dhcppreferrednameassignDC3_C1_RP7_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4f20-7420-1c69-7e3c-e91f4e1d7084summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM2/DC3_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.041273Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-664entervm-662availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM0/DC3_C1_RP7_VM0.vmdkdatastore-516persistentfalsefalsefalse52449cf7-211b-e1cf-abbe-2b799a6d6eac100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:a1:33falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2900:50:56:ab:a1:33true4000172.16.3.2924dhcppreferrednameassignDC3_C1_RP7_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf38b-6074-87f1-7ec5-f84409554440summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM0/DC3_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:14.920197Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-662entervm-575availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM0/DC3_C0_RP6_VM0.vmdkdatastore-516persistentfalsefalsefalse5225324e-7da4-16ef-8414-9f1be3bd43b5100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:a6:9bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20700:50:56:ab:a6:9btrue4000172.16.2.20724dhcppreferrednameassignDC3_C0_RP6_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9b4-a6c2-7b69-2da5-ad0ee2f0db17summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM0/DC3_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.559396Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-575entervm-669availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM7/DC3_C1_RP7_VM7.vmdkdatastore-516persistentfalsefalsefalse52439479-a55c-1ea1-94f3-9cf3645536fb100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:fd:f2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3600:50:56:ab:fd:f2true4000172.16.3.3624dhcppreferrednameassignDC3_C1_RP7_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7fb8-e331-e735-1fe1-5844b2382c3asummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM7/DC3_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.270091Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-669entervm-576availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM1/DC3_C0_RP6_VM1.vmdkdatastore-516persistentfalsefalsefalse5217fc70-63d8-4e6d-e16a-109247723f85100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20800:50:56:ab:af:d3true4000172.16.2.20824dhcppreferrednameassignDC3_C0_RP6_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6b2d-5382-c09a-4f97-bd36db839fb1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM1/DC3_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.583276Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-576entervm-577availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM2/DC3_C0_RP6_VM2.vmdkdatastore-516persistentfalsefalsefalse52a74ba5-fde2-bdf3-c5f2-fa7d588cb1dc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:66:cbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20900:50:56:ab:66:cbtrue4000172.16.2.20924dhcppreferrednameassignDC3_C0_RP6_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9e0e-24b0-fd33-ec30-549ff4bf0657summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM2/DC3_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.598668Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-577entervm-667availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM5/DC3_C1_RP7_VM5.vmdkdatastore-516persistentfalsefalsefalse52d9601f-6738-fe7e-1f20-ee71ae2d6004100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8c:d2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3400:50:56:ab:8c:d2true4000172.16.3.3424dhcppreferrednameassignDC3_C1_RP7_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1fec-cfa6-fae6-5430-1fa630ce9471summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM5/DC3_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.182562Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-667entervm-578availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM3/DC3_C0_RP6_VM3.vmdkdatastore-516persistentfalsefalsefalse522bee6b-38bd-4efe-d125-04e56b568e44100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:b6:f7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21000:50:56:ab:b6:f7true4000172.16.2.21024dhcppreferrednameassignDC3_C0_RP6_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc979-7eac-83ec-7df3-7bc769f1e741summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM3/DC3_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.611058Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-578entervm-668availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM6/DC3_C1_RP7_VM6.vmdkdatastore-516persistentfalsefalsefalse523836e1-bea4-9d44-8bda-a8e684c67cce100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:96falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3500:50:56:ab:c5:96true4000172.16.3.3524dhcppreferrednameassignDC3_C1_RP7_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f04-fffd-fb51-e66b-9f92fe035f1esummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM6/DC3_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.251458Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-668entervm-579availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM4/DC3_C0_RP6_VM4.vmdkdatastore-516persistentfalsefalsefalse522e901c-62e4-cec1-654f-7a085702a7fe100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:07:3efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21100:50:56:ab:07:3etrue4000172.16.2.21124dhcppreferrednameassignDC3_C0_RP6_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc876-098c-1dea-ed0f-64d099f29c73summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM4/DC3_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.632695Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-579entervm-651availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM7/DC3_C1_RP5_VM7.vmdkdatastore-516persistentfalsefalsefalse524f31ec-4be4-3b52-18d6-b12b4067703e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:9b:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2000:50:56:ab:9b:25true4000172.16.3.2024dhcppreferrednameassignDC3_C1_RP5_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0f0c-7d51-e51d-7204-4b0a39fb1ef6summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM7/DC3_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.736266Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-651entervm-580availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM5/DC3_C0_RP6_VM5.vmdkdatastore-516persistentfalsefalsefalse52f7ab32-a594-a7f1-d0b7-c8aca42f6053100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:61:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21200:50:56:ab:61:cdtrue4000172.16.2.21224dhcppreferrednameassignDC3_C0_RP6_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b57af-bf07-0640-3798-bd8d4f5eec4bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM5/DC3_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.646108Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-580entervm-581availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM6/DC3_C0_RP6_VM6.vmdkdatastore-516persistentfalsefalsefalse525ff207-b15a-9560-5815-cc29184031b2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:51:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21300:50:56:ab:51:1atrue4000172.16.2.21324dhcppreferrednameassignDC3_C0_RP6_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b89b5-5047-0b82-5b39-a92856315348summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM6/DC3_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.662461Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-581entervm-582availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM7/DC3_C0_RP6_VM7.vmdkdatastore-516persistentfalsefalsefalse52155438-30ae-e4a2-9124-18c24b78d22b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:93:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21400:50:56:ab:93:32true4000172.16.2.21424dhcppreferrednameassignDC3_C0_RP6_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf0a2-ae26-54f7-aeaf-783b5abb923esummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM7/DC3_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.677239Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-582entervm-647availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM3/DC3_C1_RP5_VM3.vmdkdatastore-516persistentfalsefalsefalse52ab89d4-7c28-09aa-971c-140398668762100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f7:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1600:50:56:ab:f7:f6true4000172.16.3.1624dhcppreferrednameassignDC3_C1_RP5_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1cfb-142b-2845-abad-91620c3612fdsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM3/DC3_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.671848Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-647entervm-648availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM4/DC3_C1_RP5_VM4.vmdkdatastore-516persistentfalsefalsefalse52f8f3b0-4186-bd09-14a9-59fc70710819100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:73:41falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1700:50:56:ab:73:41true4000172.16.3.1724dhcppreferrednameassignDC3_C1_RP5_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9a00-d703-044e-dd6c-9bd2cb00ee1bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM4/DC3_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.688121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-648entervm-649availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM5/DC3_C1_RP5_VM5.vmdkdatastore-516persistentfalsefalsefalse52807916-7288-c084-3334-1d59df3464d2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ac:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1800:50:56:ab:ac:71true4000172.16.3.1824dhcppreferrednameassignDC3_C1_RP5_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8e24-a9c2-abb2-8099-5b3e032adbb2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM5/DC3_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.704792Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-649entervm-546availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM7/DC3_C0_RP2_VM7.vmdkdatastore-516persistentfalsefalsefalse52422140-49e0-9c69-22ca-83b2fb80b751100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f9:2bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18200:50:56:ab:f9:2btrue4000172.16.2.18224dhcppreferrednameassignDC3_C0_RP2_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd689-2451-ba9b-0dfc-8630b9857163summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM7/DC3_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.319538Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-546entervm-650availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM6/DC3_C1_RP5_VM6.vmdkdatastore-516persistentfalsefalsefalse522b3e5f-cd55-66f8-0fb5-5980b1d73f5b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:52:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1900:50:56:ab:52:5dtrue4000172.16.3.1924dhcppreferrednameassignDC3_C1_RP5_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f5d-82a2-3214-90b4-52f3db224f3dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM6/DC3_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.719934Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-650entervm-545availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM6/DC3_C0_RP2_VM6.vmdkdatastore-516persistentfalsefalsefalse5215e025-5ab0-f185-5ce7-d5ae5391335c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:18:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18100:50:56:ab:18:e0true4000172.16.2.18124dhcppreferrednameassignDC3_C0_RP2_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b36c6-2407-70a1-7082-ba9c934199a1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM6/DC3_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.291811Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-545entervm-544availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM5/DC3_C0_RP2_VM5.vmdkdatastore-516persistentfalsefalsefalse52272481-3b48-2c87-6b62-535e36b67fb1100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8a:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18000:50:56:ab:8a:fatrue4000172.16.2.18024dhcppreferrednameassignDC3_C0_RP2_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0312-db97-75d4-995f-6b1c531adb83summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM5/DC3_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.267201Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-544entervm-644availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM0/DC3_C1_RP5_VM0.vmdkdatastore-516persistentfalsefalsefalse52080b67-6ba2-6292-7b1b-10fe27f62696100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:22:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1300:50:56:ab:22:f3true4000172.16.3.1324dhcppreferrednameassignDC3_C1_RP5_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8237-94da-4cef-42d5-681db624d7dfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM0/DC3_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.60727Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-644entervm-609availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM1/DC3_C1_RP1_VM1.vmdkdatastore-516persistentfalsefalsefalse52234a17-530d-18f1-3b8e-5051038b7396100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8c:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23600:50:56:ab:8c:2atrue4000172.16.2.23624dhcppreferrednameassignDC3_C1_RP1_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5901-9327-60b2-1f74-583d9196e6eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM1/DC3_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.067396Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-609entervm-543availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM4/DC3_C0_RP2_VM4.vmdkdatastore-516persistentfalsefalsefalse528c704a-5e9e-5a60-e29d-024e8e6da05c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:dc:8ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17900:50:56:ab:dc:8ftrue4000172.16.2.17924dhcppreferrednameassignDC3_C0_RP2_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422befc7-8f72-a9d3-b263-73db24630612summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM4/DC3_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.2315Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-543entervm-645availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM1/DC3_C1_RP5_VM1.vmdkdatastore-516persistentfalsefalsefalse526bbba8-e252-bcfd-7458-7fb32726f0cf100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4d:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1400:50:56:ab:4d:4dtrue4000172.16.3.1424dhcppreferrednameassignDC3_C1_RP5_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b47df-c565-2fcd-a7fa-e5fdfcafdc08summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM1/DC3_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.629596Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-645entervm-610availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM2/DC3_C1_RP1_VM2.vmdkdatastore-516persistentfalsefalsefalse5245d864-4822-bd96-65fb-49aa540694ad100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:43:c1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23700:50:56:ab:43:c1true4000172.16.2.23724dhcppreferrednameassignDC3_C1_RP1_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8e77-f4aa-3f51-20e1-e948c19012b2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM2/DC3_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.099462Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-610entervm-542availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM3/DC3_C0_RP2_VM3.vmdkdatastore-516persistentfalsefalsefalse52e3a387-9b74-2735-89e3-4faf846b3bcc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ba:62falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17800:50:56:ab:ba:62true4000172.16.2.17824dhcppreferrednameassignDC3_C0_RP2_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4a5d-b00f-788d-2b0a-8618657992dasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM3/DC3_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.200362Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-542entervm-646availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM2/DC3_C1_RP5_VM2.vmdkdatastore-516persistentfalsefalsefalse52d51a78-df60-8ddb-b9cc-e2da34cff354100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:84:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1500:50:56:ab:84:8atrue4000172.16.3.1524dhcppreferrednameassignDC3_C1_RP5_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ee3-4c61-aebf-f708-f6b14ffa5eccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM2/DC3_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.651547Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-646entervm-541availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM2/DC3_C0_RP2_VM2.vmdkdatastore-516persistentfalsefalsefalse522bebdb-7890-c556-30c6-d9ce66ec451f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c8:5efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17700:50:56:ab:c8:5etrue4000172.16.2.17724dhcppreferrednameassignDC3_C0_RP2_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bad6f-c7cc-acfc-4d8d-4c01a61e90ccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM2/DC3_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.168775Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-541entervm-608availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM0/DC3_C1_RP1_VM0.vmdkdatastore-516persistentfalsefalsefalse52f814b1-df6a-a849-ee64-0d4483ffda3a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ae:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23500:50:56:ab:ae:7btrue4000172.16.2.23524dhcppreferrednameassignDC3_C1_RP1_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc2c7-48ef-03ff-89fc-755709288763summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM0/DC3_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.04628Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-608entervm-540availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM1/DC3_C0_RP2_VM1.vmdkdatastore-516persistentfalsefalsefalse52df12c3-84a9-e881-5eb0-7651d9e09040100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:75:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17600:50:56:ab:75:e0true4000172.16.2.17624dhcppreferrednameassignDC3_C0_RP2_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc14d-fed2-4cbf-e8f4-0f941de82849summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM1/DC3_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.144167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-540entervm-524availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM3/DC3_C0_RP0_VM3.vmdkdatastore-516persistentfalsefalsefalse5228cff5-b0d7-8ab9-472a-f707a32ed445100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:49:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16200:50:56:ab:49:57true4000172.16.2.16224dhcppreferrednameassignDC3_C0_RP0_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baa05-bfee-21d6-5821-dc2009b8223dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM3/DC3_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.73006Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-524entervm-523availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM2/DC3_C0_RP0_VM2.vmdkdatastore-516persistentfalsefalsefalse520ab2ac-e8c0-e8a5-3cee-daf8732e69d7100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:97:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16100:50:56:ab:97:d0true4000172.16.2.16124dhcppreferrednameassignDC3_C0_RP0_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c5f-52d0-7184-d2f9-0142b92f5516summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM2/DC3_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.711385Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-523entervm-526availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM5/DC3_C0_RP0_VM5.vmdkdatastore-516persistentfalsefalsefalse526f62c6-4ab5-432c-ff86-a321ef448986100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ba:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16400:50:56:ab:ba:cdtrue4000172.16.2.16424dhcppreferrednameassignDC3_C0_RP0_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baee1-3cd8-ed35-3eb3-22379d5b8b01summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM5/DC3_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.758726Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-526entervm-525availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM4/DC3_C0_RP0_VM4.vmdkdatastore-516persistentfalsefalsefalse52fc03b3-539b-b892-07a8-71d2c3aad8df100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:33:fefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16300:50:56:ab:33:fetrue4000172.16.2.16324dhcppreferrednameassignDC3_C0_RP0_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3d6a-faa2-27d1-39bd-36b7c89719fasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM4/DC3_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.748512Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-525entervm-624availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM7/DC3_C1_RP2_VM7.vmdkdatastore-516persistentfalsefalsefalse523c7b41-c090-fe96-97de-b18fca590c85100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:59:58falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25000:50:56:ab:59:58true4000172.16.2.25024dhcppreferrednameassignDC3_C1_RP2_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc302-a20d-ec68-0f94-15e014256fffsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM7/DC3_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.072843Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-624entervm-528availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM7/DC3_C0_RP0_VM7.vmdkdatastore-516persistentfalsefalsefalse52596b4d-250a-91c5-38a9-c27dbd5e6be4100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16600:50:56:ab:af:2atrue4000172.16.2.16624dhcppreferrednameassignDC3_C0_RP0_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf3a-2b6e-2b7f-523e-655fbcca16d6summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM7/DC3_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.788083Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-528entervm-623availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM6/DC3_C1_RP2_VM6.vmdkdatastore-516persistentfalsefalsefalse5234183b-a4be-3972-b6c9-b850c2f683b6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:98:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24900:50:56:ab:98:ebtrue4000172.16.2.24924dhcppreferrednameassignDC3_C1_RP2_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2e8c-b709-a385-b614-f7f565fb9f2csummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM6/DC3_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.061852Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-623entervm-527availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM6/DC3_C0_RP0_VM6.vmdkdatastore-516persistentfalsefalsefalse525e7035-961a-f510-a4f4-49a1ed13d83c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:80:9cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16500:50:56:ab:80:9ctrue4000172.16.2.16524dhcppreferrednameassignDC3_C0_RP0_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9915-a733-c3f5-66c2-d93c466e081asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM6/DC3_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.769217Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-527entervm-622availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM5/DC3_C1_RP2_VM5.vmdkdatastore-516persistentfalsefalsefalse529e2ce0-993d-e2b7-dc7d-0d7443473fc2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d3:11falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24800:50:56:ab:d3:11true4000172.16.2.24824dhcppreferrednameassignDC3_C1_RP2_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf2cf-6768-0c75-ddb8-0c68906364a5summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM5/DC3_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.05133Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-622entervm-621availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM4/DC3_C1_RP2_VM4.vmdkdatastore-516persistentfalsefalsefalse52c69903-dd98-d4f1-2fb8-2af427979552100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:42:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24700:50:56:ab:42:f3true4000172.16.2.24724dhcppreferrednameassignDC3_C1_RP2_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2888-7ffb-5d61-03cb-9b44542cafaesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM4/DC3_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.03304Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-621entervm-522availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM1/DC3_C0_RP0_VM1.vmdkdatastore-516persistentfalsefalsefalse52e665a9-2ed7-956d-7fd5-ecfbba58209e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8b:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16000:50:56:ab:8b:44true4000172.16.2.16024dhcppreferrednameassignDC3_C0_RP0_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f1c-dc74-d706-061d-a8f12dc24cfdsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM1/DC3_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.692278Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-522entervm-521availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM0/DC3_C0_RP0_VM0.vmdkdatastore-516persistentfalsefalsefalse522f9d21-83b5-2d17-01af-9a7400c71759100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:eb:fffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.15900:50:56:ab:eb:fftrue4000172.16.2.15924dhcppreferrednameassignDC3_C0_RP0_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5576-2861-a75f-f0d9-077695b24d33summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM0/DC3_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.6678Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-521enterdvportgroup-510config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-510config.nameassignDC3_DVS-DVUplinks-509hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVS-DVUplinks-509parentassigngroup-n507summary.nameassignDC3_DVS-DVUplinks-509tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-512config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-512config.nameassignDC3_DVPG1hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVPG1parentassigngroup-n507summary.nameassignDC3_DVPG1tagassignenterdvportgroup-511config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-511config.nameassignDC3_DVPG0hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVPG0parentassigngroup-n507summary.nameassignDC3_DVPG0tagassignenterdvs-509config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-510nameassignDC3_DVSparentassigngroup-n507summary.hostassignsummary.hostMemberassignhost-515host-517host-518host-519host-594host-595host-596host-597summary.nameassignDC3_DVSsummary.uuidassign02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68enternetwork-508nameassignVM Networkparentassigngroup-n507enterdomain-c592configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-594host-595host-596host-597nameassignDC3_C1parentassigngroup-h505resourcePoolassignresgroup-593summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c513configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-515host-517host-518host-519nameassignDC3_C0parentassigngroup-h505resourcePoolassignresgroup-514summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-516capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-517/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-594/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-518/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-595/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-519/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-596/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-597/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-515/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s506summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-516summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/enterresgroup-92nameassignResourcesparentassigndomain-c91resourcePoolassignresgroup-133resgroup-142resgroup-115resgroup-151resgroup-124resgroup-160resgroup-97resgroup-106summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-96config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:08Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H3parentassigndomain-c91summary.config.nameassignDC0_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-96summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-95config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:07Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H2parentassigndomain-c91summary.config.nameassignDC0_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-95summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-94config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:06Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H1parentassigndomain-c91summary.config.nameassignDC0_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-94summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-93config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:05Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H0parentassigndomain-c91summary.config.nameassignDC0_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-93summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-13nameassignResourcesparentassigndomain-c12resourcePoolassignresgroup-82resgroup-37resgroup-19resgroup-46resgroup-28resgroup-55resgroup-64resgroup-73summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-18config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:04Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H3parentassigndomain-c12summary.config.nameassignDC0_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-18summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-17config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:03Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H2parentassigndomain-c12summary.config.nameassignDC0_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-17summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-16config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:02Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H1parentassigndomain-c12summary.config.nameassignDC0_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-16summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-14config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:01Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H0parentassigndomain-c12summary.config.nameassignDC0_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-14summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-259nameassignResourcesparentassigndomain-c258resourcePoolassignresgroup-282resgroup-327resgroup-273resgroup-264resgroup-318resgroup-309resgroup-300resgroup-291summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-263config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:10Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H3parentassigndomain-c258summary.config.nameassignDC1_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-263summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-262config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H2parentassigndomain-c258summary.config.nameassignDC1_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-262summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-261config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H1parentassigndomain-c258summary.config.nameassignDC1_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-261summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-260config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H0parentassigndomain-c258summary.config.nameassignDC1_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-260summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-180nameassignResourcesparentassigndomain-c179resourcePoolassignresgroup-231resgroup-222resgroup-249resgroup-240resgroup-195resgroup-186resgroup-213resgroup-204summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-185config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H3parentassigndomain-c179summary.config.nameassignDC1_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-185summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-184config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H2parentassigndomain-c179summary.config.nameassignDC1_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-184summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-183config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H1parentassigndomain-c179summary.config.nameassignDC1_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-183summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-181config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:09Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H0parentassigndomain-c179summary.config.nameassignDC1_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-181summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-426nameassignResourcesparentassigndomain-c425resourcePoolassignresgroup-467resgroup-458resgroup-449resgroup-494resgroup-440resgroup-485resgroup-431resgroup-476summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-430config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:18Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H3parentassigndomain-c425summary.config.nameassignDC2_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-430summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-429config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:17Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H2parentassigndomain-c425summary.config.nameassignDC2_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-429summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-428config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:16Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H1parentassigndomain-c425summary.config.nameassignDC2_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-428summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-427config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:15Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H0parentassigndomain-c425summary.config.nameassignDC2_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-427summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-347nameassignResourcesparentassigndomain-c346resourcePoolassignresgroup-407resgroup-380resgroup-371resgroup-362resgroup-398resgroup-353resgroup-389resgroup-416summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-352config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:14Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H3parentassigndomain-c346summary.config.nameassignDC2_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-352summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-351config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:13Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H2parentassigndomain-c346summary.config.nameassignDC2_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-351summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-350config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:12Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H1parentassigndomain-c346summary.config.nameassignDC2_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-350summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-348config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:11Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H0parentassigndomain-c346summary.config.nameassignDC2_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-348summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-593nameassignResourcesparentassigndomain-c592resourcePoolassignresgroup-643resgroup-652resgroup-625resgroup-634resgroup-607resgroup-598resgroup-616resgroup-661summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-597config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:20Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H3parentassigndomain-c592summary.config.nameassignDC3_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-597summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-596config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H2parentassigndomain-c592summary.config.nameassignDC3_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-596summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-595config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H1parentassigndomain-c592summary.config.nameassignDC3_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-595summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-594config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H0parentassigndomain-c592summary.config.nameassignDC3_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-594summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalsetrue + 0_6session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6bentervm-656availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM3/DC3_C1_RP6_VM3.vmdkdatastore-516persistentfalsefalsefalse522ca001-2f30-0988-8981-b2c0be2557da100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f7:82falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2400:50:56:ab:f7:82true4000172.16.3.2424dhcppreferrednameassignDC3_C1_RP6_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5b34-8f1f-1fbf-2b2f-93ec34a34371summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM3/DC3_C1_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.380174Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-656entervm-612availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM4/DC3_C1_RP1_VM4.vmdkdatastore-516persistentfalsefalsefalse52fcae5d-944b-3536-9c65-619c2c1df7e7100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:89:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23900:50:56:ab:89:f1true4000172.16.2.23924dhcppreferrednameassignDC3_C1_RP1_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b28b7-be09-e900-244e-8fdfba6a358csummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM4/DC3_C1_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.153806Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-612entervm-655availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP6_VM2/DC3_C1_RP6_VM2.vmdkdatastore-516persistentfalsefalsefalse52dce2f6-9797-1eb1-3523-98d04195063e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:be:85falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2300:50:56:ab:be:85true4000172.16.3.2324dhcppreferrednameassignDC3_C1_RP6_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-652snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b771f-9dfa-ce18-a269-dda27830bb84summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP6_VM2/DC3_C1_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:02.335021Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-655entervm-533availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM3/DC3_C0_RP1_VM3.vmdkdatastore-516persistentfalsefalsefalse52da6057-a4db-542f-9f52-09b75defcf17100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:71:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17000:50:56:ab:71:d0true4000172.16.2.17024dhcppreferrednameassignDC3_C0_RP1_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3860-d93c-7cd4-55aa-dd2f8591d44dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM3/DC3_C0_RP1_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.726892Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-533entervm-534availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM4/DC3_C0_RP1_VM4.vmdkdatastore-516persistentfalsefalsefalse5220e0c6-d559-8df4-81cd-422cdb34d972100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:26:fdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17100:50:56:ab:26:fdtrue4000172.16.2.17124dhcppreferrednameassignDC3_C0_RP1_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3bd3-93ff-a19a-a502-e8cc36e10dd2summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM4/DC3_C0_RP1_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.734843Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-534entervm-626availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP3_VM0/DC3_C1_RP3_VM0.vmdkdatastore-516persistentfalsefalsefalse520dcdd9-c4ff-2e02-6c9c-3ea94aecc258100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:87:fffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25100:50:56:ab:87:fftrue4000172.16.2.25124dhcppreferrednameassignDC3_C1_RP3_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-625snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP3_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bbb1f-e287-1e19-1ea7-49fc8f338648summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP3_VM0/DC3_C1_RP3_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP3_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:45.266007Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-626entervm-535availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM5/DC3_C0_RP1_VM5.vmdkdatastore-516persistentfalsefalsefalse520cf4f2-35fd-22b9-d548-259d38137586100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:86:e4falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17200:50:56:ab:86:e4true4000172.16.2.17224dhcppreferrednameassignDC3_C0_RP1_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7c11-a7fc-54d8-09bd-67289188cd3asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM5/DC3_C0_RP1_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.74541Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-535entervm-536availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM6/DC3_C0_RP1_VM6.vmdkdatastore-516persistentfalsefalsefalse52eb9227-b8cf-da45-0d3f-b7424ab38404100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ed:40falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17300:50:56:ab:ed:40true4000172.16.2.17324dhcppreferrednameassignDC3_C0_RP1_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3f77-86f5-e230-2157-f3d6dc516a5bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM6/DC3_C0_RP1_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.75645Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-536entervm-530availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM0/DC3_C0_RP1_VM0.vmdkdatastore-516persistentfalsefalsefalse520eb37f-485f-a2d8-1411-eba7aba9a695100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:12:a7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16700:50:56:ab:12:a7true4000172.16.2.16724dhcppreferrednameassignDC3_C0_RP1_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0791-4a19-f4d9-2105-f65a1400597bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM0/DC3_C0_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.682815Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-530entervm-665availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM3/DC3_C1_RP7_VM3.vmdkdatastore-516persistentfalsefalsefalse52b124e3-96f7-6d0c-c68b-ff364e04e5f8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:91:0afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3200:50:56:ab:91:0atrue4000172.16.3.3224dhcppreferrednameassignDC3_C1_RP7_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2503-c4ec-314a-3f68-9cb88aada07fsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM3/DC3_C1_RP7_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.070163Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-665entervm-531availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM1/DC3_C0_RP1_VM1.vmdkdatastore-516persistentfalsefalsefalse524bbcae-de6d-9999-dc2f-9c0a6d01a09d100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:a8:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16800:50:56:ab:a8:7btrue4000172.16.2.16824dhcppreferrednameassignDC3_C0_RP1_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba69c-b394-2905-b53c-12656cca7a88summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM1/DC3_C0_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.708076Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-531entervm-666availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM4/DC3_C1_RP7_VM4.vmdkdatastore-516persistentfalsefalsefalse52f7fc33-5dbc-6590-e02a-4439e04d68c8100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:44:36falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3300:50:56:ab:44:36true4000172.16.3.3324dhcppreferrednameassignDC3_C1_RP7_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0713-e2c6-292b-d21d-5058a223ee18summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM4/DC3_C1_RP7_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.100919Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-666entervm-532availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP1_VM2/DC3_C0_RP1_VM2.vmdkdatastore-516persistentfalsefalsefalse521fe593-a6bc-a953-88ab-bc7f796c8992100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c6:f1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16900:50:56:ab:c6:f1true4000172.16.2.16924dhcppreferrednameassignDC3_C0_RP1_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-529snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422ba69d-2ad6-1891-d4ec-8db48213f7a3summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP1_VM2/DC3_C0_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:59.718254Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-532entervm-663availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM1/DC3_C1_RP7_VM1.vmdkdatastore-516persistentfalsefalsefalse52af2670-deef-4b9f-789d-5eaaa9fcba27100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:31:8dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3000:50:56:ab:31:8dtrue4000172.16.3.3024dhcppreferrednameassignDC3_C1_RP7_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc0c8-5d75-29e1-7efd-c427722b2e14summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM1/DC3_C1_RP7_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:14.996946Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-663entervm-664availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM2/DC3_C1_RP7_VM2.vmdkdatastore-516persistentfalsefalsefalse5271fa80-d585-879b-119e-338d0e4b6085100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:89:d7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3100:50:56:ab:89:d7true4000172.16.3.3124dhcppreferrednameassignDC3_C1_RP7_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4f20-7420-1c69-7e3c-e91f4e1d7084summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM2/DC3_C1_RP7_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.041273Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-664entervm-662availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM0/DC3_C1_RP7_VM0.vmdkdatastore-516persistentfalsefalsefalse52449cf7-211b-e1cf-abbe-2b799a6d6eac100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:a1:33falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2900:50:56:ab:a1:33true4000172.16.3.2924dhcppreferrednameassignDC3_C1_RP7_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf38b-6074-87f1-7ec5-f84409554440summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM0/DC3_C1_RP7_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:14.920197Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-662entervm-575availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM0/DC3_C0_RP6_VM0.vmdkdatastore-516persistentfalsefalsefalse5225324e-7da4-16ef-8414-9f1be3bd43b5100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:a6:9bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20700:50:56:ab:a6:9btrue4000172.16.2.20724dhcppreferrednameassignDC3_C0_RP6_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc9b4-a6c2-7b69-2da5-ad0ee2f0db17summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM0/DC3_C0_RP6_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.559396Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-575entervm-669availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM7/DC3_C1_RP7_VM7.vmdkdatastore-516persistentfalsefalsefalse52439479-a55c-1ea1-94f3-9cf3645536fb100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:fd:f2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3600:50:56:ab:fd:f2true4000172.16.3.3624dhcppreferrednameassignDC3_C1_RP7_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b7fb8-e331-e735-1fe1-5844b2382c3asummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM7/DC3_C1_RP7_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.270091Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-669entervm-576availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM1/DC3_C0_RP6_VM1.vmdkdatastore-516persistentfalsefalsefalse5217fc70-63d8-4e6d-e16a-109247723f85100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:d3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20800:50:56:ab:af:d3true4000172.16.2.20824dhcppreferrednameassignDC3_C0_RP6_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6b2d-5382-c09a-4f97-bd36db839fb1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM1/DC3_C0_RP6_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.583276Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-576entervm-577availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM2/DC3_C0_RP6_VM2.vmdkdatastore-516persistentfalsefalsefalse52a74ba5-fde2-bdf3-c5f2-fa7d588cb1dc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:66:cbfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.20900:50:56:ab:66:cbtrue4000172.16.2.20924dhcppreferrednameassignDC3_C0_RP6_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9e0e-24b0-fd33-ec30-549ff4bf0657summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM2/DC3_C0_RP6_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.598668Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-577entervm-667availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM5/DC3_C1_RP7_VM5.vmdkdatastore-516persistentfalsefalsefalse52d9601f-6738-fe7e-1f20-ee71ae2d6004100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8c:d2falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3400:50:56:ab:8c:d2true4000172.16.3.3424dhcppreferrednameassignDC3_C1_RP7_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1fec-cfa6-fae6-5430-1fa630ce9471summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM5/DC3_C1_RP7_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.182562Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-667entervm-578availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM3/DC3_C0_RP6_VM3.vmdkdatastore-516persistentfalsefalsefalse522bee6b-38bd-4efe-d125-04e56b568e44100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:b6:f7falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21000:50:56:ab:b6:f7true4000172.16.2.21024dhcppreferrednameassignDC3_C0_RP6_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc979-7eac-83ec-7df3-7bc769f1e741summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM3/DC3_C0_RP6_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.611058Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-578entervm-668availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP7_VM6/DC3_C1_RP7_VM6.vmdkdatastore-516persistentfalsefalsefalse523836e1-bea4-9d44-8bda-a8e684c67cce100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c5:96falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.3500:50:56:ab:c5:96true4000172.16.3.3524dhcppreferrednameassignDC3_C1_RP7_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-661snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP7_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f04-fffd-fb51-e66b-9f92fe035f1esummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP7_VM6/DC3_C1_RP7_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP7_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:10:15.251458Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-668entervm-579availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM4/DC3_C0_RP6_VM4.vmdkdatastore-516persistentfalsefalsefalse522e901c-62e4-cec1-654f-7a085702a7fe100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:07:3efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21100:50:56:ab:07:3etrue4000172.16.2.21124dhcppreferrednameassignDC3_C0_RP6_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc876-098c-1dea-ed0f-64d099f29c73summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM4/DC3_C0_RP6_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.632695Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-579entervm-651availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM7/DC3_C1_RP5_VM7.vmdkdatastore-516persistentfalsefalsefalse524f31ec-4be4-3b52-18d6-b12b4067703e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:9b:25falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.2000:50:56:ab:9b:25true4000172.16.3.2024dhcppreferrednameassignDC3_C1_RP5_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0f0c-7d51-e51d-7204-4b0a39fb1ef6summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM7/DC3_C1_RP5_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.736266Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-651entervm-580availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM5/DC3_C0_RP6_VM5.vmdkdatastore-516persistentfalsefalsefalse52f7ab32-a594-a7f1-d0b7-c8aca42f6053100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:61:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21200:50:56:ab:61:cdtrue4000172.16.2.21224dhcppreferrednameassignDC3_C0_RP6_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b57af-bf07-0640-3798-bd8d4f5eec4bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM5/DC3_C0_RP6_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.646108Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-580entervm-581availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM6/DC3_C0_RP6_VM6.vmdkdatastore-516persistentfalsefalsefalse525ff207-b15a-9560-5815-cc29184031b2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:51:1afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21300:50:56:ab:51:1atrue4000172.16.2.21324dhcppreferrednameassignDC3_C0_RP6_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b89b5-5047-0b82-5b39-a92856315348summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM6/DC3_C0_RP6_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.662461Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-581entervm-582availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP6_VM7/DC3_C0_RP6_VM7.vmdkdatastore-516persistentfalsefalsefalse52155438-30ae-e4a2-9124-18c24b78d22b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:93:32falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.21400:50:56:ab:93:32true4000172.16.2.21424dhcppreferrednameassignDC3_C0_RP6_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-574snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP6_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf0a2-ae26-54f7-aeaf-783b5abb923esummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP6_VM7/DC3_C0_RP6_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP6_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:14.677239Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-582entervm-647availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM3/DC3_C1_RP5_VM3.vmdkdatastore-516persistentfalsefalsefalse52ab89d4-7c28-09aa-971c-140398668762100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f7:f6falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1600:50:56:ab:f7:f6true4000172.16.3.1624dhcppreferrednameassignDC3_C1_RP5_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b1cfb-142b-2845-abad-91620c3612fdsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM3/DC3_C1_RP5_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.671848Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-596summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-647entervm-648availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM4/DC3_C1_RP5_VM4.vmdkdatastore-516persistentfalsefalsefalse52f8f3b0-4186-bd09-14a9-59fc70710819100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:73:41falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1700:50:56:ab:73:41true4000172.16.3.1724dhcppreferrednameassignDC3_C1_RP5_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9a00-d703-044e-dd6c-9bd2cb00ee1bsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM4/DC3_C1_RP5_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.688121Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-648entervm-649availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM5/DC3_C1_RP5_VM5.vmdkdatastore-516persistentfalsefalsefalse52807916-7288-c084-3334-1d59df3464d2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ac:71falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1800:50:56:ab:ac:71true4000172.16.3.1824dhcppreferrednameassignDC3_C1_RP5_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8e24-a9c2-abb2-8099-5b3e032adbb2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM5/DC3_C1_RP5_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.704792Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-649entervm-546availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM7/DC3_C0_RP2_VM7.vmdkdatastore-516persistentfalsefalsefalse52422140-49e0-9c69-22ca-83b2fb80b751100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:f9:2bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18200:50:56:ab:f9:2btrue4000172.16.2.18224dhcppreferrednameassignDC3_C0_RP2_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bd689-2451-ba9b-0dfc-8630b9857163summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM7/DC3_C0_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.319538Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-546entervm-650availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM6/DC3_C1_RP5_VM6.vmdkdatastore-516persistentfalsefalsefalse522b3e5f-cd55-66f8-0fb5-5980b1d73f5b100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:52:5dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1900:50:56:ab:52:5dtrue4000172.16.3.1924dhcppreferrednameassignDC3_C1_RP5_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f5d-82a2-3214-90b4-52f3db224f3dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM6/DC3_C1_RP5_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.719934Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-650entervm-545availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM6/DC3_C0_RP2_VM6.vmdkdatastore-516persistentfalsefalsefalse5215e025-5ab0-f185-5ce7-d5ae5391335c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:18:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18100:50:56:ab:18:e0true4000172.16.2.18124dhcppreferrednameassignDC3_C0_RP2_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b36c6-2407-70a1-7082-ba9c934199a1summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM6/DC3_C0_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.291811Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-545entervm-544availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM5/DC3_C0_RP2_VM5.vmdkdatastore-516persistentfalsefalsefalse52272481-3b48-2c87-6b62-535e36b67fb1100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8a:fafalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.18000:50:56:ab:8a:fatrue4000172.16.2.18024dhcppreferrednameassignDC3_C0_RP2_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b0312-db97-75d4-995f-6b1c531adb83summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM5/DC3_C0_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.267201Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-544entervm-644availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM0/DC3_C1_RP5_VM0.vmdkdatastore-516persistentfalsefalsefalse52080b67-6ba2-6292-7b1b-10fe27f62696100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:22:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1300:50:56:ab:22:f3true4000172.16.3.1324dhcppreferrednameassignDC3_C1_RP5_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8237-94da-4cef-42d5-681db624d7dfsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM0/DC3_C1_RP5_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.60727Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-644entervm-609availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM1/DC3_C1_RP1_VM1.vmdkdatastore-516persistentfalsefalsefalse52234a17-530d-18f1-3b8e-5051038b7396100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8c:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23600:50:56:ab:8c:2atrue4000172.16.2.23624dhcppreferrednameassignDC3_C1_RP1_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5901-9327-60b2-1f74-583d9196e6eesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM1/DC3_C1_RP1_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.067396Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-609entervm-543availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM4/DC3_C0_RP2_VM4.vmdkdatastore-516persistentfalsefalsefalse528c704a-5e9e-5a60-e29d-024e8e6da05c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:dc:8ffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17900:50:56:ab:dc:8ftrue4000172.16.2.17924dhcppreferrednameassignDC3_C0_RP2_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422befc7-8f72-a9d3-b263-73db24630612summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM4/DC3_C0_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.2315Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-543entervm-645availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM1/DC3_C1_RP5_VM1.vmdkdatastore-516persistentfalsefalsefalse526bbba8-e252-bcfd-7458-7fb32726f0cf100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:4d:4dfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1400:50:56:ab:4d:4dtrue4000172.16.3.1424dhcppreferrednameassignDC3_C1_RP5_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b47df-c565-2fcd-a7fa-e5fdfcafdc08summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM1/DC3_C1_RP5_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.629596Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-645entervm-610availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM2/DC3_C1_RP1_VM2.vmdkdatastore-516persistentfalsefalsefalse5245d864-4822-bd96-65fb-49aa540694ad100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:43:c1falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23700:50:56:ab:43:c1true4000172.16.2.23724dhcppreferrednameassignDC3_C1_RP1_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8e77-f4aa-3f51-20e1-e948c19012b2summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM2/DC3_C1_RP1_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.099462Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-610entervm-542availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM3/DC3_C0_RP2_VM3.vmdkdatastore-516persistentfalsefalsefalse52e3a387-9b74-2735-89e3-4faf846b3bcc100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ba:62falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17800:50:56:ab:ba:62true4000172.16.2.17824dhcppreferrednameassignDC3_C0_RP2_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b4a5d-b00f-788d-2b0a-8618657992dasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM3/DC3_C0_RP2_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.200362Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-542entervm-646availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP5_VM2/DC3_C1_RP5_VM2.vmdkdatastore-516persistentfalsefalsefalse52d51a78-df60-8ddb-b9cc-e2da34cff354100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:84:8afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.3.1500:50:56:ab:84:8atrue4000172.16.3.1524dhcppreferrednameassignDC3_C1_RP5_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-643snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP5_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b8ee3-4c61-aebf-f708-f6b14ffa5eccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP5_VM2/DC3_C1_RP5_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP5_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:47.651547Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-594summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-646entervm-541availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM2/DC3_C0_RP2_VM2.vmdkdatastore-516persistentfalsefalsefalse522bebdb-7890-c556-30c6-d9ce66ec451f100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:c8:5efalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17700:50:56:ab:c8:5etrue4000172.16.2.17724dhcppreferrednameassignDC3_C0_RP2_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bad6f-c7cc-acfc-4d8d-4c01a61e90ccsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM2/DC3_C0_RP2_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.168775Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-519summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-541entervm-608availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP1_VM0/DC3_C1_RP1_VM0.vmdkdatastore-516persistentfalsefalsefalse52f814b1-df6a-a849-ee64-0d4483ffda3a100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:ae:7bfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.23500:50:56:ab:ae:7btrue4000172.16.2.23524dhcppreferrednameassignDC3_C1_RP1_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-607snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP1_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc2c7-48ef-03ff-89fc-755709288763summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP1_VM0/DC3_C1_RP1_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP1_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:30.04628Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-608entervm-540availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP2_VM1/DC3_C0_RP2_VM1.vmdkdatastore-516persistentfalsefalsefalse52df12c3-84a9-e881-5eb0-7651d9e09040100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:75:e0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.17600:50:56:ab:75:e0true4000172.16.2.17624dhcppreferrednameassignDC3_C0_RP2_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-538snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP2_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc14d-fed2-4cbf-e8f4-0f941de82849summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP2_VM1/DC3_C0_RP2_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP2_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:01.144167Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-540entervm-524availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM3/DC3_C0_RP0_VM3.vmdkdatastore-516persistentfalsefalsefalse5228cff5-b0d7-8ab9-472a-f707a32ed445100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:49:57falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16200:50:56:ab:49:57true4000172.16.2.16224dhcppreferrednameassignDC3_C0_RP0_VM3parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM3summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baa05-bfee-21d6-5821-dc2009b8223dsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM3/DC3_C0_RP0_VM3.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM3summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.73006Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-515summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-524entervm-523availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM2/DC3_C0_RP0_VM2.vmdkdatastore-516persistentfalsefalsefalse520ab2ac-e8c0-e8a5-3cee-daf8732e69d7100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:97:d0falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16100:50:56:ab:97:d0true4000172.16.2.16124dhcppreferrednameassignDC3_C0_RP0_VM2parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM2summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b6c5f-52d0-7184-d2f9-0142b92f5516summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM2/DC3_C0_RP0_VM2.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM2summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.711385Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-523entervm-526availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM5/DC3_C0_RP0_VM5.vmdkdatastore-516persistentfalsefalsefalse526f62c6-4ab5-432c-ff86-a321ef448986100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:ba:cdfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16400:50:56:ab:ba:cdtrue4000172.16.2.16424dhcppreferrednameassignDC3_C0_RP0_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baee1-3cd8-ed35-3eb3-22379d5b8b01summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM5/DC3_C0_RP0_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.758726Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-526entervm-525availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM4/DC3_C0_RP0_VM4.vmdkdatastore-516persistentfalsefalsefalse52fc03b3-539b-b892-07a8-71d2c3aad8df100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:33:fefalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16300:50:56:ab:33:fetrue4000172.16.2.16324dhcppreferrednameassignDC3_C0_RP0_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b3d6a-faa2-27d1-39bd-36b7c89719fasummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM4/DC3_C0_RP0_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.748512Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-525entervm-624availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM7/DC3_C1_RP2_VM7.vmdkdatastore-516persistentfalsefalsefalse523c7b41-c090-fe96-97de-b18fca590c85100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:59:58falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.25000:50:56:ab:59:58true4000172.16.2.25024dhcppreferrednameassignDC3_C1_RP2_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bc302-a20d-ec68-0f94-15e014256fffsummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM7/DC3_C1_RP2_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.072843Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-624entervm-528availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM7/DC3_C0_RP0_VM7.vmdkdatastore-516persistentfalsefalsefalse52596b4d-250a-91c5-38a9-c27dbd5e6be4100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:af:2afalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16600:50:56:ab:af:2atrue4000172.16.2.16624dhcppreferrednameassignDC3_C0_RP0_VM7parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM7summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422baf3a-2b6e-2b7f-523e-655fbcca16d6summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM7/DC3_C0_RP0_VM7.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM7summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.788083Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-528entervm-623availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM6/DC3_C1_RP2_VM6.vmdkdatastore-516persistentfalsefalsefalse5234183b-a4be-3972-b6c9-b850c2f683b6100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:98:ebfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24900:50:56:ab:98:ebtrue4000172.16.2.24924dhcppreferrednameassignDC3_C1_RP2_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2e8c-b709-a385-b614-f7f565fb9f2csummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM6/DC3_C1_RP2_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.061852Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-623entervm-527availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM6/DC3_C0_RP0_VM6.vmdkdatastore-516persistentfalsefalsefalse525e7035-961a-f510-a4f4-49a1ed13d83c100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:80:9cfalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16500:50:56:ab:80:9ctrue4000172.16.2.16524dhcppreferrednameassignDC3_C0_RP0_VM6parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM6summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9915-a733-c3f5-66c2-d93c466e081asummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM6/DC3_C0_RP0_VM6.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM6summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.769217Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-527entervm-622availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM5/DC3_C1_RP2_VM5.vmdkdatastore-516persistentfalsefalsefalse529e2ce0-993d-e2b7-dc7d-0d7443473fc2100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:d3:11falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24800:50:56:ab:d3:11true4000172.16.2.24824dhcppreferrednameassignDC3_C1_RP2_VM5parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM5summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422bf2cf-6768-0c75-ddb8-0c68906364a5summary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM5/DC3_C1_RP2_VM5.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM5summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.05133Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-595summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-622entervm-621availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C1_RP2_VM4/DC3_C1_RP2_VM4.vmdkdatastore-516persistentfalsefalsefalse52c69903-dd98-d4f1-2fb8-2af427979552100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:42:f3falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.24700:50:56:ab:42:f3true4000172.16.2.24724dhcppreferrednameassignDC3_C1_RP2_VM4parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-616snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C1_RP2_VM4summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b2888-7ffb-5d61-03cb-9b44542cafaesummary.config.vmPathNameassign[GlobalDS_0] DC3_C1_RP2_VM4/DC3_C1_RP2_VM4.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C1_RP2_VM4summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:09:44.03304Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-597summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-621entervm-522availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM1/DC3_C0_RP0_VM1.vmdkdatastore-516persistentfalsefalsefalse52e665a9-2ed7-956d-7fd5-ecfbba58209e100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-512truetruetrue1003Assigned00:50:56:ab:8b:44falseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.16000:50:56:ab:8b:44true4000172.16.2.16024dhcppreferrednameassignDC3_C0_RP0_VM1parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM1summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b9f1c-dc74-d706-061d-a8f12dc24cfdsummary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM1/DC3_C0_RP0_VM1.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM1summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.692278Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-517summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-522entervm-521availableFieldassignconfig.cpuAffinity.affinitySetindirectRemoveconfig.cpuHotAddEnabledassignconfig.cpuHotRemoveEnabledassignconfig.defaultPowerOps.standbyActionassigncheckpointconfig.hardware.deviceassign100PCI controller 005001200010004000200IDE 00201IDE 11300PS2 controller 00600700400SIO controller 00500Video card10004096falsefalse600Keyboard3000700Pointing device; Devicefalseautodetect300112000Device on the virtual machine PCI bus that provides support for the virtual machine communication interface10017-1false1000LSI Logic SAS100202000noSharing72000524,288 KB[GlobalDS_0] DC3_C0_RP0_VM0/DC3_C0_RP0_VM0.vmdkdatastore-516persistentfalsefalsefalse522f9d21-83b5-2d17-01af-9a7400c71759100005242884000DVSwitch: 02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 6802 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68dvportgroup-511truetruetrue1003Assigned00:50:56:ab:eb:fffalseconfig.hardware.numCoresPerSocketassignconfig.hotPlugMemoryIncrementSizeassignconfig.hotPlugMemoryLimitassignconfig.memoryHotAddEnabledassignconfig.versionassignvmx-07datastoreassigndatastore-516guest.netassign172.16.2.15900:50:56:ab:eb:fftrue4000172.16.2.15924dhcppreferrednameassignDC3_C0_RP0_VM0parentassigngroup-v504resourceConfig.cpuAllocation.expandableReservationassignresourceConfig.cpuAllocation.limitassign-1resourceConfig.cpuAllocation.reservationassign0resourceConfig.cpuAllocation.shares.levelassignnormalresourceConfig.cpuAllocation.shares.sharesassign1000resourceConfig.memoryAllocation.expandableReservationassignresourceConfig.memoryAllocation.limitassign-1resourceConfig.memoryAllocation.reservationassign0resourceConfig.memoryAllocation.shares.levelassignnormalresourceConfig.memoryAllocation.shares.sharesassign640resourcePoolassignresgroup-520snapshotassignsummary.config.annotationassignsummary.config.ftInfo.instanceUuidsindirectRemovesummary.config.guestFullNameassignMicrosoft Windows Server 2003 Standard (32-bit)summary.config.guestIdassignwinNetStandardGuestsummary.config.memorySizeMBassign64summary.config.nameassignDC3_C0_RP0_VM0summary.config.numCpuassign1summary.config.templateassignfalsesummary.config.uuidassign422b5576-2861-a75f-f0d9-077695b24d33summary.config.vmPathNameassign[GlobalDS_0] DC3_C0_RP0_VM0/DC3_C0_RP0_VM0.vmxsummary.customValueassignsummary.guest.hostNameassignDC3_C0_RP0_VM0summary.guest.ipAddressassignsummary.guest.toolsStatusassigntoolsNotInstalledsummary.runtime.bootTimeassign2018-04-25T13:08:58.6678Zsummary.runtime.connectionStateassignconnectedsummary.runtime.hostassignhost-518summary.runtime.powerStateassignpoweredOnsummary.storage.committedassign67108864summary.storage.unsharedassign67108864summary.vmassignvm-521enterdvportgroup-510config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse04094false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalsefalsefalsefalsefalsefalsefalsetruefalsefalsefalsefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-510config.nameassignDC3_DVS-DVUplinks-509hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVS-DVUplinks-509parentassigngroup-n507summary.nameassignDC3_DVS-DVUplinks-509tagassignSYSTEM/DVS.UPLINKPGenterdvportgroup-512config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse2true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-512config.nameassignDC3_DVPG1hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVPG1parentassigngroup-n507summary.nameassignDC3_DVPG1tagassignenterdvportgroup-511config.defaultPortConfigassigntruefalsetruefalsetruetruefalsetrue100000000true100000000true104857600truetruefalsetrue100000000true100000000true104857600truetrue-1truefalse1true-1truetrueloadbalance_srcidtruetruetruetruetruefalsetruetrueminimumtrue10truefalsetruefalsetruefalsetrue0truefalsetrueuplink1uplink2uplink3uplink4truetruefalsetruefalsetruefalsetruefalsetruefalsetruetruefalsetruepassiveconfig.distributedVirtualSwitchassigndvs-509config.keyassigndvportgroup-511config.nameassignDC3_DVPG0hostassignhost-517host-594host-518host-595host-519host-596host-597host-515nameassignDC3_DVPG0parentassigngroup-n507summary.nameassignDC3_DVPG0tagassignenterdvs-509config.defaultPortConfigassignfalsefalsefalsefalsefalsefalsefalsefalse100000000false100000000false104857600falsefalsefalsefalse100000000false100000000false104857600falsefalse-1falsefalse0false-1falsefalseloadbalance_srcidfalsetruefalsetruefalsefalsefalsefalseminimumfalse10falsefalsefalsefalsefalsefalsefalse0falsefalsefalseuplink1uplink2uplink3uplink4falsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsefalsepassiveconfig.numPortsassign288config.uplinkPortgroupassigndvportgroup-510nameassignDC3_DVSparentassigngroup-n507summary.hostassignsummary.hostMemberassignhost-515host-517host-518host-519host-594host-595host-596host-597summary.nameassignDC3_DVSsummary.uuidassign02 3c 2b 50 3a 7c 21 5b-bd 09 cd 60 78 3e 41 68enternetwork-508nameassignVM Networkparentassigngroup-n507enterdomain-c592configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-594host-595host-596host-597nameassignDC3_C1parentassigngroup-h505resourcePoolassignresgroup-593summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdomain-c513configuration.dasConfig.admissionControlEnabledassigntrueconfiguration.dasConfig.admissionControlPolicyassign1configuration.dasConfig.enabledassignfalseconfiguration.dasConfig.failoverLevelassign1configuration.drsConfig.defaultVmBehaviorassignmanualconfiguration.drsConfig.enabledassigntrueconfiguration.drsConfig.vmotionRateassign3hostassignhost-515host-517host-518host-519nameassignDC3_C0parentassigngroup-h505resourcePoolassignresgroup-514summary.effectiveCpuassign47984summary.effectiveMemoryassign59872enterdatastore-516capability.directoryHierarchySupportedassigntruecapability.perFileThinProvisioningSupportedassigntruecapability.rawDiskMappingsSupportedassigntruehostassignhost-517/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-594/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-518/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-595/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-519/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-596/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-597/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetruehost-515/vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/readWritetruetrueinfoassignGlobalDS_0ds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/8246337208322748779069442011-03-08T00:06:01.432706Z1140006612423336VMFSGlobalDS_01099511627776126214433.335280a4c3-b5e2-7dc7-5c31-7a344d35466cmpx.vmhba1:C0:T0:L03falsenameassignGlobalDS_0parentassigngroup-s506summary.accessibleassigntruesummary.capacityassign1099511627776summary.datastoreassigndatastore-516summary.freeSpaceassign824633720832summary.maintenanceModeassignnormalsummary.multipleHostAccessassigntruesummary.nameassignGlobalDS_0summary.typeassignVMFSsummary.uncommittedassignsummary.urlassignds:///vmfs/volumes/5280a4c3-b5e2-7dc7-5c31-7a344d35466c/enterresgroup-92nameassignResourcesparentassigndomain-c91resourcePoolassignresgroup-133resgroup-142resgroup-115resgroup-151resgroup-124resgroup-160resgroup-97resgroup-106summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-96config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:08Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H3parentassigndomain-c91summary.config.nameassignDC0_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-96summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-95config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:07Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H2parentassigndomain-c91summary.config.nameassignDC0_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-95summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-94config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:06Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H1parentassigndomain-c91summary.config.nameassignDC0_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-94summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-93config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:05Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C1_H0parentassigndomain-c91summary.config.nameassignDC0_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-93summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-13nameassignResourcesparentassigndomain-c12resourcePoolassignresgroup-82resgroup-37resgroup-19resgroup-46resgroup-28resgroup-55resgroup-64resgroup-73summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-18config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:04Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H3parentassigndomain-c12summary.config.nameassignDC0_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-18summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-17config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:03Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H2parentassigndomain-c12summary.config.nameassignDC0_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-17summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-16config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:02Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H1parentassigndomain-c12summary.config.nameassignDC0_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-16summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-14config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC0_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:01Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-15hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC0_C0_H0parentassigndomain-c12summary.config.nameassignDC0_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-14summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-259nameassignResourcesparentassigndomain-c258resourcePoolassignresgroup-282resgroup-327resgroup-273resgroup-264resgroup-318resgroup-309resgroup-300resgroup-291summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-263config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:10Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H3parentassigndomain-c258summary.config.nameassignDC1_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-263summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-262config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H2parentassigndomain-c258summary.config.nameassignDC1_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-262summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-261config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H1parentassigndomain-c258summary.config.nameassignDC1_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-261summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-260config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C1_H0parentassigndomain-c258summary.config.nameassignDC1_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-260summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-180nameassignResourcesparentassigndomain-c179resourcePoolassignresgroup-231resgroup-222resgroup-249resgroup-240resgroup-195resgroup-186resgroup-213resgroup-204summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-185config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H3parentassigndomain-c179summary.config.nameassignDC1_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-185summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-184config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H2parentassigndomain-c179summary.config.nameassignDC1_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-184summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-183config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:0AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H1parentassigndomain-c179summary.config.nameassignDC1_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-183summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-181config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC1_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:09Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-182hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC1_C0_H0parentassigndomain-c179summary.config.nameassignDC1_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-181summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-426nameassignResourcesparentassigndomain-c425resourcePoolassignresgroup-467resgroup-458resgroup-449resgroup-494resgroup-440resgroup-485resgroup-431resgroup-476summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-430config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:18Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H3parentassigndomain-c425summary.config.nameassignDC2_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-430summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-429config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:17Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H2parentassigndomain-c425summary.config.nameassignDC2_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-429summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-428config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:16Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H1parentassigndomain-c425summary.config.nameassignDC2_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-428summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-427config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:15Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C1_H0parentassigndomain-c425summary.config.nameassignDC2_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-427summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-347nameassignResourcesparentassigndomain-c346resourcePoolassignresgroup-407resgroup-380resgroup-371resgroup-362resgroup-398resgroup-353resgroup-389resgroup-416summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-352config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:14Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H3parentassigndomain-c346summary.config.nameassignDC2_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-352summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-351config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:13Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H2parentassigndomain-c346summary.config.nameassignDC2_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-351summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-350config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:12Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H1parentassigndomain-c346summary.config.nameassignDC2_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-350summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-348config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC2_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:11Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-349hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC2_C0_H0parentassigndomain-c346summary.config.nameassignDC2_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-348summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-593nameassignResourcesparentassigndomain-c592resourcePoolassignresgroup-643resgroup-652resgroup-625resgroup-634resgroup-607resgroup-598resgroup-616resgroup-661summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-597config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:20Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H3parentassigndomain-c592summary.config.nameassignDC3_C1_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-597summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-596config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1FManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H2parentassigndomain-c592summary.config.nameassignDC3_C1_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-596summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-595config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1EManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H1parentassigndomain-c592summary.config.nameassignDC3_C1_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-595summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-594config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C1_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1DManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C1_H0parentassigndomain-c592summary.config.nameassignDC3_C1_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-594summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalsetrue http_version: - recorded_at: Thu, 03 May 2018 18:08:00 GMT + recorded_at: Mon, 07 May 2018 16:15:33 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -584,7 +584,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -598,7 +598,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:08:00 GMT + - Mon, 7 May 2018 16:15:34 GMT Cache-Control: - no-cache Connection: @@ -618,11 +618,11 @@ http_interactions: xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - 1session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269enterresgroup-514nameassignResourcesparentassigndomain-c513resourcePoolassignresgroup-565resgroup-556resgroup-547resgroup-538resgroup-529resgroup-520resgroup-583resgroup-574summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-519config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H3parentassigndomain-c513summary.config.nameassignDC3_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-519summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-518config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H2parentassigndomain-c513summary.config.nameassignDC3_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-518summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-517config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H1parentassigndomain-c513summary.config.nameassignDC3_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-517summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-515config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:19Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H0parentassigndomain-c513summary.config.nameassignDC3_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-515summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-106nameassignDC0_C1_RP1parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-114vm-113vm-109vm-108vm-112vm-111vm-107vm-110enterresgroup-97nameassignDC0_C1_RP0parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-100vm-101vm-105vm-98vm-102vm-99vm-103vm-104enterresgroup-160nameassignDC0_C1_RP7parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-168vm-163vm-167vm-164vm-165vm-162vm-161vm-166enterresgroup-124nameassignDC0_C1_RP3parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-127vm-126vm-125vm-129vm-132vm-131vm-128vm-130enterresgroup-151nameassignDC0_C1_RP6parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-158vm-155vm-154vm-153vm-152vm-159vm-156vm-157enterresgroup-115nameassignDC0_C1_RP2parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-121vm-122vm-119vm-116vm-120vm-118vm-117vm-123enterresgroup-142nameassignDC0_C1_RP5parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-148vm-150vm-143vm-144vm-147vm-145vm-146vm-149enterresgroup-133nameassignDC0_C1_RP4parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-134vm-141vm-140vm-136vm-138vm-137vm-139vm-135enterresgroup-73nameassignDC0_C0_RP6parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-81vm-77vm-80vm-75vm-74vm-79vm-78vm-76enterresgroup-64nameassignDC0_C0_RP5parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-72vm-67vm-71vm-69vm-66vm-70vm-68vm-65enterresgroup-55nameassignDC0_C0_RP4parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-63vm-62vm-61vm-60vm-58vm-56vm-59vm-57enterresgroup-28nameassignDC0_C0_RP1parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-35vm-34vm-36vm-31vm-30vm-32vm-29vm-33enterresgroup-46nameassignDC0_C0_RP3parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-54vm-47vm-53vm-49vm-50vm-48vm-52vm-51enterresgroup-19nameassignDC0_C0_RP0parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-24vm-23vm-25vm-26vm-22vm-21vm-27vm-20enterresgroup-37nameassignDC0_C0_RP2parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-44vm-41vm-45vm-40vm-43vm-42vm-38vm-39enterresgroup-82nameassignDC0_C0_RP7parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-84vm-88vm-83vm-85vm-89vm-86vm-90vm-87enterresgroup-291nameassignDC1_C1_RP3parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-294vm-293vm-296vm-299vm-298vm-297vm-295vm-292enterresgroup-300nameassignDC1_C1_RP4parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-306vm-307vm-305vm-308vm-303vm-301vm-304vm-302enterresgroup-309nameassignDC1_C1_RP5parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-313vm-311vm-314vm-316vm-315vm-310vm-317vm-312enterresgroup-318nameassignDC1_C1_RP6parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-326vm-320vm-322vm-319vm-321vm-325vm-324vm-323enterresgroup-264nameassignDC1_C1_RP0parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-270vm-272vm-271vm-266vm-267vm-269vm-268vm-265enterresgroup-273nameassignDC1_C1_RP1parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-281vm-275vm-274vm-278vm-276vm-280vm-277vm-279enterresgroup-327nameassignDC1_C1_RP7parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-333vm-332vm-330vm-335vm-331vm-334vm-329vm-328enterresgroup-282nameassignDC1_C1_RP2parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-285vm-286vm-288vm-283vm-284vm-289vm-290vm-287enterresgroup-204nameassignDC1_C0_RP2parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-208vm-206vm-212vm-210vm-205vm-207vm-209vm-211enterresgroup-213nameassignDC1_C0_RP3parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-218vm-215vm-220vm-214vm-219vm-217vm-221vm-216enterresgroup-186nameassignDC1_C0_RP0parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-188vm-191vm-190vm-193vm-187vm-189vm-194vm-192enterresgroup-195nameassignDC1_C0_RP1parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-202vm-199vm-196vm-203vm-198vm-197vm-200vm-201enterresgroup-240nameassignDC1_C0_RP6parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-241vm-247vm-245vm-246vm-248vm-242vm-243vm-244enterresgroup-249nameassignDC1_C0_RP7parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-253vm-250vm-256vm-255vm-252vm-251vm-254vm-257enterresgroup-222nameassignDC1_C0_RP4parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-227vm-225vm-223vm-229vm-228vm-224vm-226vm-230enterresgroup-231nameassignDC1_C0_RP5parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-239vm-233vm-232vm-236vm-234vm-235vm-238vm-237enterresgroup-476nameassignDC2_C1_RP5parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-481vm-484vm-478vm-479vm-477vm-483vm-482vm-480enterresgroup-431nameassignDC2_C1_RP0parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-432vm-434vm-433vm-437vm-438vm-439vm-435vm-436enterresgroup-485nameassignDC2_C1_RP6parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-488vm-489vm-486vm-493vm-492vm-487vm-491vm-490enterresgroup-440nameassignDC2_C1_RP1parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-443vm-445vm-448vm-447vm-441vm-446vm-444vm-442enterresgroup-494nameassignDC2_C1_RP7parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-500vm-497vm-499vm-496vm-501vm-502vm-498vm-495enterresgroup-449nameassignDC2_C1_RP2parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-453vm-450vm-457vm-454vm-456vm-451vm-455vm-452enterresgroup-458nameassignDC2_C1_RP3parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-464vm-460vm-462vm-463vm-465vm-459vm-466vm-461enterresgroup-467nameassignDC2_C1_RP4parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-469vm-474vm-471vm-470vm-468vm-473vm-475vm-472enterresgroup-416nameassignDC2_C0_RP7parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-421vm-423vm-420vm-424vm-417vm-418vm-422vm-419enterresgroup-389nameassignDC2_C0_RP4parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-396vm-392vm-390vm-397vm-395vm-393vm-391vm-394enterresgroup-353nameassignDC2_C0_RP0parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-355vm-361vm-357vm-356vm-360vm-358vm-359vm-354enterresgroup-398nameassignDC2_C0_RP5parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-400vm-403vm-406vm-402vm-401vm-405vm-404vm-399enterresgroup-362nameassignDC2_C0_RP1parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-365vm-370vm-367vm-366vm-364vm-369vm-363vm-368enterresgroup-371nameassignDC2_C0_RP2parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-377vm-375vm-372vm-379vm-378vm-376vm-374vm-373enterresgroup-380nameassignDC2_C0_RP3parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-386vm-383vm-381vm-385vm-388vm-387vm-384vm-382enterresgroup-407nameassignDC2_C0_RP6parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-412vm-413vm-408vm-411vm-415vm-414vm-410vm-409enterresgroup-661nameassignDC3_C1_RP7parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-665vm-663vm-662vm-664vm-668vm-667vm-669vm-666enterresgroup-616nameassignDC3_C1_RP2parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-617vm-622vm-624vm-623vm-620vm-618vm-621vm-619enterresgroup-598nameassignDC3_C1_RP0parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-604vm-606vm-600vm-602vm-601vm-599vm-605vm-603enterresgroup-607nameassignDC3_C1_RP1parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-614vm-610vm-615vm-609vm-608vm-613vm-612vm-611enterresgroup-634nameassignDC3_C1_RP4parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-635vm-641vm-640vm-639vm-642vm-636vm-638vm-637enterresgroup-625nameassignDC3_C1_RP3parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-629vm-631vm-628vm-632vm-626vm-633vm-627vm-630enterresgroup-652nameassignDC3_C1_RP6parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-659vm-660vm-658vm-655vm-653vm-654vm-657vm-656enterresgroup-643nameassignDC3_C1_RP5parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-650vm-648vm-647vm-646vm-645vm-644vm-649vm-651enterresgroup-574nameassignDC3_C0_RP6parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-580vm-582vm-576vm-577vm-581vm-579vm-578vm-575enterresgroup-583nameassignDC3_C0_RP7parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-588vm-591vm-586vm-587vm-584vm-590vm-589vm-585enterresgroup-520nameassignDC3_C0_RP0parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-523vm-528vm-524vm-527vm-525vm-522vm-521vm-526enterresgroup-529nameassignDC3_C0_RP1parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-537vm-532vm-534vm-531vm-530vm-536vm-535vm-533enterresgroup-538nameassignDC3_C0_RP2parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-543vm-540vm-541vm-546vm-542vm-539vm-544vm-545enterresgroup-547nameassignDC3_C0_RP3parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-554vm-555vm-553vm-548vm-552vm-549vm-551vm-550enterresgroup-556nameassignDC3_C0_RP4parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-562vm-558vm-559vm-557vm-564vm-563vm-560vm-561enterresgroup-565nameassignDC3_C0_RP5parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-572vm-566vm-573vm-569vm-567vm-571vm-570vm-568 + 1session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6benterresgroup-514nameassignResourcesparentassigndomain-c513resourcePoolassignresgroup-565resgroup-556resgroup-547resgroup-538resgroup-529resgroup-520resgroup-583resgroup-574summary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign47984summary.config.cpuAllocation.reservationassign47984summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign59872summary.config.memoryAllocation.reservationassign59872summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignenterhost-519config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H3config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1CManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H3parentassigndomain-c513summary.config.nameassignDC3_C0_H3summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-519summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-518config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H2config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1BManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H2parentassigndomain-c513summary.config.nameassignDC3_C0_H2summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-518summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-517config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H1config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:1AManagement Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H1parentassigndomain-c513summary.config.nameassignDC3_C0_H1summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-517summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterhost-515config.adminDisabledassignfalseconfig.consoleReservation.serviceConsoleReservedindirectRemoveconfig.hyperThread.activeassignfalseconfig.network.consoleVnicassignconfig.network.dnsConfig.domainNameassigneng.vmware.comconfig.network.dnsConfig.hostNameassignDC3_C0_H0config.network.ipRouteConfig.defaultGatewayassign10.17.39.253config.network.pnicassignkey-vim.host.PhysicalNic-vmnic0vmnic003:00.0bnx21000truetrue1000truetruekey-vim.host.PhysicalNic-vmnic1vmnic105:00.0bnx21000truetrue1000truetrueconfig.network.portgroupassignkey-vim.host.PortGroup-VM Networkkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseVM Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalsekey-vim.host.PortGroup-Management Networkkey-vim.host.PortGroup.Port-1hostkey-vim.host.VirtualSwitch-vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseManagement Network0vSwitch0falsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalseconfig.network.vnicassignvmk0key-vim.host.VirtualNic-vmk0Management Networktrue00:00:00:00:00:19Management Network1500truekey-vim.host.PortGroup.Port-1config.network.vswitchassignvSwitch0key-vim.host.VirtualSwitch-vSwitch064641500key-vim.host.PortGroup-VM Networkkey-vim.host.PortGroup-Management Networkkey-vim.host.PhysicalNic-vmnic064vmnic01cdplistenfalsetruetrueloadbalance_srcidtruetruefalseminimum10falsefalsefalse0falsevmnic0truetruetruefalse1500config.service.serviceassignntpdfalsefalsetruentpClientautomaticvmware-vpxafalsefalsetruevpxHeartbeatautomaticconfig.storageDevice.hostBusAdapterassignkey-vim.host.BlockHba-vmhba0vmhba00unknown631xESB/632xESB IDE Controllerata_piix00:1f.1key-vim.host.BlockHba-vmhba1vmhba114unknownSmart Array P400cciss0e:00.0key-vim.host.BlockHba-vmhba32vmhba320unknown631xESB/632xESB IDE Controllerata_piix00:1f.1config.storageDevice.scsiLunassign/vmfs/devices/genscsi/mpx.vmhba0:C0:T0:L0cdromkey-vim.host.ScsiLun-0005000000766d686261303a303a300005000000766d686261303a303a30lowQualitympx.vmhba0:C0:T0:L0lowQualityvml.0005000000766d686261303a303a30lowQuality0005000000766d686261303a303a30mpx.vmhba0:C0:T0:L0Local HL-DT-ST CD-ROM (mpx.vmhba0:C0:T0:L0)cdromHL-DT-STDVD-ROM GDR-D10N3.005unavailable5-12855091000727645688445838468866845827977327168824568494878514648486566676665323232485447495047495732323232100000000000000000000000000000000000000000000000000000000000000000000000111000000001617160000001616000000160000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0diskkey-vim.host.ScsiDisk-0000000000766d686261313a303a300000000000766d686261313a303a30lowQualitympx.vmhba1:C0:T0:L0lowQualityvml.0000000000766d686261313a303a30lowQuality0000000000766d686261313a303a30mpx.vmhba1:C0:T0:L0Local VMware Disk (mpx.vmhba1:C0:T0:L0)diskVMware Block device 1.0 2unavailable00203200115867711997114101323266108111991073210010111810599101323232324946483200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000oktrue5121146734896/vmfs/devices/disks/mpx.vmhba1:C0:T0:L0config.storageDevice.scsiTopology.adapterassignkey-vim.host.ScsiTopology.Interface-vmhba0key-vim.host.BlockHba-vmhba0key-vim.host.ScsiTopology.Target-vmhba0:00key-vim.host.ScsiTopology.Lun-0005000000766d686261303a303a300key-vim.host.ScsiLun-0005000000766d686261303a303a30key-vim.host.ScsiTopology.Interface-vmhba1key-vim.host.BlockHba-vmhba1key-vim.host.ScsiTopology.Target-vmhba1:00key-vim.host.ScsiTopology.Lun-0000000000766d686261313a303a300key-vim.host.ScsiDisk-0000000000766d686261313a303a30key-vim.host.ScsiTopology.Interface-vmhba32key-vim.host.BlockHba-vmhba32datastoreassigndatastore-516hardware.systemInfo.otherIdentifyingInfoassign unknownAsset tag of the systemAssetTagnameassignDC3_C0_H0parentassigndomain-c513summary.config.nameassignDC3_C0_H0summary.config.product.buildassign5.0.0.19summary.config.product.nameassignVMware ESXsummary.config.product.osTypeassignvmnix-x86summary.config.product.vendorassignVMware, Inc.summary.config.product.versionassign5.0.0summary.config.vmotionEnabledassigntruesummary.hardware.cpuMhzassign2999summary.hardware.cpuModelassignIntel(R) Xeon(R) CPU 5160 @ 3.00GHzsummary.hardware.memorySizeassign17175269376summary.hardware.modelassignProLiant DL380 G5summary.hardware.numCpuCoresassign4summary.hardware.numCpuPkgsassign2summary.hardware.numNicsassign2summary.hardware.vendorassignHPsummary.hostassignhost-515summary.quickStats.overallCpuUsageassign0summary.quickStats.overallMemoryUsageassign0summary.runtime.connectionStateassignconnectedsummary.runtime.inMaintenanceModeassignfalseenterresgroup-106nameassignDC0_C1_RP1parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-114vm-113vm-109vm-108vm-112vm-111vm-107vm-110enterresgroup-97nameassignDC0_C1_RP0parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-100vm-101vm-105vm-98vm-102vm-99vm-103vm-104enterresgroup-160nameassignDC0_C1_RP7parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-168vm-163vm-167vm-164vm-165vm-162vm-161vm-166enterresgroup-124nameassignDC0_C1_RP3parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-127vm-126vm-125vm-129vm-132vm-131vm-128vm-130enterresgroup-151nameassignDC0_C1_RP6parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-158vm-155vm-154vm-153vm-152vm-159vm-156vm-157enterresgroup-115nameassignDC0_C1_RP2parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-121vm-122vm-119vm-116vm-120vm-118vm-117vm-123enterresgroup-142nameassignDC0_C1_RP5parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-148vm-150vm-143vm-144vm-147vm-145vm-146vm-149enterresgroup-133nameassignDC0_C1_RP4parentassignresgroup-92resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-134vm-141vm-140vm-136vm-138vm-137vm-139vm-135enterresgroup-73nameassignDC0_C0_RP6parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-81vm-77vm-80vm-75vm-74vm-79vm-78vm-76enterresgroup-64nameassignDC0_C0_RP5parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-72vm-67vm-71vm-69vm-66vm-70vm-68vm-65enterresgroup-55nameassignDC0_C0_RP4parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-63vm-62vm-61vm-60vm-58vm-56vm-59vm-57enterresgroup-28nameassignDC0_C0_RP1parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-35vm-34vm-36vm-31vm-30vm-32vm-29vm-33enterresgroup-46nameassignDC0_C0_RP3parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-54vm-47vm-53vm-49vm-50vm-48vm-52vm-51enterresgroup-19nameassignDC0_C0_RP0parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-24vm-23vm-25vm-26vm-22vm-21vm-27vm-20enterresgroup-37nameassignDC0_C0_RP2parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-44vm-41vm-45vm-40vm-43vm-42vm-38vm-39enterresgroup-82nameassignDC0_C0_RP7parentassignresgroup-13resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-84vm-88vm-83vm-85vm-89vm-86vm-90vm-87enterresgroup-291nameassignDC1_C1_RP3parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-294vm-293vm-296vm-299vm-298vm-297vm-295vm-292enterresgroup-300nameassignDC1_C1_RP4parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-306vm-307vm-305vm-308vm-303vm-301vm-304vm-302enterresgroup-309nameassignDC1_C1_RP5parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-313vm-311vm-314vm-316vm-315vm-310vm-317vm-312enterresgroup-318nameassignDC1_C1_RP6parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-326vm-320vm-322vm-319vm-321vm-325vm-324vm-323enterresgroup-264nameassignDC1_C1_RP0parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-270vm-272vm-271vm-266vm-267vm-269vm-268vm-265enterresgroup-273nameassignDC1_C1_RP1parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-281vm-275vm-274vm-278vm-276vm-280vm-277vm-279enterresgroup-327nameassignDC1_C1_RP7parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-333vm-332vm-330vm-335vm-331vm-334vm-329vm-328enterresgroup-282nameassignDC1_C1_RP2parentassignresgroup-259resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-285vm-286vm-288vm-283vm-284vm-289vm-290vm-287enterresgroup-204nameassignDC1_C0_RP2parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-208vm-206vm-212vm-210vm-205vm-207vm-209vm-211enterresgroup-213nameassignDC1_C0_RP3parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-218vm-215vm-220vm-214vm-219vm-217vm-221vm-216enterresgroup-186nameassignDC1_C0_RP0parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-188vm-191vm-190vm-193vm-187vm-189vm-194vm-192enterresgroup-195nameassignDC1_C0_RP1parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-202vm-199vm-196vm-203vm-198vm-197vm-200vm-201enterresgroup-240nameassignDC1_C0_RP6parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-241vm-247vm-245vm-246vm-248vm-242vm-243vm-244enterresgroup-249nameassignDC1_C0_RP7parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-253vm-250vm-256vm-255vm-252vm-251vm-254vm-257enterresgroup-222nameassignDC1_C0_RP4parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-227vm-225vm-223vm-229vm-228vm-224vm-226vm-230enterresgroup-231nameassignDC1_C0_RP5parentassignresgroup-180resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-239vm-233vm-232vm-236vm-234vm-235vm-238vm-237enterresgroup-476nameassignDC2_C1_RP5parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-481vm-484vm-478vm-479vm-477vm-483vm-482vm-480enterresgroup-431nameassignDC2_C1_RP0parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-432vm-434vm-433vm-437vm-438vm-439vm-435vm-436enterresgroup-485nameassignDC2_C1_RP6parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-488vm-489vm-486vm-493vm-492vm-487vm-491vm-490enterresgroup-440nameassignDC2_C1_RP1parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-443vm-445vm-448vm-447vm-441vm-446vm-444vm-442enterresgroup-494nameassignDC2_C1_RP7parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-500vm-497vm-499vm-496vm-501vm-502vm-498vm-495enterresgroup-449nameassignDC2_C1_RP2parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-453vm-450vm-457vm-454vm-456vm-451vm-455vm-452enterresgroup-458nameassignDC2_C1_RP3parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-464vm-460vm-462vm-463vm-465vm-459vm-466vm-461enterresgroup-467nameassignDC2_C1_RP4parentassignresgroup-426resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-469vm-474vm-471vm-470vm-468vm-473vm-475vm-472enterresgroup-416nameassignDC2_C0_RP7parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-421vm-423vm-420vm-424vm-417vm-418vm-422vm-419enterresgroup-389nameassignDC2_C0_RP4parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-396vm-392vm-390vm-397vm-395vm-393vm-391vm-394enterresgroup-353nameassignDC2_C0_RP0parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-355vm-361vm-357vm-356vm-360vm-358vm-359vm-354enterresgroup-398nameassignDC2_C0_RP5parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-400vm-403vm-406vm-402vm-401vm-405vm-404vm-399enterresgroup-362nameassignDC2_C0_RP1parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-365vm-370vm-367vm-366vm-364vm-369vm-363vm-368enterresgroup-371nameassignDC2_C0_RP2parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-377vm-375vm-372vm-379vm-378vm-376vm-374vm-373enterresgroup-380nameassignDC2_C0_RP3parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-386vm-383vm-381vm-385vm-388vm-387vm-384vm-382enterresgroup-407nameassignDC2_C0_RP6parentassignresgroup-347resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-412vm-413vm-408vm-411vm-415vm-414vm-410vm-409enterresgroup-661nameassignDC3_C1_RP7parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-665vm-663vm-662vm-664vm-668vm-667vm-669vm-666enterresgroup-616nameassignDC3_C1_RP2parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-617vm-622vm-624vm-623vm-620vm-618vm-621vm-619enterresgroup-598nameassignDC3_C1_RP0parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-604vm-606vm-600vm-602vm-601vm-599vm-605vm-603enterresgroup-607nameassignDC3_C1_RP1parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-614vm-610vm-615vm-609vm-608vm-613vm-612vm-611enterresgroup-634nameassignDC3_C1_RP4parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-635vm-641vm-640vm-639vm-642vm-636vm-638vm-637enterresgroup-625nameassignDC3_C1_RP3parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-629vm-631vm-628vm-632vm-626vm-633vm-627vm-630enterresgroup-652nameassignDC3_C1_RP6parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-659vm-660vm-658vm-655vm-653vm-654vm-657vm-656enterresgroup-643nameassignDC3_C1_RP5parentassignresgroup-593resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-650vm-648vm-647vm-646vm-645vm-644vm-649vm-651enterresgroup-574nameassignDC3_C0_RP6parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-580vm-582vm-576vm-577vm-581vm-579vm-578vm-575enterresgroup-583nameassignDC3_C0_RP7parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-588vm-591vm-586vm-587vm-584vm-590vm-589vm-585enterresgroup-520nameassignDC3_C0_RP0parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-523vm-528vm-524vm-527vm-525vm-522vm-521vm-526enterresgroup-529nameassignDC3_C0_RP1parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-537vm-532vm-534vm-531vm-530vm-536vm-535vm-533enterresgroup-538nameassignDC3_C0_RP2parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-543vm-540vm-541vm-546vm-542vm-539vm-544vm-545enterresgroup-547nameassignDC3_C0_RP3parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-554vm-555vm-553vm-548vm-552vm-549vm-551vm-550enterresgroup-556nameassignDC3_C0_RP4parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-562vm-558vm-559vm-557vm-564vm-563vm-560vm-561enterresgroup-565nameassignDC3_C0_RP5parentassignresgroup-514resourcePoolassignsummary.config.cpuAllocation.expandableReservationassigntruesummary.config.cpuAllocation.limitassign-1summary.config.cpuAllocation.reservationassign0summary.config.cpuAllocation.shares.levelassignnormalsummary.config.cpuAllocation.shares.sharesassign4000summary.config.memoryAllocation.expandableReservationassigntruesummary.config.memoryAllocation.limitassign-1summary.config.memoryAllocation.reservationassign0summary.config.memoryAllocation.shares.levelassignnormalsummary.config.memoryAllocation.shares.sharesassign163840vmassignvm-572vm-566vm-573vm-569vm-567vm-571vm-570vm-568 http_version: - recorded_at: Thu, 03 May 2018 18:08:00 GMT + recorded_at: Mon, 07 May 2018 16:15:34 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -630,14 +630,14 @@ http_interactions: encoding: UTF-8 string: <_this type="PropertyFilter">session[84d6f460-92b8-4269-f4f7-71de6c89efa3]520274b0-15fd-6e57-df78-823bf796c269 + xmlns="urn:vim25"><_this type="PropertyFilter">session[b791db05-92ee-9827-b112-6c993417a984]52ff0821-78d5-bad6-be5b-5bad1a8ffa6b headers: Content-Type: - text/xml; charset=utf-8 Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -651,7 +651,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:08:10 GMT + - Mon, 7 May 2018 16:15:48 GMT Cache-Control: - no-cache Connection: @@ -675,7 +675,7 @@ http_interactions: http_version: - recorded_at: Thu, 03 May 2018 18:08:10 GMT + recorded_at: Mon, 07 May 2018 16:15:48 GMT - request: method: post uri: https://VMWARE_HOSTNAME/sdk @@ -690,7 +690,7 @@ http_interactions: Soapaction: - urn:vim25/5.5 Cookie: - - vmware_soap_session="52a727a2-80f1-e690-b0d1-2395f23681de"; Path=/; HttpOnly; + - vmware_soap_session="529c894f-f913-6291-9126-1a9ef1a039d3"; Path=/; HttpOnly; Secure; Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -704,7 +704,7 @@ http_interactions: message: OK headers: Date: - - Thu, 3 May 2018 18:08:10 GMT + - Mon, 7 May 2018 16:15:48 GMT Cache-Control: - no-cache Connection: @@ -728,5 +728,5 @@ http_interactions: http_version: - recorded_at: Thu, 03 May 2018 18:08:10 GMT + recorded_at: Mon, 07 May 2018 16:15:48 GMT recorded_with: VCR 3.0.3