I have some ISO in Contern Library.
There is no information in the WEB interface to whom ISO is connected to this momoent.
How via PowerCLI check which VMs ISO are connected to?
I have some ISO in Contern Library.
There is no information in the WEB interface to whom ISO is connected to this momoent.
How via PowerCLI check which VMs ISO are connected to?
Yes, I can specify the Blueprint Name when my input is an IaaS VC VirtualMachine.
The Blueprint Name is not available when my input is of type Deployment. Which I believe is still based and built on my blueprint which should include the blueprint name...
Did you check if scanning all your VMs for ISO connections gives that info?
If that info is in there, you can add a Where-clause to filter only the ones with a Content Library ISO
Select @{N='VM';E={$_.Parent.Name}},Name,IsoPath,HostDevice,RemoteDevice
Hi Folks,
I would need to forward vROPS events to splunk through REST API.
Is there any code available.
what would be output of REST command in JSON format .
Please let us know how to do it.
Ok, penso di avere più chiara la situazione e le problematiche di rete che devo approfondire con studio e prove sul campo.
Se qualche altro utente non si sente di aggiungere altro, possiamo chiudere il topic qui, almeno per quanto mi riguarda.
Ti ringrazio tanto per le risposte.
Alla prossima.
Ciao,
quoto quanto detto da scanda anche se a fronte di una storage vmotion standard i file vengono riallocati nel datastore di destinazione.
altra cosa che dovresti controllare, puoi verificare che la suddetta VM non abbia magari una ISO attaccata?
Faccia sapè
Ciao
Hello,
we want to migrate older haproxy configurations (<= 1.8.x) to NSX-T 2.5. Which haproxy version is currently being used on NSX-T 2.5?
Regards
Hi,
We have converted some VM's from a hyper-v platform to our VMware platform, we did this with VMware Converter. Today we want to restore a VM from our storage snapshots but when we want to move the machine to our production volumes we get a error message;
Relocating VM Error: Error caused by file /vmfs/volumes/*/*/*.vmdk
Followed steps:
- Import VM from snapshots.
- Move to production volume, this step fails.
Has somebody see this before?
Regards
I know they aren't listed in the Product Interoperability Matrices but am wondering if anyone is using the combination without any issues?
Next on my list is deploying vRO and integrating it into vCD and if I can just hop to the latest and greatest rather than wait that would be ideal so I don't have to bother upgrading it later.
Hi, I am using VMware workstation 15,5 . I created on my PC new virtual Machine with windows 10 on it . everything works perfect. But I want to activate in Guest Isolation- Share Sensor Input-- Orientation . Motion . Ambient Light, those 3 fields Orientation . Motion . Ambient Light , from VM>Settings>options . Every time I check those boxes and pres ok to save changes , the changes would not be saved and boxes stay unchecked . It worked from beginning but stopped later
Guest Isolation>Share Sensor input>Orientation . Motion . Ambient Light---
Following link provides VMware's compatibility with Ontap device(IMT)
https://www.vmware.com/resources/compatibility/search.php
It returns IMT data on click of button:"Update and view result", I want to fetch the same data using python script, so need APIs for the same.
Please help.
maybe its the same as upgrade 6.7.0.32000 to 6.7.0.41000 - they changed the icons.
just clear the browser cache
Hi!
In my Powercli scripts, I use the Invoke-VMScript cmdlet. On non-English operating systems, the command output becomes unreadable. For example: ���
I know that in this example should be Cyrillic.
How can I get a normal output ?
I suspect I have somewhere to enable UTF-8 encoding.
Do you launch that from a Windows or a Linux platform?
Which Linux distro are you using?
On the Linux box do you have the locales package installed?
Check on the Linux box with the locale command what settings are in use.
Have a look at (and replace en_US with the correct name) the 2nd answer in https://unix.stackexchange.com/questions/303712/how-can-i-enable-utf-8-support-in-the-linux-console
Hi Steve,
I like the direction your proposed. Going down this path, I manually executed my script in vRO, then I sent the API below to get the parameter
{
"relations":{
"link":[{"href": "https://vraportal.ssilab.local:443/vco/api/workflows/3d4ad4fc-1461-47e0-ad43-59b4c431016f/executions/",…]
},
"id": "b20dcebc-1fa1-442e-b19c-d01d9251b88c",
"state": "completed",
"start-date": "2019-02-07T17:44:23Z",
"end-date": "2019-02-07T17:44:23Z",
"started-by": "configurationadmin@vsphere.local",
"name": "Force data collection synchronous",
"current-item-for-display": "item0",
"input-parameters":[
{
"value":{
"sdk-object":{
"type": "vCAC:VCACHost",
"id": "2c3e62cb-d874-40d9-afa1-893456ff7c0d"
}
},
"type": "vCAC:VCACHost",
"name": "host",
"scope": "local"
}
],
"output-parameters":[],
"workflow-attributes":[]
}
Then I ran a POST to
with BODY
{
"input-parameters": [
{
"value": {
"sdk-object": {
"type": "vCAC:VCACHost",
"id": "2c3e62cb-d874-40d9-afa1-893456ff7c0d"
}
},
"type": "vCAC:VCACHost",
"name": "host",
"scope": "local"
}
],
"output-parameters": [],
"workflow-attributes": []
}
I still get error 400, with no additional information.
Any thoughts?
Ilian, thanks so much for the suggestion. Unfortunately I couldn't make it work easily. I am now attempting the method Steve proposed to see if I can get the syntax right. It is not so straight forward
Hi LuCD!
I use Windows Server 2008 R2
For the scriptblock did you save the Cyrillic codepage ? Depending on your os the code page is builtin available or not.
$scriptBlock="Your Cyrillic text"
$enc = [Console]::OutputEncoding
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("cp866")
& $scriptBlock
[Console]::OutputEncoding = $enc
You find some additional os release related culprit information at https://stackoverflow.com/questions/49476326/displaying-unicode-in-powershell