Posted On March 31, 2019

Install vCenter

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Install vCenter
– Download VMware-VCSA-all-6.0.0-2656757.iso
– Download VirtualCloneDrive
– Mount VCSA as virtual CD ROM
– Disable antivirus (to unlock hosts file) on local workstation
– Install VMWare-ClientIntegationPlugin-6.0.0.exe from mounted virtual CD ROM
– Create DNs record (vcenter.domain.local) & reserve static IP address for vcenter
– Run vcsa-setup.html: use IP / FQDN from prior step as static networking settings, 0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org as ntp

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

WordPress NextGen Gallery Plugin Error

Error Message: Failed to load plugin url: /bitnami/wordpress/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/attach_to_post/static/ngg_attach_to_post_tinymce_plugin.js?ver=3.17 Resolution: Although the root cause hasn't been…

PowerShell: Fix All VMs CPU Compatibility Setting

# fixAllVmCpuCompatibility.ps1 # version 0.01 function getHyperVHostsInForest{ function includeRSAT{ $ErrorActionPreference='stop' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #$rsatWindows7x32='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu' $rsatWindows7x64='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu'…

PowerShell: Get Hyper-V Host Name from Inside Guest VM

$guestVMName="SOMENAME"function getHyperVHostname{ param([string]$guestVMName=$env:computername) $hive = [Microsoft.Win32.RegistryHive]::LocalMachine; $keyPath = 'SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters'; $value = 'HostName'; $reg =…