Skip navigation
VMware

LucD

Status Level:
Guru (36,075 points)
Web Site:
http://lucd.info
Member Since:
Oct 31, 2005
Last Logged In:
May 22, 2012 9:40 PM
Occupation:
System Eng
Expertise:
PowerCLI,Update Manager snapin,Onyx,PowerShell
Location:
Belgium
Signature:
Blog: http://lucd.info | Twitter: @LucD22 | Book co-author: http://powerclibook.com
Groups:
PowerShellers
Moderator:
User Moderators Yes
vExpert:
vExpert Yes

Recent Activity

LucD replied to change host ntp settings

"The Parse method reads a string and converts it to a DateTime object. But why would you use that ? Get the actual date, and do   $_this"

in VMware vSphere™ PowerCLI - 2 replies
22 hours ago
LucD replied to help with export

"Try something like this   $vms = Import-CSV "c:\temp\vmlistaa.csv" <br />foreach ( $vm in $vms ){   Get-VM"

in VMware vSphere™ PowerCLI - 5 replies
22 hours ago
LucD replied to Where is the "vCenter Server dialog box for automatic installations and upgrades", PLEASE!?!?!

"There is an option in the VM settings to check and update the VMware Tools on each Poweron. You can change that setting with this script fo"

in VMware vSphere™ PowerCLI - 2 replies
22 hours ago
LucD replied to SCSIController Object Behaving Differently in vSphere 5 than vSphere 4.1

"You didn't say which type of SCSI Controller is used, by from some quick tests it looks as if in vSphere 5, the BusNumber is still there and"

in VMware vSphere™ PowerCLI - 2 replies
23 hours ago
LucD replied to A script to email notifications to all vCenter Appliance 54 default alarms does work as expected, however it ends up with an error.

"Ok, I think I found the problem. You are defining 3 actions on that alarm (3 x Email). That means that this   Get-AlarmDefinition -"

in VMware vSphere™ PowerCLI - 5 replies
1 day ago
LucD replied to Need a script to Create virtual machine annotations

"The CSV file looks ok, but the error says that you have a $vm with a $null value. Can you open your CSV file with notepad and check if ther"

in VMware vSphere™ PowerCLI - 9 replies
1 day ago
LucD replied to A script to email notifications to all vCenter Appliance 54 default alarms does work as expected, however it ends up with an error.

"Which specific alarm are you trying to update ? What is in $actAlarm1 ?"

in VMware vSphere™ PowerCLI - 5 replies
1 day ago
LucD replied to ESX host version and build number with PowerCLI - Export issue

"Yes, if you place the hostname and Config.Product object together in the pipeline, the Export-Csv cmdlet will not know how to handle this."

in VMware vSphere™ PowerCLI - 7 replies
1 day ago
LucD replied to ESX host version and build number with PowerCLI - Export issue

"Try this   get-view -ViewType HostSystem -Property Name , Config.Product | % { $_ . Config . Product }"

in VMware vSphere™ PowerCLI - 7 replies
1 day ago
LucD replied to ESX host version and build number with PowerCLI - Export issue

"Not sure what exactly you are trying to do, but there is a closing curly brace missing. Is this producing what you want ?   get-view"

in VMware vSphere™ PowerCLI - 7 replies
1 day ago
LucD replied to Change Path Policy for a Dell Compellent?

"Try something like this   Connect-VIServer vCenterServerName.fqdn.com Get-VMHost | where { $_ . Model -like"

in VMware vSphere™ PowerCLI - 3 replies
1 day ago
LucD replied to VM Correct DISK IOPS

"No need to specify the IntervalSecs and Finish parameter. The Get-Stat cmdlet knows, based on the Start parameter, which interval you want."

in VMware vSphere™ PowerCLI - 11 replies
1 day ago
LucD replied to Connect Local Drive ISO Image to VM through PowerCLI

"I'm afraid this is not yet available."

in VMware vSphere™ PowerCLI - 8 replies
1 day ago
LucD replied to How can i add a nic to a vapp deployed by vcd1.5

"Moved to the vCloud Director PowerCLI Community."

in vCloud Director PowerCLI - 3 replies
2 days ago
LucD modified How can i add a nic to a vapp deployed by vcd1.5

"Hi any advise how i can add a nic to a vapp using power cli i'm have powercli 4.1 with vcentre 4.1 U1"

in vCloud Director PowerCLI - 0 bookmarks
2 days ago
LucD replied to change default psp and existing devices to RR

"That looks ok. I would just add a test if Get-EsxCli actually returned anything. And perhaps avoid to have the same constants twice in you"

in VMware vSphere™ PowerCLI - 2 replies
2 days ago
LucD replied to powercli script to capture cpu & mem usage stats

"I'm afraid that's a flaw in the current version. You could check if the VM is powered on with a Where-clause."

in VMware vSphere™ PowerCLI - 30 replies
2 days ago
LucD replied to powercli script to capture cpu & mem usage stats

"The attached script does CPU and Memory statistics. Or do you mean something else ?   Concerning the error, that could be caused by a VM"

in VMware vSphere™ PowerCLI - 30 replies
2 days ago
LucD replied to Set static ip for an ESXi-VM

"The Set-OSCustomizationSpec cmdlet itself will only work when executed on a 32-bit machine. But the target machines, on which you want to"

in VMware vSphere™ PowerCLI - 2 replies
2 days ago
LucD replied to how to use get-log but for .net api instead

"I assume you already consulted the vSphere Web Services SDK Programming Guide ? In there are several sections that document how to work w"

in VMware vSphere™ PowerCLI - 6 replies
2 days ago
LucD replied to Getting different IP Address on Windows XP and Linux running on VMWare

"Moved thread to VMware Workstation."

in VMware Workstation - 4 replies
3 days ago
LucD modified Getting different IP Address on Windows XP and Linux running on VMWare

"Before asking question i must say that i am a Newbie in networking and  hence need help from you guys here. Am having a Windows XP computer"

in VMware Workstation - 0 bookmarks
3 days ago
LucD replied to how to use get-log but for .net api instead

"You assume right, the Get-Log cmdlet uses a method from the SDK API. That is the GenerateLogBundles_Task method that is present on the D"

in VMware vSphere™ PowerCLI - 6 replies
4 days ago
LucD replied to Get-VMHost returns duplicate host names

"That looks as if you were connected to the vCenter and the ESXi server(s). You can check which connection are open with $defaultVIServers"

in VMware vSphere™ PowerCLI - 13 replies
4 days ago
LucD replied to How to get IP/MAC info of ILO board as shown in hardware status tab

"Oops, didn't notice it was the same link. There is also an ILO PS library ,perhaps that offers some possibilities.   Or else you could"

in VMware vSphere™ PowerCLI - 5 replies
4 days ago

Connections

  • 74 people are following LucD
  • LucD is following 0 people

Communities