X5670 is Westmere and E5-2680 is Sandy Bridge. Not sure how you managed to vMotion between the two. But glad to hear it worked out well for you.
Re: iSCSI storage presented to hosts managed by different vCenter Server - any issues?
Re: Migrate Environment
About te migration from Distributed switch to Standard switch what you need to do is create a new Standard switch in your old hosts with at least one uplink (vmnic), migrate all virtual machine to the new Standard switch on the old hosts and once all virtual machine are on the Standard switch you can migrate them to the new hosts with the Standard switch. Note that depending of your CPU configuration, you will may not be able to migrate the virtual machine due to CPU compatibility, but you may try enable EVC in your new cluster to make possible the migration without shutdown the virtual machines.
unable to run vdcadmintool windows server 2012 PSC
I lost my SSO password
I am following KB 2034608
when I try to run vdcadmintool from elevated command prompt I receive the following windows popup
This app can't run on your PC to find a version for your PC, check with the software publisher
when I click close to the prompt I receive a access denied in the elevated command prompt
powercli: LicenseManager, UpdateLicense method(vSphere API)
Hi,
I have written the following script:
[script]
------------------------------------
Connect-VIServer<ServerIP> -User<Username> -Password<password>
$servInst = Get-View ServiceInstance
$licMgr = Get-View $servInst.Content.licenseManager
$licenseToBeUpdated= "6J4VP-EPH1N-R8860-083U4-2KYN2"
$licencesPresent= $licMgr.Licenses
$label = New-Object VMware.Vim.keyValue
$label.Key = "Name"
$label.Value = "Standard"
foreach($lp in $licencesPresent)
{
if($lp.LicenseKey -eq $licenseToBeUpdated){
Write-Output ("license found")
$licMgr.UpdateLicense($lp.LicenseKey, $label)
}
}
----------------------------------------------------------------------
I have few questions:
>> How to pass the key/value parameter to the UpdateLicense method
Update license takes the license key as first argument and the label(key, value) as second parameter
In what format can we pass the parameter
>> When i try to see the labels associated with a particular license Object
i see an empty list
in this case how do I update the name of the license
is the license's name considered to be a label?
Thank you,
Basu
Goodbye from Dave Briccetti
Dear service provider partners,
After over five years working on Usage Meter, and more than six years contracting at VMware, I must now say goodbye. I enjoyed working with you!
I won’t see any replies after March 31st, 2016, but you can reach me at daveb@davebsoft.com.
I wish you all continuing success with your VMware partnership.
Dave Briccetti
Dave Briccetti Software LLC
removal of stack 3.0
have anyone attempted to remove a stack? still waiting for official procedure.
thanks
Sam
Clustered Print Solution - Server 2012
Hello All,
This is most likely the wrong area to post this question in, but I don't think any category was going to work anyway.
I need to build a highly available print server solution which spans two datacentres 30km (roughly 15 miles) apart. The preference is to use Server 2012.
Has anyone got any information or links on how this can be accomplished?
Options I've thought of;
1) Protect the print server using SRM. Possible but not preferred as this would require manual intervention for the server to fail over and the print queues being used service medical devices that may have time critical sensitivity attached.
2) Use third party software. We are deploying a managed print solution for the vast majority of the environment, but these medical systems are not always going to be on the domain and may not integrate properly with the third party software. I do know that most of them do work with standard Microsoft Print Server in 2008 R2.
3) Deploy brand new 2008 R2 servers and create a MSCS solution. This is not a good option but I might have to do it this way.
It is because these these are critical that I really want the solution to be high available (in the sense that the application always functions, not that the server will perform a restart) across two sites, so even if I lose one of my datacentres the solution will still run. Most of my infrastructure has been built to this specification.
So once again what I'm hoping to do is built a print cluster on server 2012 with the same functionality and resiliency that can be achieved in server 2008 R2.
Cheers,
Paul
Re: host is not in compliance
just checking compliance and seeing this on a lot of hosts. it came up from a vcheck script and would like to fix it.
Re: Unattended installation of VMRC 7.0.1 - MSI install switches?
It looks like the non-current installers have been removed from vmware.com. Have you tried installing VMRC 8.0 over VMRC 7.0.1 then uninstalling with the 8.0 msi? This works through the GUI, I haven't tried unattended.
Re: Issue with Objects List View/Tab
Okay sorry for the confusion. We're only interested with 6.x version. I'm assuming that the sample will only work if the target web client version is 6.x, is this correct?
Re: Odd deadlock errors
I wanted to reply with a potential for a workaround as suggested by the VMware engineer - we are restructuring our workflows to use asynchronous calls rather then nested. so far this approach has not triggered deadlock errors against our databases. We still get the benefit of running inner workflows in parallel; a small drawback is the user needs to follow asynch workflow execution in client gui if it is used for monitoring activities.
Re: Issue with Objects List View/Tab
Yes, that's correct. This is controlled by the following line in the sample's plugin-package.xml:
<pluginPackage id="com.vmware.vsphere.client" version="6.0.0" />
Defined this way it means "the plugin is compatible by Web Client version 6.0.0 or above".
Cheers,
Vladimir
New-VIPermission Error: The specified role is from a different server.
I am running a script to add a new users to vHosts via vCenter and PowerCLI and am getting the error:
New-VIPermission : 3/31/2016 12:44:23 PM New-VIPermission The
specified role is from a different server.
At C:\Add_Local_User_vCenter.ps1:27 char:9
+ New-VIPermission-Entity$esx-Principal$accountName-Roleadmin-Propa ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~
+ CategoryInfo : InvalidArgument: (Admin:RoleImpl) [New-VIPermiss
ion], VimException
+ FullyQualifiedErrorId : Core_NewVIPermission_DoWork_RoleFromDifferentSer
verSpecified,VMware.VimAutomation.ViCore.Cmdlets.Commands.PermissionManage
ment.NewVIPermission
My code works for a single host but when I connect to vCenter and try to iterate my 20 hosts, it fails.
Here is my code (Credit to RDTechie). Any help is appreciated.
$accountName = 'test'
$accountPswd = 'T3st1!'
$accountDescription = 'Additional Admin Account'
$user = 'root'
$passWord = 'Pw0rd1'
$esxlist = Get-VMHost
foreach($esx in $esxlist) {
$node = Connect-VIServer -Server $esx -User $user -Password $passWord
Try {
Get-VMHostAccount -Id $accountName -ErrorAction Stop -Server $node
}
Catch {
New-VMHostAccount -Id $accountName -Password $accountPswd -Description $accountDescription -GrantShellAccess:$true -Server $node
New-VIPermission -Entity $esx -Principal $accountName -Role admin -Propagate:$true -Server $node
}
Disconnect-VIServer -Server $node -Confirm:$false
}
Re: Horizon 7 : Instant Clones SERVER_FAULT_FATAL
Hi
Any news in this case?
Frederico
Re: powercli: LicenseManager, UpdateLicense method(vSphere API)
Hi LuCD,
It's in vSphere 6.0 with PowerCLI 6.0
Re: App Volumes 3.0 - Slow Logon Times
I'll have to give that a shot. The 2.10 environment is working just fine, and I have verbose messages turned on and it gets stuck on the App Volumes Service message. Did yours do the same thing?
Re: Is it possible to put an ESXi 6.x LOCAL datastore into maintenance mode?
The feature is available and not removed!
Please consider:
Maintenance mode is available to datastores within a StorageDRS-enabled datastore cluster. Standalone datastores cannot be placed in maintenancemode.
The situation is same for ESXi 5.1, 5.5 and 6.x.
Re: What is the tmp1 file? Ramdisk full and slowness and freezing of the vm's several times a day
What is your server hardware?
Re: Create new theme
Hi Caroline - For Premium communities, community administrators can customize the background, navigation icons, and link colors to match your company branding, but the actual UI cannot be changed. Hope the helps!
Re: New-VIPermission Error: The specified role is from a different server.
Try replacing the text 'admin' on the Role parameter with the expression Get-ViRole -Name admin -Server $node.