New-harddisk - add VMDK existing on the virtual computer

Hello

I am storing the vmname and diskpath in a csv file and calling to add exisiting vmdk virtual machines.

The script works fine, but the only problem, he travels twice and adds the same disc twice

I even joined the CSV file for reference

# load the module for VMware

$VimAutoCore = "VMware.VimAutomation.Core".

If ((Get-PSSnapin-nom $VimAutoCore-ErrorAction SilentlyContinue) - eq $null) {}

Write-Host "loading powershell module $VimAutoCore."

Add-PsSnapin $VimAutoCore

}

#connect the vCenter Server

$vcenter = Read-Host "Please enter the host name or IP address vCenter?

#this prompts the user to enter the user name and password to connect to the vCenter

Write-Host "Connection to the vCenter Server" - ForegroundColor yellow

SE connect-VIServer-Server $vcenter - ErrorAction Stop - https protocol

#prompt to enter the path to the CSV file

$csvpath = Read-Host "Please enter the path to the CSV file.

$vmlist = import-CSV-path $csvpath

{foreach ($item in $vmlist)

# Map variables with csv columns

$vmname = $item.vmname

$diskpath = $item.datastorepath

Write-Host "Attach the disk to $vmname" - ForegroundColor yellow

New-disk-hard - VM $vmname - DiskPath $diskpath

#Write - Host "turn on/off Virtual Machines"-ForegroundColor yellow

#Start - VM - $vmname VM - confirm: stop - ErrorAction $false

}

Write-Host "Done" - ForegroundColor yellow

Disconnect-VIServer $vcenter - confirm: $false

Ridiculous Ahh... I had several connections to the same server vCenter Server in the console PowerCLI even...

Tags: VMware

