Quantcast
Channel: VMware Communities : Discussion List - All Communities
Viewing all 178097 articles
Browse latest View live

Fusion11.5 + Catalina. USB won't register

$
0
0

Hi, I've been over a few threads but can't fix it thus far.

 

I'm running Fusion11.5 on OS 10.15.4 Catalina, I have agreed and added VMfusion within the system preferences to

SystemPreferences > Security&Privacy > Accessibility (& Full disk access)

 

VMfusion is up and windows running, I mount the drive, VM asks to run on windows > yes > but it doesn't register. ( windows makes the sounds of a drive being plugged and unplugged ). I can't unmount with within disk management although I can't see it, then is mounts to the Mac desktop.

 

Any insights?

 

Many thanks


WS1 - auto update whitelisted System Apps on Android Enterprise managed device

$
0
0

This is regarding WS1 SaaS (20.4.0.2 (2004)) Android Enterprise managed devices deployed with an Application profile that enables the use of whitelisted System Apps.

 

The whitelisting works , but I also want to be  able to manage the updates centrally from the WS1 dashboard, i.e. push update like is done with regularly managed Apps.

Is there a way to do that?

 

regards!

JV

Workstation Pro 15 Unable to open file .vmdk

$
0
0

Sorry' I'm not good at english.

 

Hello

 

I using vmware workstation pro 15 and have been compact disk. I saved workstation on my external hard disk, during compact processing 80% my hard drive usb it accident disconnect. I'm try to power on my workstation it show error "insufficient permissions" this point i just remove .lck file and it gave me error "The specified virtual disk needs repair" for vmware-vdiskmanager.exe method it not working for me with error "the virtual disk, Workstation.vmdk is corrupted and cannot be repaired"

Prevent App from updating

$
0
0

Hi,

 

I am on WSO version 20.1.10 on prem. We just got word that MS Teams Version 2.09 for iOS is breaking incoming calling. Is there a way I can prevent people from downloading this version? It only seems I have the ability to push an update not prevent one from installing.

Upgrade of ESXi 6.5 - no longer can see internal server RAID drives

$
0
0

We have an incident where after upgrading our Supermciro to the latest 6.5 ESXi release where ESXi is not seeing the internal SAS drives. 

Internal SAS controller is not seeing the drives.  Prior to the ESXi update, vCenter was showing under Storage Adapters, MegaRAID SAS Invader Controller with Storage Device Local AVAGO disk.

 

I booted the ESXi server and went into the RAID utility. All of the drives show on-line and active with no failures.

I checked with the vendor and we tried a new backplane riser card.  Did not help.  He said if the drives are seen by the controller, then he thinks the problem is not a hardware issue. 

 

He thinks there is some disconnect in the ESXi somewhere …especially since the only two hardware pieces it could be at this point are backplane and motherboard. However, the internal SATA drives are working fine, so that really rules out the backplane and motherboard.

Has anyone seen anything like this after upgrading ESXi 6.5?


Anyone see something similar?

 

thanks

No peer certificate found error

$
0
0

When I connect my esxi host by remote location give no peer certificate found

Resync components in vSAN takes a long time!

$
0
0

I have a vCSA + 3 ESXi on same cluster and a few days ago, I checked status in vSAN and I see that many components takes very long time to succesfully resync.

 

Despite of doing the action via vSphere Web Client to repair objects inmediately, did not work.

 

I see many post in this forum and I check that there would be commands like vsan.resync... It affects to normal functionality of VMs in the moment you put these commands?

 

Is there a way to check, how to repair these object manually? On the other hand, the VMs, ESXi and vCSA works OK, but for example when I try to clone a VM with resync components already working, there is no way, it fails to do the process (I understand because in this moment is doing resync components).

 

Thanks in advance. Regards!

VMDK Report not working

$
0
0

I have used this script for a few years to find now it is just producing an empty report.  When I review it the script it pulling:

 

$vmdiskFolder=($vmdiskfilename | %{$_.Split('/')[0]})

     |                                       ~~~~~~~~~~~~~~~~

     | You cannot call a method on a null-valued expression.

 

I am not sure what variable isn't pulling data from correctly though to investigate.

 

Connect-VIServer $VC -Credential $Cred

#############################

#         Variables         #

#############################

