domdsouza's Posts

Ports may be open, but what about Protocol? are both TCP and UDP Allowed? The newer clients automatically switch between TCP/UDP I believe. I think you can force it on the Agent side, and maybe i... See more...
Ports may be open, but what about Protocol? are both TCP and UDP Allowed? The newer clients automatically switch between TCP/UDP I believe. I think you can force it on the Agent side, and maybe it's set that way on the old image?
The API has no Disk Capacity or Disk Used status unfortunately. So you would have to do something like the previous poster suggested and use PowerShell to query the Disk capacity. To disable t... See more...
The API has no Disk Capacity or Disk Used status unfortunately. So you would have to do something like the previous poster suggested and use PowerShell to query the Disk capacity. To disable the server using the API, this is my code snippet in C#. //retrieve the needed extension data to do stuff: vs = (Services)i.ExtensionData; RDSServerId rId = MyRDSServerId.id MapEntry[] mapEntry = new MapEntry[1]; MapEntry disableServer = new MapEntry { Key = "settings.enabled", Value = false }; try {      mapEntry.SetValue(disableServer, 0);      vs.RDSServer.RDSServer_Update(rId, mapEntry); } catch(Exception ex) { //do something }
This is what's causing the issue. vdmInstUtil: 09/02/20 08:43:33 ERROR: Failed writing to file "C:\WINDOWS\system32\Drivers\etc\hosts". For some silly reason, it wants to add an entry to th... See more...
This is what's causing the issue. vdmInstUtil: 09/02/20 08:43:33 ERROR: Failed writing to file "C:\WINDOWS\system32\Drivers\etc\hosts". For some silly reason, it wants to add an entry to the hosts file as shown below. 127.0.0.1 view-localhost # view localhost server A lot of AntiVirus applications will prevent this, and hence the failed install. The workaround is to stop the AV temporarily until the install is complete, or add those entries manually. If that entry exists, it will skip that part.
With version 8.0 the REST API has caught up and is full featured. With the older 7.x versions, it was pretty basic stuff only. But they did have a full featured PowerCLI module and C# API. VMw... See more...
With version 8.0 the REST API has caught up and is full featured. With the older 7.x versions, it was pretty basic stuff only. But they did have a full featured PowerCLI module and C# API. VMware Horizon Server API - VMware API Explorer - VMware {code}
Are you using Writables in your environment. We had a similar issue and we has to exclude this path in the snapvol.cfg file. exclude_path=%SystemRoot%\INF
Do you have a writable and was there an update to it?