PowerCLI is distributed as a Windows PowerShell snapin, and includes more than 230 PowerShell cmdlets, along with documentation and samples. VMware vSphere PowerCLI is a powerful command line tool that lets you automate all aspects of vSphere management, including network, storage, VM, guest OS and ...
2
votes
1answer
2k views
Which VMware API should I use?
I'm trying to write a fairly simple application in C# (or at least, I think it should be simple) that polls a vCenter for all of its ESX servers, then each ESX server for all of its VMs. It will ...
1
vote
0answers
26 views
writing a message to a RemoteSession VMWare
I would like to write a message to a client who is connected via a remoteSession. I would like to use the Powershell Snap-In View PowerCli.
Is there a possibility?
My main target is: When I send a ...
1
vote
1answer
85 views
Need Get-VM progress
We have a very large environment therefore it takes around 5 mins to collect all of the VMs and store them into a variable. I need a way to display progress until this collection is complete. I ...
1
vote
2answers
198 views
Powershell to shut down a VM
I have a small Powershell script that is used to shut down my virtual machines in event of an extended power outage. It takes a specific VM object and forces a shutdown.
Function DirtyShutdown
{ ...
1
vote
1answer
1k views
Running PS1 script using a batch file (.bat)
Currently this is my path for launching VMware vSphere PowerCLI command prompt. I wish to run my sample.ps1 script automatically using a batch file. How can I incoporate sample.ps1 into this path and ...
1
vote
1answer
593 views
Booting from an ISO image using PowerCLI scripts
How do I make the following script work? Currently I am able to create a new virtual machine in my server. I wish to also load the Windows ISO image and do an unattended installation in the virtual ...
1
vote
1answer
373 views
Retrieving real time info from VM's with PowerCLI
I have a couple of lines in a script that are giving me an issue:
Connect-VIServer "test-vcenter.test.com" -User user -Password pass
Get-VM -Name "test-vm" | Get-Stat -Stat cpu.ready.summation ...
1
vote
2answers
390 views
For vSphere and vCenter automation, is PowerCLI cmdlets or VIX API the better approach?
http://www.vmware.com/support/developer/vix-api/ has VIX docs and says it is useful for automation of interactions with ESXI and vCenter
vSphere PowerCLI is a command-line and scripting tool based on ...
1
vote
1answer
664 views
C# code to access VMware vSphere PowerCLI
Are there examples of C# code accessing vSphere API through PowerCLI or otherwise? For test automation, is PowerCLI script or C# code calling vSphere API the better choice? Please advise on docs and ...
0
votes
0answers
17 views
How to obtain VMWare ESXi logging from Vsphere? [closed]
How to obtain ESXi log files using PowerCLI.
Will the log files contain details of usage? ( I mean if some one has used guest machine in the host, will it be logged in?)
0
votes
1answer
105 views
Automated deployment using VMware powercli
We are having build environment where we did not use any tools like Cruise control , TFS or buildforge.
We are purely depend upon Msbuild and powershell. We decided to automate the deployment ...
0
votes
3answers
140 views
VM Clone to the Subdirectory of a Datastore
I have a Datastore in vCenter that I'm trying to clone to using a PowerCLI script I run weekly. I can clone virtual machines to it, but I have absolutely no control over the directory structure. ...
0
votes
2answers
195 views
So what is special about Powershell Psc1 files?
On my powershell shortcut I have the following:
C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe -psc "C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\vim.psc1" -noe -c ". ...
0
votes
1answer
213 views
Exiting VMware vSphere PowerCLI command prompt?
Is there a script to input to exit VMware vSphere PowerCLI command prompt after executing a set of script for example created of VM.
MY last line of my .ps1 script is shown below, but the exit does ...
0
votes
0answers
139 views
How to remove SCSI controller in VM creation manually? [closed]
I am currentlyl using powercli script to creat a new VM (New-vm COMMANDLET). I also added a new-cdrom and link it to the ISO image of windows xp. But it will not recognize my harddisk and whenever i ...
0
votes
1answer
141 views
Recommended approach to deploy VMware PowerCLI command line console application
PowerCLI with .NET has some dependencies on dll's that you get only when you install PowerCLI on each machine you want to run.
I have a console app with command line arguments, which when deployed ...
0
votes
0answers
175 views
Error in installing operating system on virtual machine using powercli scripts
I've created a PowerCLI script able to create the virtual machine and link the ISO image. I managed to load the ISO image using:
# Virtual Center Details
$server_address = "xxx"
$username = "xxx"
...
0
votes
0answers
73 views
Intercept error messages on VMware vSphere client using PowerCLI for .NET
Is there a way to catch the error messages appearing on the VMware vSphere client using PowerCLI for .NET?
I used Project Onyx 2.0 to capture all mouse clicks and obtain code in C#. But if some ...
0
votes
2answers
333 views
Scripting using powerCLI Scripts
Is it possible to do scripting using powerCLI scripts to automate VM creation using notepad? or any powerCLI developing tool?
How to go about studying PowerCLI scripting from scratch to automate VM ...
0
votes
2answers
242 views
command to get the number cpu exists on vmware
Is there any cli command to know the configuration details of VM like, number of existing cpus, number of network cards etc., in VM.
0
votes
2answers
119 views
Cmdlet Contention between PowerShell SnapIns
I ran into an issue while using both the Vmware PowerCLI and System Center Virtual Machine Manager snap-ins for PowerShell. They both contain similarly named cmdlets, like 'Get-VM' and 'Get-VMHost'. ...
0
votes
2answers
173 views
Can one use VMWare vCloud API in its own datacenter
Currently we're building a small datacenter. For the Infrastructure-as-a-Service part I'm planning to use VMWare vSphere. I know VMWare is pushing its vCloud API so my question is: how can I install ...
-1
votes
1answer
124 views
Comparison between Hyper-V and PowerShell vShpere
May I know what is the comparison between these 2 softwares. Hyper-V and PowerShell vSphere. I know that Hyper-V is only used in Microsoft. And PowerShell vSphere can be used in most OS. But I wish to ...
-2
votes
1answer
100 views
What does the CLI means in PowerCLI? [closed]
PowerCLI is a scripting tool used for VM automation and creation.
Is there a way to use this scrip to automate and create VM?
May I also know what is silent installation and how does it work?