$date=Get-Date -format "yyyy-MMM-d"

$datetime=Get-Date

$filelocation="/var/www/VMDK/VMDK-$date.htm"

 

#############################

#          Content          #

#############################

 

#Determine if already connected to VCenter and if not connect

if ( $DefaultVIServers.Length -lt 1 )

{

  Connect-VIServer -Server $ESXserver -User $ESXuser -Password $ESXpassword -WarningAction SilentlyContinue | Out-Null

}

 

# Format html report

$htmlReport = @"

<style type='text/css'>

.heading {

    color:#0B1ABF;

    font-size:14.0pt;

    font-weight:700;

    font-family:Verdana, sans-serif;

    text-align:left;

    vertical-align:middle;

    height:20.0pt;

    width:416pt;

}

.colnames {

    color:white;

    font-size:11.0pt;

    font-weight:700;

    font-family:Tahoma, sans-serif;

    text-align:center;

    vertical-align:middle;

    border:.5pt solid windowtext;

    background:#730000;

}

.lblueback {

    color:windowtext;

    font-size:10.0pt;

    font-family:Arial;

    text-align:left;

    vertical-align:middle;

    border:.5pt solid windowtext;

    background:#B8CCE4;

}

.greyback {

    color:windowtext;

    font-size:10.0pt;

    font-family:Arial;

    text-align:left;

    vertical-align:middle;

    border:.5pt solid windowtext;

    #background:#D8D8D8;

}

 

</style>

<table style='border-collapse:collapse;table-layout:auto;width:auto;padding:5px'>

<tr style='height:15.0pt'>

   <th colspan=6 height=40 width=auto class="heading">

    <center> VM Datastore Report </center></th>

</tr>

<tr>

  <th class="colnames">VM Name</th>

  <th class="colnames">Host</th>

  <th class="colnames">DataStore</th>

  <th class="colnames">Folder</th>

  <th class="colnames">FileName</th>

  <th class="colnames">Size/GB</th>

</tr>

"@

 

#get a list of VMs

$vmlist = Get-VM -Server $ESXserver |  where { $_.Name -notmatch "_replica" } | Sort

 

#counter to manage alternating row color

$colorcounter = 0

 

#Master part of the script, loops through each VM and creates table with data

ForEach ($vm in $vmlist)

{  

  #If loop to determine color of Rows related to given VM

  if ($colorcounter%2 -eq 0)

    {

        $tablecell = @"

        <td class='lblueback'>

"@

}

  else

    {

        $tablecell = @"

        <td class='greyback'>

"@

}

  

  # Grab VMDK information and the Datastores tied to them.

  $vmdisk = Get-VM $vm | Get-harddisk

  

  # Split out disks where a VM has more than a single disk, also split out the name of the Datastore

  # from the name/path of the vmdk file, then split the Folder Name from the VMDK name.

  $vmdiskDatastore=($vmdisk | %{$_.Filename.Split('[]')[1]})

  $vmdiskfilename=($vmdisk | %{$_.Filename.Split('[]')[2]})

  $vmdiskFolder=($vmdiskfilename | %{$_.Split('/')[0]})

  $vmdiskVMDK=($vmdiskfilename | %{$_.Split('/')[1]})

  $vmdisksize=($vmdisk | %{$_.CapacityKB})

  

  # determine the length of the array so we know if there was more than one hard drive for a given VM.

  $count = $vmdiskfilename.count - 1

  

  # Begin building the html report, inserting the name of the VM in the 1st Column and Host Name into the 2nd

  $htmlReport = $htmlReport +

  "<tr>" + $tablecell + $vm.Name + "</td>" +

  $tablecell + $vm.host.Name + "</td>"

  

  # Based on the number of hard drives in the count value the report is generated in one of two ways

  if($count -le 0)

  {

    # There is only one hard drive so the values will not be in an array we just need to build the table row with data

    $htmlReport = $htmlReport +

    $tablecell + $vmdiskDatastore + "</td>" +

    $tablecell + $vmdiskFolder + "</td>" +

    $tablecell + $vmdiskVMDK + "</td>" +

    $tablecell + $vmdisksize / 1MB + "</tr>"

  }

  else

  {

    # There is more than one hard drive, because of table formatting we handle the 1st row different from the 2nd row.  Data is in an array.

    $htmlReport = $htmlReport +

    $tablecell + $vmdiskDatastore[0] + "</td>" +

    $tablecell + $vmdiskFolder[0] + "</td>" +

    $tablecell + $vmdiskVMDK[0] + "</td>" +

    $tablecell + $vmdisksize[0] / 1MB + "</tr>"

  

  # There is more than one hard drive so we will loop through the array and and place them in the report

    $x=1

    While($x -le $count)

    {

        $htmlReport = $htmlReport +

        "<tr>" + $tablecell + "" + "</td>" +

        $tablecell + "" + "</td>" +

        $tablecell + $vmdiskDatastore[$x] + "</td>" +

        $tablecell + $vmdiskFolder[$x] + "</td>" +

        $tablecell + $vmdiskVMDK[$x] + "</td>" +

        $tablecell + $vmdisksize[$x] / 1MB + "</tr>"

        $x= $x+1

    }

   }

   # value used in conjunction with Foreach and if loop to rotate color in table

   $colorcounter = $colorcounter + 1

}

 

