Quantcast
Channel: VMware Communities: Message List
Viewing all 228535 articles
Browse latest View live

Re: vMotion SQL Server 2014 to a New Cluster


Re: INSTALL WINDOWS XP MEDIA CENTER EDITION WITH 2 CD ISO

$
0
0

ok thanks going to try install later...

Re: Parsing Get-Notes from

$
0
0

We should be able to get rid of the blank lines with a Where-clause.

 

    $vm.Notes.Split("`n")|where{$_-ne''}|

 

Re: vSAN all-flash lab failures

$
0
0

Hello Rich,

 

Did you upgrade this cluster to 6.7 or clean install?

I ask as if you look on reddit and elsewhere a load of home-labbers have encountered issues with whitebox NVMe components - initial issues being in later versions of 6.7 and having to use 6.7 GA inbox driver and/or hacky workarounds to get these working and then in 7.0 other issues due to how they upgraded the cluster as William Lam covers here:

https://www.virtuallyghetto.com/2020/04/important-nvme-ssd-not-found-after-upgrading-to-esxi-7-0.html

 

Bob

Re: INSTALL WINDOWS XP MEDIA CENTER EDITION WITH 2 CD ISO

$
0
0

Moderator: Thread moved to the Windows guest area.

Re: Can't undo some settings after running the VMWare OS Optimization Tool

$
0
0

I think the following OSOT optimization needs to be reset to "0"

<step name="Turn off Thumbnail Previews in File Explorer"

      description="Enable this policy, Disable Thumbnail Previews in File Explorer."

      useCaseCatagory="VisualEffect" useCaseLevel="0"

      category="recommended" defaultSelected="true" runOnOs="16">

  <action>

    <type>Registry</type>

    <command>ADD</command>

    <params>

      <keyName>HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer</keyName>

      <valueName>DisableThumbnails</valueName>

      <type>REG_DWORD</type>

      <data>1</data>

    </params>

  </action>

</step>

André

Re: I'm try to upgrade my vCSA from 6.0 to 6.5, using the GUI , however it fails with the error "A problem occurred while getting data from the source vCenter Server."

$
0
0

Resolution:         Reset root password for the PSC / VCSA VM that is being upgraded.

 

SSH into the source PSC / VCSA VM

Use the below commands to change the password:

 

Command> shell.set --enabled true

Command> shell

Shell access is granted to root

root@vc1 [ ~ ]# passwd

New password:

 

     

--

Arun Kumar

Install / Upgrade / Migrate Team

VMware

Re: Parsing Get-Notes from

$
0
0

Well that gave me an interesting csv. I'm guessing I put your suggestion in the wrong place.

 

Get-VM -PipelineVariable vm |

ForEach-Object -Process {

    $obj = @{

        VM = $vm.Name

    }

    if($vm.Notes){

   $vm.Notes.Split("`n") | where{$_ -ne ''} |

    ForEach-Object -Process {

        $name,$value = $_.Split(':=')

        if($obj.ContainsKey($name)){

            Write-Host "VM $($vm.Name) seems to have multiple entries for $name"

        }

        else{

            $obj.Add($name,$value)

        }

    }

    }

    else{

        Write-Host "VM $($vm.Name) has no notes"

    }

    try{

    New-Object -Typename psobject -Property $obj -ErrorAction Stop

    }

 

    catch{

 

        Write-Host "Error creating the object for VM $($vm.Name)"

 

        $obj.GetEnumerator()

    }

 

} | Sort-Object -Property {($_ | Get-Member).Count} -Descending |

Export-Csv -Path .\report-noblank.csv -NoTypeInformation -UseCulture

 

 

CSV:

 

How about we ask for those lines in notes that have verbiage with a colon separator? From the looks of it, someone has filesystem information recorded in notes. Skip everything that isn't prefaced with  XYZ:  (XYZ could be anything as long as it's followed by a colon).


Re: vCloud Director 9.7 Appliance Disconnected

$
0
0

Hello

 

Are you using multiple cells and have some kind of load balancing / reverse proxy in front ?

 

Just for your information - we had the same issue a while ago.

We fixed this with using the same SSL cert for all our cells

 

Generally this is related to the fact that vCD now provides 2 services at the same IP, but with bit different characteristics

vCD portal service is the standard https, and the load balancing can be configured with SSL termination

vCD console proxy is bit more tricky - this is supposedly TCP raw socket connection.

 

Please google further the topic of vCloud Director load balancer console proxy, for example:

https://blah.cloud/cloud/vcloud-director-console-proxy-ui-single-ip/

Nessus Scans ESXi

$
0
0

I have a regulatory requirement to let Nessus scan my ESXi boxes.  I have two challenges with this.

 

Challenge 1: Turning on the ESXi Shell and SSH on.  How can I automate this so it happens to all boxes at the same time?

 