Similar Questions

  • Cannot add USB controller to the virtual computer

    We are trying to add a USB port to a virtual machine under ESXi 4 (free) material: it gives us the opportunity, said it can be added to this virtual machine, shows, she added to the list, but when I click on 'ok' final we get this error in a pop-up (Word for Word):

    "There are not enough licenses to complete this operation.
    ' Hotplug not approved, required function have need.

    Yes, that's exactly how the second line reads.

    In ESXi 4, you must completely shut down the virtual machine before you can add the USB controller. It's a change of 3.5, enabling you to 'hotplug' material while the machine was still running.

    In addition, you will probably be able to connect a USB device to a virtual machine. I have yet to find someone who has got this to work with the free license and no additional software. There are USB for IP devices that have been suggested for use with ESXi. If someone got the USB transfer to work on a box of vanilla ESXi, pleas ëlet me know. It would be quite beneficial.

  • Strange problem after moving from the virtual computer to a new data store

    I am migrating our VM existing (8 in total) a 'problem' RAID to a new table on a new controller and am having a strange problem. Here are the steps I took (host OS is Ubuntu 8.0.4 LTS x 64):

    (1) off the power the virtual computer from the Web interface

    (2) the directories created for each virtual on the new RAID array computer (in this case a RAID 10 array on LSI 9750-8i controller)

    (3) rSync used to copy the data from RAID1 to be RAID2

    4) has created a new data store on the new RAID through the Web Server of VMWare user interface.

    (5) removed VM of the inventory through the Web, their return, added user interface then choose files .vmx on new data store on RAID2

    They have all power save fine... but three of them are not accessible on the network. I can open a console in the Web Server of VMWare user interface and they all run normally... but I can't their ping or access the respective virtual machine Web GUI. It seems quite arbitrary that those who work and those who are not. In this case... the VM that don't work is a license Autodesk, a Squid proxy server and a VM of cactus. All three of these virtual machines are 32-bit Ubuntu Server VM (two 8.0.4 and a 10.0.4)... and are the only Ubuntu VM on this host. It must be signifigant but I'm not see how.

    If I delete these three virtual machines of the inventory again and add to their original location (on the RAID1) they light up AND work normally. A consultant that we were working seemed surprised, as he had also done this experiment with some of the older VMWare products. I don't see how it would be the physical location of the files of the virtual machine. Any ideas?

    We rely on the migration to ESXi soon but in the meantime, we get these a few VM out of this RAID array problem. I'm stuck.

    Depending on the application, it may be enough to reconfigure the IP parameters (they are very probably on DHCP now) for the newly detected virtual NIC.

    André

  • Try to use the converter to push a VMX and VMDK existing in the environment file. Have you tried the Converter 4.3 and 5.0, continues to crash or delay. A 5.1 with ESXI 5.1 vCenter server hosts going conversion.

    Try to use the converter to push a VMX and VMDK existing in the environment file. Have you tried the Converter 4.3 and 5.0, continues to crash or delay. A 5.1 with ESXI 5.1 vCenter server hosts going conversion.

    Take a look at this article. You can try Converter standalone 5.0.1 or 5.1 beta.

    http://KB.VMware.com/kb/2033315

  • After the Virtual Machine is hot migrated lose the reference to the virtual computer object (VMware.Vim.VirtualMachine)

    Hello

    In my VB.Net application, I retrieve the virtual computer object (VMware.Vim.VirtualMachine) through scripting Powershell VI.

    If the Virtual Machine is migrated to another host (hotmigrate) I receive an event (VMware.Vim.VmMigratedEvent), which also holds the moref of the Virtual Machine. I tried to use the updateview method to refresh the virtual computer object but failed with an error message stating that the object could not be found, or never existed.

    I also tried to recover the virtual computer object again, throug the method Client.GetView and the moref returned by the event, but the same error message.

    How can I get my hands on the virtual computer object or update after migration to another host takes place. I have to get it back again? It would be great if I could do it somhow with information from moref I hold the event!

    Any help is appreciated!

    Concerning

    Manfred

    Sorry, but I can only show you how to do this in PowerShell.

    I use the purpose of the task to get to the prompt MoRef.

    Here's how:

    $vmName = 
    $tgtHost = 
    $tgtPool = 
    
    $vm = Get-VM $vmName | Get-View
    $poolMoRef = (Get-ResourcePool $tgtPool | Get-View).MoRef
    $esxMoRef = (Get-VMHost $tgtHost | Get-View).MoRef
    
    $task= Get-View ($vm.MigrateVM_Task($poolMoRef, $esxMoRef, "lowPriority", "poweredOn"))
    
    while($task.Info.State -eq "running" -or $task.Info.State -eq "queuing"){
      $task.UpdateViewData()
    }
    
    $vmImpl = Get-VIObjectByVIView -MORef $task.Info.Entity
    

    I don't know how you get at the VmMigratedEvent event, but the MoRef in there is pointing to the correct prompt.

    In the following script, I extracted all the events related to the task of vMigrate immediately after the vMigrate task finished

    function Print-VmName{
         param($event)
    
         $MoRef = New-Object VMware.Vim.ManagedObjectReference
         $MoRef.Type = $event.vm.vm.type
         $MoRef.Value = $event.vm.vm.Value
         $vm = Get-View $MoRef
         Write-Host $vm.Name
    }
    
    $events = Get-VIEvent -Start (Get-Date).addminutes(-15)
    $events | % {
         $event = $_
         $eventType = $_.GetType().Name
         switch ($eventType){
              "VmMigratedEvent" {
                   $eventType
                   Print-VmName $event
              }
              "VmEmigratingEvent"{
                   $eventType
                   Print-VmName $event
              }
              "VmBeingHotMigratedEvent" {
                   $eventType
                   Print-VmName $event
              }
              "TaskEvent" {
                   $eventType
                   Print-VmName $event
              }
         }
    }
    
  • need to reconfigure the virtual computer after deployment of the vm

    Hi all

    I have a script to deploy a computer virtual to a CSV file. I need to change the configuration of virtual machine (CPU and memory) after the deployment of the vm. where the name of the virtual machine should be taken to csv. So any help is appreciated.

    Attach the script used. (downloaded and works fine)

    $vms = import-CSV D:\vm-deploy\vm-deploy.csv

    {foreach ($vm to $vms)

    $Template = get-model $vm.template

    $VMHost = get-VMHost $vm.host

    $Datastore = get-data store $vm.datastore

    $OSCustomization = get-OSCustomizationSpec $vm.customization

    New-VM-name $vm.name - OSCustomizationSpec $OSCustomization - VMHost - $VMHost model $Template - $Datastore - Datastore RunAsync

    }

    # This cmd need to run after the vm deployment completed. The virtual computer name must come from the 1 column of the CSV file

    Set-VM $vmname - NumCpu 2 - MemoryGB 5 - confirm: $false

    Write-Host "All VMs deployed" - ForegroundColor Green

    Disconnect-VIServer-confirm: $false

    CSV file looks like this

    Name, host datastore, Template, customizing

    Test-VM,vm-dep-test,ESX02,P5-vm-stage,vm-deploy

    Thanks in advance...

    A simpler, but not optimal, solution is to use the Wait-job cmdlet.

    Something like that

    $vms = import-CSV D:\vm-deploy\vm-deploy.csv

    $tasks = @)

    {foreach ($vm to $vms)

    $Template = get-model $vm.template

    $VMHost = get-VMHost $vm.host

    $Datastore = get-data store $vm.datastore

    $OSCustomization = get-OSCustomizationSpec $vm.customization

    $tasks += new-VM-name $vm.name - OSCustomizationSpec $OSCustomization - model $Template - VMHost $VMHost '

    Data - $Datastore - RunAsync store

    }

    Waiting-task-task $tasks

    {foreach ($vm to $vms)

    $vm.name set-VM - NumCpu 2 - MemoryGB 5 - confirm: $false

    }

  • Best method to deploy the virtual computer

    Anyone who can tell me what is the best way to deploy the virtual computer deploy of the FVO or models (the VM creation) that create the virtual machine of the templated took longer time compare to the creation of the FVO. Any Suggestions?

    Deploying the model customizze the new machine as part of the deployment will treat you while FVO will be an exact xopy, so you need to manually configure the new machine.

  • Script to rename the virtual computer by name DNS listed in VC

    I am very new to powershell, and I tried to understand this by using pieces of code I found, but nothing helped.

    I'm looking for a script to take the given DNS host name for a virtual machine listed in VCenter and rename the virtual computer.

    For example.

    Host01VM01 (as shown in Vcenter) - the DNS name of the "something.xyz.com".   VM and rename it "something.xyz.com" in Vcenter.

    To run the script only for a group called "Mycluster" you can do:

    Get-Cluster "My Cluster" | Get-VM | `
    Where-Object { $_.Guest.HostName } | `
    ForEach-Object { Set-VM -VM $_ -Name $_.Guest.HostName -Confirm:$false }
    

    This script will only work for VMS that have installed VMware tools and probably only for VM which are turned on.

  • Through host SCSI tape drive to the virtual computer with the backup software installed in the comments

    Can I attach an external SCSI tape drive to one of my hosts, and then add it as a device in a virtual machine.

    I want to use backup exec on a virtual machine, rather than having to have a separate physical server to attach the tape drive. I realize that I wouln't be able to vmotion the guest but as its only going to be a backup machine I am happy with that.

    Thanks in advance,

    Yes is possible.

    I have a Dell TL2000 with a dedicated SAS card and it works (not faster than in a real environment, but works).

    You add the SCSI ID of the tape (and the library, if any) to the virtual machine.

    Or, if your hardware can he take charge, using VMDirectPath and give the card on the virtual computer.

    André

  • Is it possible I can get the virtual computer connectivity after restart to connect to the local network in the host operating system?

    Hi all

    For some reason, I have to disable and then enable the LAN connection in the host operating system. If some virtual machines are running during this time, connectivity all VMs for out-of-world are lost, they cannot connect to the host even more (by running the ping command). I tried a few methods to retrieve the connectivity, but all have failed, for example,

    1. reboot the virtual computer

    2. restart VMware Workstation

    3. restart the corresponding system services in the host operating system

    The only way I can retrieve all is to restart the host operating system itself.

    Yes, is there short any path, I can retrieve the connectivity of these virtual machines?

    Thanks in advance.

    Yark

    yarkwang wrote:

    I use a Broadcom NetLink (TM) Gigabit Ethernet NIC, shows the date of the pilot 2006-5-15, but it works well, I think.

    Try installing a newer driver.  According to the site, you should be able to find a driver dated 2008 or 2007 (depending on which exact model of NetLink card you have):

    - http://www.broadcom.com/support/ethernet_nic/downloaddrivers.php

    1 came out of safe guard 360

    Sometimes out of some firewall programs is not enough (they keep still themselves installed in the network of the host stack, even if they are 'closed').  You may need to uninstall to make sure that it is not interfere.  (Search the forums for support for your firewall software see if anyone else is having problems with vmware and 360 safe guard).

  • Words of past & favorite appeared to a new user who portable Mozilla on the same computer resinstalled (even after history, cookies etc. were deleted)

    Words of past & favorite appeared to a new user who portable Mozilla on the same computer resinstalled (even after history, cookies etc. were deleted)

    Firefox would use a profile previously used folder if this user would use the same Windows account.
    It is always better to give each user their own Windows user account and protect your own account with a password if you are concerned about privacy issues.

    You can use the Profile Manager to delete all the files and the profile folder.

  • Reload the Configuration of the virtual computer after changing the VMX file

    Hello

    If I make changes to a file on a virtual machine's .vmx in vCenter 5.5 is automatically valid configuration for the engine power vm off? I made some changes earlier and it seemed to be the case, but one of the steps that I see in some of the documents is to reload the configuration of the vm, so it can be used appropriately. So this happens automatically or not?

    Hello

    If she turned off the virtual computer, then during power on, changes to take effect.

    Concerning

    Mohammed

  • Move-vm can migrate a powered off the virtual computer to a DRS cluster?

    When I try to move-vm has propelled off VM to a destination of DRS cluster, he says that he cannot migrate a powered off the virtual computer to a DRS cluster.   I can explicitly name the destination of the host and it works, but that defeats the purpose of using the DRS and forces me to script on the destination hosts.

    I do something wrong or I would be able to migrate a powered off the virtual computer to a DRS cluster?

    Thank you

    -MattG

    Hello, MattG-

    I get the same behavior as you when you try to move a VM PoweredOff to a DRS cluster, specifying the cluster as the value for the parameter - Destination to Move-VM (using PowerCLI v5.1 Rel 2 v5.5 Rel 1).  Not quite what I expected.

    To work around the problem, and without having to appoint a particular host as destination, you could use some Get-Random, do something like:

    Move-VM myVM0 -Destination (Get-Cluster myDestDRSCluster | Get-VMHost | ?{$_.State -eq "Connected"} | Get-Random) -RunAsync
    

    Who should receive the machine said cluster and on a host that is in the connected state.  A subsequent operation to the market (whenever do you eventually) should then see DRS power on the virtual machine on a suitable host in the cluster.

    Maybe the dev team can comment if this behavior is the expected or desired.

    Anyway, how does do for you?

  • How can I type of NETWORK adapter in the virtual computer a vCloud?

    I'm trying to write a script that compares the type of NETWORK card in vCloud NIC type in vCenter to work around a bug in vCloud 1.5.  I can get the type of NETWORK adapter in the virtual computer a vCenter by getting the vCenter VM up and running:


    $vcvm | Get-NetworkAdapter | FT-auto
    Name Type NetworkName MacAddress WakeOnLanEnabled
    ----              ----           ----------- ----------        ----------------
    Network adapter 1 isolated EnhancedVmxnet 00:50:56:01:00:33 True


    I do not get the same results when you perform an action similar to vCloud:
    $vcdvm | Get-CINetworkAdapter

    Connected primary index IPAddressAllocation IPAddress ExternalIPAddress VM
    ----- ------- ---------  ------------------- ---------       ----------------- --
    0 true true manual 192.168.10.30 nic1

    I can get all the other info NIC, such as the network, IP, MAC, etc, but not the type:
    ($vcdvm. ExtensionData.section) [2] .networkconnection

    Network: isolated
    NeedsCustomization: false
    NetworkConnectionIndex: 0
    IP address: 192.168.10.30
    ExternalIpAddress:
    IsConnected: true
    MACAddress: 00:50:56:01:00:33
    IpAddressAllocationMode: MANUAL
    Get_anyattr:
    VCloudExtension:

    For the moment, I get the type of NIC the vCloud himself database vCloud.  Thanks for any help.

    I use VMware vSphere PowerCLI 5.1 Release 1 build 793510

    I could tell you where to find it, but there is a bug in the API that shows only as PCNET32 anyway (sleep if she could be VMXNET3). Keep doing what you're doing with the database query.

    See you soon,.

    Jake

  • I bought lightroom and photoshop a week ago and successfully installed on my new iMac.  the iMac box open ends up being a lemon so I had to exchange for a new one.  best buy wiped the old computer.  now I'd like to reinstall lightroom a

    I bought lightroom and photoshop a week ago and successfully installed on my new iMac.  the iMac box open ends up being a lemon so I had to exchange for a new one.  best buy wiped the old computer.  now I'd like reinstall lightroom and photoshop on my new computer, but I don't know how. Help!

    Download and install the trial version of http://www.adobe.com/downloads.html and activate it with your serial number or your Adobe ID.

Maybe you are looking for