$htmlreport | Out-File -Append $filelocation

 

#############################

# Add Text to the HTML file #

#############################

ConvertTo-Html –title "VMware VMDK Check " –body "<H1>VMware VMDK Check</H1>" -head "<link rel='stylesheet' href='style.css' type='text/css' />" | Out-File -Append $filelocation

ConvertTo-Html –title "VMware VMDK Check " –body "<H4>Date and time</H4>",$datetime -head "<link rel='stylesheet' href='style.css' type='text/css' />" | Out-File -Append $filelocation

 

##############################

# Disconnect session from VC #

##############################

disconnect-viserver -confirm:$false


Help with VIProperty

$
0
0

Hello,

 

I am trying to add a new VIProperty for PercentFree for the Guest disk. What would be the object type etc?

 

Thanks

UAG Gateway Unknown Not Registered in Horizon 7

$
0
0

I just installed a UAG 3.9 and am running Horizon Connection Server 7.12.  All my Horizon Settings are green in the UAG to include PCOIP, Tunnel, Blast, UDP Tunnel Server, and most importantly Horizon Destination Server.  It appears I'm all green with connectivity to my CS.  When I register my UAG in the Horizon CS Admin console under Servers->Gateways, it remains unknown.  The Version and IP Address are listed as N/A and it is unknown on the Dashboard.  It is listed as External in the Gateway section of the Horizon CS Admin console.  My UAG Name in the System Configuration Advanced Settings matches the name registered in the Horizon CS.  They are both the FQDN of the UAG Appliance.  Why won't it register as a Gateway with the Connection Server? 

Vcenter Repoint SSO domain can cause issues on Horizon View?

$
0
0

Hi all,

 

i´ve an doubt about a procedure i´ll need to do.

 

I´ve two linked vcenter on sso domain vsphere.local, and a Horizon view platform, have another two linked vcenter on another sso domain, and Horizon view plataform, that is vsphere.local too

 

I need the 4 vcenter connected to first sso domain vsphere.local, using the repoint to get all linked, horizon view will have any disruption?

 

 

tks.

Dynamic Environment Manager 9.10 has been released

$
0
0

We're happy to announce that Dynamic Environment Manager 9.10 has been released, with the following new features:

  • Support for Windows 10 Version 1909
  • Improved roaming of default applications (FTAs and protocols)
    There's a new Windows Common Setting to roam default application configuration:

    With this new setting, you no longer need additional scripts and third-party tools to correctly this information.
  • Horizon Smart Policy computer environment settings
    DEM can now apply certain computer policy settings for Horizon:

ESXi 6.7 fails to list Intel X540 (ixgben) Network Ports via a Thunderbolt3 to Thunderbolt2 Apple Adapter

$
0
0

Environment

 

Problem Statement