Challenge 2:  Using a Windows account I can add to let it log on to the ESXi box.  Windows accounts can logon to vSphere but not ESXi.  I do not want to give a way the root account.

 

How do you let your environment get scanned.

Re: INSTALL WINDOWS XP MEDIA CENTER EDITION WITH 2 CD ISO

$
0
0

ok, now working ! thanks !! but seems that I dont have a internet connection... internet exploer not working... what settings I have to put in vm settings ? thx

Re: vSAN all-flash lab failures

$
0
0

Hi Bob, yes I have read those. This was a fresh install initially of 6.7 U3, and when I faced these exact same issues, i did another fresh build of ESXi 7.0 and vCenter 7

 

I actually wouldn't mind trying an NVME from the HCL, I just can't be certain it's not an issue with a storage component on the NUC board itself, or somethng in intel's BIOS. Not really sure where to go with it next.

Re: INSTALL WINDOWS XP MEDIA CENTER EDITION WITH 2 CD ISO

$
0
0

There can be several reasons for this:

  • no driver installed for the VM's virtual network adapter
  • incorrect network type selected in the VM's settings (e.g. Host-Only)

 

Does the network adapter show up in the guest OS, and does it have a valid IP address?

 

André

Re: Parsing Get-Notes from

$
0
0

No, that is the right place.

 

To test only for lines that have a ':' in there, except in the 1st position we can use

 

    $vm.Notes.Split("`n")|where{$_-match'^(?!:).*:.*'}|

 

Re: I'm try to upgrade my vCSA from 6.0 to 6.5, using the GUI , however it fails with the error "A problem occurred while getting data from the source vCenter Server."

$
0
0

VMAKS

You've likely not noticed it, but you were responding to a more than two years old question.

In addition, the source (see screenshots) is a vCenter Server running on Windows.


André


Re: Concurrent-context attack vector vulnerability in Intel processors

$
0
0

These changes remove the warning, but how much does it affect the performance of the host?

Re: Parsing Get-Notes from

$
0
0

Yay!!!! That did it Luc. I just have to clean up my VM Notes where there are duplicate elements and I'm good to go. For something that seemed like it was going to be easy it sure wasn't. Thank you so much for your help.

 

Get-VM -PipelineVariable vm |

 

ForEach-Object -Process {

 

    $obj = @{

 

        VM = $vm.Name

 

    }

 

    if($vm.Notes){

 

    $vm.Notes.Split("`n") | where{$_ -match '^(?!:).*:.*'} |

 

    ForEach-Object -Process {

 

        $name,$value = $_.Split(':=')

 

        if($obj.ContainsKey($name)){

 

            Write-Host "VM $($vm.Name) seems to have multiple entries for $name"

 

        }

 

        else{

 

            $obj.Add($name,$value)

 

        }

 

    }

 

    }

 

    else{

 

        Write-Host "VM $($vm.Name) has no notes"

 

    }

 

    try{

 

    New-Object -Typename psobject -Property $obj -ErrorAction Stop

 

    }

 

    catch{

 

        Write-Host "Error creating the object for VM $($vm.Name)"

 

        $obj.GetEnumerator()

 

    }

 

} | Sort-Object -Property {($_ | Get-Member).Count} -Descending |

 

Export-Csv -Path .\report-noblank2.csv -NoTypeInformation -UseCulture

Re: INSTALL WINDOWS XP MEDIA CENTER EDITION WITH 2 CD ISO

$
0
0

i selected nat by default... now seems connected but when i open intenet pages i receive this message

Your connection is not private

 

 

Attackers might be trying to steal your information from www.google.com (for example, passwords, messages, or credit cards). NET::ERR_CERT_AUTHORITY_INVALID

  Automatically report details of possible security incidents to Google. Privacy policy

Back to safetyHide advanced

This server could not prove that it is www.google.com; its security certificate is not trusted by your computer's operating system. This may be caused by a misconfiguration or an attacker intercepting your connection.

 

 

Proceed to www.google.com (unsafe)

Re: External ExFAT HDD won't mount in Windows 10 / Fusion VM

$
0
0

I am having the exact same issue. External SSD drive and it WILL NOT MOUNT.

I stated on Win10 and even rolled back to Win8. Any chance there is a fix?

 

I badly need access to this external drive.

Re: Workstation 15.5.6 now available

$
0
0

On my system 15.5.6 has indeed fixed the issues. In my case these were the Caps Lock and Num Lock issues as well as the sound issues.

 

While undoing the workarounds in the .vmx config files a question arose: As part of the workaround we were told to switch from the default audio device (emulated ES1371 sound device) to the hd audio device using the switch 'sound.virtualDev = "hdaudio"'. Now that the issues with the emulated ES1371 sound device have been fixed should we return to said virtual device or do you recommend sticking with the virtual hd audio device?

Viewing all 228535 articles
Browse latest View live


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