Re: Export and inmopt custom fields
Got the same error and i tried different formats with quotes or delimeterFirst try #$CSV = Import-CSV -Path $CSVPath #-Delimiter ";" ## Use -Delimiter if needed$CSV = Import-CSV -Path $CSVPath ";"##...
View ArticleRe: what is v motion?
vMotion is the process of live migrating a virtual machine from one host to another, i.e. without downtime for the VM. André
View ArticleRe: The SAM database on the Windows Server does not have a computer account...
Hi, May be the KB helps. KB
View ArticleRe: orphaned vmdk files script
The example of LucD is good. In the attached script you just need to replace the following line:$row.Size = $fileResult.FileSizeBy this line$row.Size = [math]::Round($fileResult.FileSize/1GB,1)
View ArticleRe: HBA Failure Outcome
Fantastic. .. thank you so much. My fear was that isolating the SAN would just leave the VM on the host in limbo as the host networking is fine and is therefore actively involved in network heartbeats...
View ArticleRe: Licensing a vCenter 6 instance via PowerCLI 6
Have a look at the posting by Brian Graf over at Adding License Keys to vCenter with PowerCLI | Brian Graf's Virtualization Blog I've cut out the code below which works in our lab environment in...
View Articlethere was question asked in interview they are having the 200 snapshots and...
they said already tried consolidation but not working there is no locks how you will remove the snapshot and what is the process.
View ArticleRe: Extend storage recommendation
Thanks for replyJarryGJarryG, With Dell specific a 800GB SSD MLC cost about 1,300 USD while a 900GB 10K RPM SAS is about 600 USD. So there is a pretty considerable price diff. Not sure if the...
View ArticleRe: vSphere 6 Web Client Empty Inventory
We're running into this as well. using the appliances and external PSC's. It's driving my users crazy because I have to go in and fix it every time it dies. Would love to know a resolution if one is...
View ArticleRe: Licensing a vCenter 6 instance via PowerCLI 6
Yeah, read that article and that part works perfectly. But that just adds the license to the pool of licenses but doesn't actually assign it to the vCenter server. I can see the license but haven't...
View ArticleRe: Problems removing license keys
Have you tried to follow the steps mentioned in the below link - VMware KB: Licensing ESXi 6.x and vCenter Server 6.x
View ArticleRe: Enable vSphere Web Client Automation
Hi Peter, >> Which version of the tool are you using? We are using version 3.0.0 internally. I am using 3.02 version >>Where did you get MonsterDebugger.swc from? Through monster...
View ArticleRe: Windows 7 - Is there a way to see the Windows logoff from a zero client?
Yeah. It's a bummer. One trick if you really need to see what is going on. Log in and out of a desktop from the vSphere console.
View Articlereplaced dual cpu hosts with single cpu
will there be any performance issues if I replaced a dual pcpu dell host with a single cpu host but has 6 cores? we have been looking into cutting down power consumption and our remote offices will be...
View ArticleRe: Extend storage recommendation
Not sure about "Dell-specific", but some time ago I learned that "HP-specific" drives are nothing more, than re-branded Seagates. We bought quite expensive "HP-drive". There was sticker on it. I...
View ArticleRe: Esxi6 under KVM
Can you boot with the additional vmkernel option, "vmbASLR=FALSE" and post the new PSOD?
View ArticleRe: Insert variable/attribute into SSH command?
Not directly with the stock 'Run SSH command' workflow. If you take a look at the scripting code of this workflow, you'll see that the input command string entered by the user is passed directly to the...
View ArticleRe: SSO authentication error for service account
Does it historically attempt to login in UPN format as it is attempting to do so in the events list?
View ArticleRe: Get-VM | Get-TagAssignment
Hi,Move the line$Tag = $VM | Get-TagAssignmentbelow the line$VM = $_The variable $VM doesn't exist until the line $VM = $_Then replace$Report.Tag = $_.TagBy$Report.Tag = $Tag.tag
View Article