ESXi fails to list the Intel X540 (ixgben) as configurable network ports via a Thunderbolt3 to Thunderbolt2 Apple Adapter.

  1. On ESXi, the Intel X540 PCI card does get detected and is properly listed under Hardware -> PCI Devices:
  2. Hardware_PCI_1.png
    [root@esxinuc:~] lspci | grep X540
    0000:40:00.0 Ethernet controller: Intel(R) Ethernet Controller 10 Gigabit X540-AT2
    0000:40:00.1 Ethernet controller: Intel(R) Ethernet Controller 10 Gigabit X540-AT2
  3. You can clearly see that the ESXi detects the PCI card; however, there seems to be some addressing issue on the PCI side of things; as it fails to list the (2) available network ports.
  4. In addition, I have an Apple Thunderbolt to Gigabit Ethernet Adapter (Broadcom Corporation NetXtreme BCM57762) connected via the same Thunderbolt chain and the network port get detected with the tg3 inbox driver. It appears that ESXi fails to address the Intel X540 with the ixgben driver when the TB3 to TB2 adapter is the intermediary between the host and card.
  5. [root@esxinuc:~] esxcli network nic list

    Name    PCI Device    Driver  Admin Status  Link Status  Speed  Duplex  MAC Address         MTU  Description

    ------  ------------  ------  ------------  -----------  -----  ------  -----------------  ----  --------------------------------------------------------

    vmnic0  0000:00:1f.6  ne1000  Up            Down             0  Half    d4:5d:df:07:4f:59  1500  Intel Corporation Ethernet Connection (2) I219-V

    vmnic1  0000:05:00.0  igbn    Up            Up            1000  Full    d4:5d:df:07:4f:5a  1500  Intel Corporation I210 Gigabit Network Connection

    vmnic2  0000:44:00.0  tg3     Up            Down             0  Half    38:c9:86:22:e4:b0  1500  Broadcom Corporation NetXtreme BCM57762 Gigabit Ethernet

     

  6. The problem would have made more sense if the PCI card didn't get detected by ESXi; however, the fact that it is detected, ESXi should be able to assign the ixgben driver.
  7. The problem isn't the SANLink2 10GbE (Intel X540) but an MMIO addressing issue amongst the Thunderbolt bus translation to ESXi when using a TB3 to TB2 adapter; hence, the ixgben driver never gets assigned.
  8. Disclaimer– I understand that:
    (A) the Intel NUC is not officially part of the HCL (many people in the community use NUCs for home labs)
    (B) an Apple Thunderbolt3 to Thunderbolt2 adapter is not officially part of the HCL
  9. Please note that if I boot in Windows 10 with the same HW (Intel NUC) and physical configuration (SL2 via TB3 to TB2), the Intel X540 contained in the Promise SANLink2 10GbE via the Thunderbolt bus works perfectly fine:
    Screen Shot 2020-04-21 at 6.01.44 PM.png
    Screen Shot 2020-04-21 at 6.07.12 PM.png
  10. For those wondering if the Promise SANLink2 10GbE works natively using the ixgbe (ESXi 6.0) or the newer driver ixgben (ESXi 6.5, 6.7), when connecting the Promise SANLink2 10GbE to a Thunderbolt2 or Thunderbolt1 host running on ESXi, it works perfectly fine. ESXi automatically assigns the driver to the Intel Ethernet Controller X540.
    ESXi 6.7 with SL2 connected to a TB1 MacBook Pro
    Screen Shot 2020-04-16 at 9.49.07 PM copy.png
  11. I've used the SL2 with multiple Thunderbolt1/2 based Macs that are running ESXi and they work great.
  12. Since I had (1) laying around, I thought I would test using the TB3 to TB2 adapter before looking for TB3 based 10GbE adapters; as the ones listed in Virtually Ghetto.

 

The vmkwarning.log outputs PCI MMIO limit exceeded warnings:

0:00:00:05.485 cpu0:2097152)WARNING: PCI: 452: 0000:40:00.0: Failed to add BAR[2] (IO f=0x1 0xa020-0xa040) - out of resources on parent: 0000:3f:03.0

0:00:00:05.485 cpu0:2097152)WARNING: PCI: 475: 0000:40:00.0: Failed to add BAR[2] (IO f=0x1 0xa020-0xa040) status: Limit exceeded

0:00:00:05.485 cpu0:2097152)WARNING: PCI: 221: IO (0xa000 - 0xa01f) out of range

0:00:00:05.485 cpu0:2097152)WARNING: PCI: 452: 0000:40:00.1: Failed to add BAR[2] (IO f=0x1 0xa000-0xa020) - out of resources on parent: 0000:3f:03.0

