Long boot time after enabling iSCSI ( ESXi 5.5 )
Our setup:Esxi 5.5 build (1623387) SAN:-Dell PowerVault 3220i (two RAID controllers with four ports each)-Two dedicated Powerconect 5224 switches for iSCSI SAN. There are two VLANs per switch for a...
View ArticleRe: PowerCLI Scheduled Task Won't Write To File
You could try the STart-Transcript and Stop-Transcript cmdlets, or revert to some Write-Output lines at strategic places in the script. And split the lines in smaller parts, so you can see the...
View ArticleRe: PowerCli SRM ListAssociatedVms throwing The Operation is not support on...
I dont think so LucD. But now I am wondering if its a version issue of the vCenter/SRM. I think we have version 5.0 update 3. VMware vSphere PowerCLI 5.5 Release 2 supports the following VMware...
View ArticleRe: PowerCli SRM ListAssociatedVms throwing The Operation is not support on...
Could be a version thing, but that method seems to be supported since API 5.0, so that should work (I think) I'm a bit confused by the code you showed, there it...
View ArticleRe: Query : What the things will HA impact while configuration updates.
Avinash is damn correct. HA is a feature wcich is designed to tolerate HOST failure to restart the VMS of failed host to active healthy host.
View ArticleRe: Long boot time after enabling iSCSI ( ESXi 5.5 )
Do you have RDMs attached? If yes have a look at this article VMware KB: ESXi/ESX hosts with visibility to RDM LUNs being used by MSCS nodes with RDMs may take a long time to boo…
View ArticleRe: ESXi 5.1: vmsvc warning guestinfo RecordRoutingInfo: Unable to collect...
Your e-mail has been forwarded to my new address. There is no need to re-send it. However, please update your address book and change my contact information.My new e-mail address is...
View ArticleRe: Thinapped Quickbooks Pro 2014 and updates
Thanks for the update. I decided that the only way forward with this is to repackage it again every time Quickbooks force an update on us. Not the best solution, but the only one I can find. Now for...
View ArticleLate alerts coming from over a month ago
We had an issue with our vCOPs about a month ago and it was running yet not fully running for about 3 weeks. VMware finally fixed it and we are up and running now. The challenge now is these alerts...
View ArticleWorkstation 10 Not able to connect USB Drives
I had no issues with my Workstation 10 until I re-installed my Windows 7 OS and had to re-install Workstation as well. Surprisingly, I am facing issues trying to connect to any of the USB drives on my...
View ArticleRe: Issue with new HP USB printer through View 5
I am having the same issue still in 2014. View Agent 5.3, Connection server 5.2. I am experiencing the same issue with the same model of HP printer. It is only detected as a USB storage device and is...
View ArticleWhere filter with -like
Hello, I'm trying to figure out how to make this script work, using a filter. This script will look for CD-ROM drives that have a iso file mounted. This works perfect. Get-VM | Sort Name |...
View ArticleNo Internet Connection in XP. Host is Windows 7 . What to do?
I have just installed Windows XP 64 bit on this Windows 7 Laptop.using Vmware 9.0 Workstation. XP installed fine but no Internet there. I have installed a wireless NIC there in the XP. that is not...
View ArticleRe: decrease RAM on vsphere 5.5 clients using powershell
HiWith PowerCLI you can use cmdlets Set-VM with parameter MemoryGB something like below:Get-VM VM1 | Set-VM -MemoryGB 2orGet-VM $VMName | Set-VM -MemoryGB $memorysize -Confirm:$false If you want to...
View ArticleRe: VMware Fusion 6 pro connecting two machines
HiNeed more information like what IP & Subnet are you using, how do you configure the virtual machines, how many network adapters, etc.Host-only should work if you do not need any connections from...
View ArticleRe: PowerCli SRM ListAssociatedVms throwing The Operation is not support on...
Hi LucD, You are right... the error message I pasted was for a different execution. Sorry about that. Here is the error Exception calling "ListAssociatedVms" with "0" argument(s): "The operation is not...
View ArticleRe: ライセンスキーがわからない。。。
こんにちは。 私の環境ですと、MyVMwareにログイン後Account(上部の黒いバー)のマウスオーバーでLicense Keysを選択すると表示されました。Fusion の販売はすべてイギリスのVMware Internationalで実施しているため、お問い合わせもすべてそちらになります。...
View ArticleRe: Windows 7 VM has trouble receiving Cmd+ keystrokes as Control+
Thanks for commenting, Chad882. At least it's not something specific to my setup. Fusion seems to have a lot of things going for it, but this fundamental problem makes it close to unusable for me. It's...
View ArticleRe: Issue with new HP USB printer through View 5
I did a quick search and found this, hopefully it helps: USB Device Redirection in VMware Horizon View 5.1 and 5.2 | VMware End-User Computing Blog - VMware Blogs Bob VaalApril 1, 2013 at 5:45...
View ArticleRe: Where filter with -like
One option would be:Get-VM | Sort Name | Where-Object {$_.PowerState -eq "PoweredOn"} | Get-CDDrive | Where { $_.IsoPath -like "*.iso"} | FT Parent, IsoPath André
View Article