0:00:00:05.485 cpu0:2097152)WARNING: PCI: 475: 0000:40:00.1: Failed to add BAR[2] (IO f=0x1 0xa000-0xa020) status: Limit exceeded

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.0: Unable to free BAR[2] (IO f=0x1 0xa020-0xa040): Limit exceeded

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.0: Unable to free BAR[4] (MEM64 f=0xc 0x2fd0200000-0x2fd0204000): Limit exceeded

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.1: Unable to free BAR[2] (IO f=0x1 0xa000-0xa020): Limit exceeded

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.1: Unable to free BAR[4] (MEM64 f=0xc 0x2fd0600000-0x2fd0604000): Limit exceeded

 

[root@esxinuc:~] lspci | grep 0000:3f:03.0

0000:3f:03.0 PCI bridge: Intel Corporation DSL5520 Thunderbolt 2 Bridge [Falcon Ridge 4C 2013]

- TB2 Bridge via Apple TB3-to-TB2 Adapter (Parent)

 

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.0: Unable to free BAR[4] (MEM64 f=0xc 0x2fd0200000-0x2fd0204000): Limit exceeded

0:00:00:05.496 cpu0:2097152)WARNING: PCI: 678: 0000:40:00.1: Unable to free BAR[2] (IO f=0x1 0xa000-0xa020): Limit exceeded

- Promise SANLink2 10GbE (Intel Ethernet Controller 10 Gigabit X540-AT2)

 

It appears that I'm experiencing a PCI MMIO issue with the adapter and verified this by reviewing Memory Addressing Limits for ESXi 5.1.x, 5.5.x 6.x and 7.0 (2087943)

 

I couldn't figure out a way to change this on the Intel NUC with the latest BIOS.

VCSA 6.7 - Cannot Replace Certificate

$
0
0

I successfully created a Let's Encrypt cert for my homelab vcenter server (6.7.0.43000). I installed VCSA  less than a week ago and all else is working correctly.  I uploaded the new cert to the VCSA appliance and ran the built in scripts in certificate manager to install it. However, I hit this error during that process and it rolled back to the original:

 

Previous MACHINE_SSL_CERT Subject Alternative Name does not match new MACHINE_SSL_CERTIFICATE Subject Alternative Name
Performing rollback of Machine SSL cert

 

The hostname of the server (vcenter.mydomain.mycountry) is exactly the same as the cert and the SAN is also identical. I checked the original cert and it also has the same format domain name as the SAN. Everything is correct, old and new, but this keep failing. Rebooted the server a few times, same error.

 

Also, tried a wildcard cert but got the exact same error. I read VMWare does not like wildcards, fair enough, but I'm not seeing how this is failing.

 

Posted first on the Let's Encrypt forums and they say the cert and SAN are correct. So where is the obstacle?

 

Thanks.

 

VMware ESXi 7.0.0 build-15843807: -flat.vmdk files are read locked when a snapshot is taken

$
0
0

We have detected that on ESXi 7.0.0 build-15843807 -flat.vmdk files are locked for reading even though the VM is running on top of a snapshot.

 

[root@wxpmk:~] cat /vmfs/volumes/data/CentOS-7.2/CentOS-7.2.vmsd

.encoding = "UTF-8"

snapshot.lastUID = "13"

snapshot.current = "13"

snapshot0.uid = "13"

snapshot0.filename = "CentOS-7.2-Snapshot13.vmsn"

snapshot0.displayName = "1"

snapshot0.createTimeHigh = "369657"

snapshot0.createTimeLow = "387876330"

snapshot0.numDisks = "1"

snapshot0.disk0.fileName = "CentOS-7.2.vmdk"

snapshot0.disk0.node = "scsi0:0"

snapshot.numSnapshots = "1"

 

[root@wxpmk:~] dd if=/vmfs/volumes/data/CentOS-7.2/CentOS-7.2-flat.vmdk ibs=1 skip=0 count=1

dd: can't open '/vmfs/volumes/data/CentOS-7.2/CentOS-7.2-flat.vmdk': Device or resource busy

 

Nonetheless when we query the file lock info, the file appears as: lockMode: Read-Only

 

vmfsfilelockinfo -p /vmfs/volumes/data/CentOS-7.2/CentOS-7.2-flat.vmdk

vmfsfilelockinfo Version 2.0

Looking for lock owners on "CentOS-7.2-flat.vmdk"

"CentOS-7.2-flat.vmdk" is locked in Read-Only mode by host having mac address ['00:0c:29:d5:ea:36']

Trying to use information from VMFS Heartbeat

 

Host owning the lock on file is 192.168.3.240, lockMode : Read-Only

Total time taken : 4.1909195680054836 seconds.

 

We don't know if this is the intended behaviour or it is a bug, as there seems to be some contradictions in what we could find out so far.


NSX Manager Nodes Cluster from UI

$
0
0

Hi,

I have 3 Node for NSX Manager. How many failure can NSX cluster tolerate ? Can I access NSX manager I have 2 nodes down?

Converter Standalone 6.2.0

$
0
0

Hello Guys,

 

Hope you are well : )

All-day digging in google but nothing that can help ...

Currently, we are trying to perform live migration on several VMs with Converter Standalone 6.2.0, for the Windows VMs is working good however, we are facing issue with Linux ones mostly RHEL 6 and 7.

After migration, the destination have doesn't have 3 disks only 2, one small with a boot on it, and another one with all partitions.

All Linux VMs have 2,3 or more disk and all of them are part of LVMs, for example:

source VM have:

NAME                    MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
  sr0                      11:0    1 1024M  0 rom
  sdb                       8:16   0   50G  0 disk
  └─sdb1                    8:17   0   50G  0 part
    ├─vgOS-homevol (dm-4) 253:4    0   51G  0 lvm  /home
    └─vgOS-varvol (dm-5)  253:5    0   48G  0 lvm  /var
  sda                       8:0    0   60G  0 disk
  ├─sda1                    8:1    0  200M  0 part /boot
  └─sda2                    8:2    0 59.8G  0 part
    ├─vgOS-swapvol (dm-0) 253:0    0    2G  0 lvm  [SWAP]
    ├─vgOS-rootvol (dm-1) 253:1    0   32G  0 lvm  /
    ├─vgOS-usrvol (dm-2)  253:2    0    6G  0 lvm  /usr
    ├─vgOS-tmpvol (dm-3)  253:3    0    2G  0 lvm  /tmp
    ├─vgOS-homevol (dm-4) 253:4    0   51G  0 lvm  /home
    └─vgOS-varvol (dm-5)  253:5    0   48G  0 lvm  /var
  sdc                       8:32   0   40G  0 disk
  └─sdc1                    8:33   0   40G  0 part
    ├─vgOS-usrvol (dm-2)  253:2    0    6G  0 lvm  /usr
    ├─vgOS-homevol (dm-4) 253:4    0   51G  0 lvm  /home
    └─vgOS-varvol (dm-5)  253:5    0   48G  0 lvm  /var

In the convertor, migration completes without any warning but for the new VM we are getting kernel panic : (

With rescue CD manage to edit the fstab and put the UUID of the VOLs

but nothing change.

Do you have any idea where is the problem?

Thank you for your help.

Vmware Workstation remote desktop connection to VM within a host PC.

$
0
0

I am trying to get my laptop to connect to my super computer in the computer closet but im having issues connecting to the VM's that are within the device.

I used bridged and NAT connections bridged i get a password error where i cannot connect due to the username and password being wrong.

NAT connection i don't get that far.

 

I could really use some pointers on where to go next.

 

Thanks,

Can not install VMware host OS onto VMware machine

$
0
0

Hello,

I have been trying to install VMWare machine on my computer. It was installed. However when I tried to install windows XP, the following information pop up:

 

VMware Workstation and Device/Credential Guard are not compatible. VMware Workstation can be run after disabling Device/Credential Guard. Please visit http://www.vmware.com/go/turnoff_CG_DG for more details

 

I followed the instruction on VMWare website, changed some registry, .... , I could not install windows XP still.

This is a HP zbook G5, running windows 10 1909. VMware is workstation 15.2.

 

I have a Lenovo computer running windows 10 1909 as well. The installation of VMWare workstation 15.5 was straight forward.

Can anyone help on this?

Thank you,

James

Dashboard with VM names and associated VLAN's

$
0
0

Hey All,

 

Need to create a dashboard with VM names and associated VLAN's..  How would I accomplish this? Running Vrops 6.4.  Security constantly asks me for this info at my job..

 

 

 

Thanks..

Viewing all 178097 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>