Need help with replacing a drive on a virtual machine

Test case for something I need to do on a separate production machine.  Virtual MACHINE is running WinSvr2003.  Only the hard disk assigned to the virtual machine is one of 20 GB disk, C: using this.  Need to C: to be larger.  Add a 40 GB drive to the configuration of the VM in the CR.  Started an iso BartPE with plug-in in Ghost.  Ghost can copy the C: 20 GB drive on the 40 GB drive.  Went in the VM config and changed is the 40 GB SCSI 0.1 drive and the drive of 20 GB at SCSI0, 2.  After I saved, VMware changed the 40 GB on disk 1 and the 20 GB on disk 2.  Went it into the BIOS on the machine config to boot the disk of 40 GB.  But no matter how I put it in the BIOS, it would only start on the 20 GB drive.  Went in the VM config and removed the 20 GB drive (which is not an option on the production machine, it has a volume of data on the same drive).  It boots to Windows, so I guess it's start on the 40 GB drive.  But I am unable to connect to it.  It shows that the application of settings, record the settings, then back to the login screen, all within 2 seconds approximately.

Is there anything else I need to do to (1) move the volume from the Windows system to a new disk w without side effects in Windows and (2) so that it can start on the new disk correctly?

If it is a single virtual drive with 2 partitions and the C:\ is on the front of the drive, Extpart won't help. It is usually best to separate the partitions to multiple virtual disks. I use the converter to V2V the VM and move on their own virtual disk partitions, then develop them if necessary.

Tags: VMware

Similar Questions

  • Need help with replacement disk on port 0 in Raid1 desktop machine

    I have a HPE 380 t. I have has a RAID1 (mirror) with 2-500 GB Western Digital. When I boot it says the raid has deteriorated and an error has occurred on the player connected to port 0, port 1 player shows ok. It's in the Manager of the Intel Matrix Storage Manager, (Ctrl + I on startup). The machine starts again, but I want to replace the drive on Port 0 with another disk of 500 GB.

    How can I go on that so I don't toast all data on the drive Port1?

    I searched links and other places for help on this but nothing helps! Is there a tutorial or step by step instructions somewhere that I can go?

    Thanks in advance

    Hi Mike,.

    Lucky for you that you are using non-RAID 0 and RAID 1 or your table would probably unusable.

    You can determine the status of your RAID configuration using the Intel Rapid Storage Technology (IRST) software.  If you do not have this software on your PC, then you can Download IRST from the Intel web site.  I recommend that you use the latest version available from Intel.  General information can be obtained from the TSRI User Guide.  When you launch TSRI, help topics are an excellent source of information.  You can access TSRI by going to the control panel and select Intel Rapid Storage Technology. You can also access TSRI from low location of the taskbar.  TSRI should resemble a hard disk icon and it normally has a green check mark.  By default, TSRI is defined as delayed start, so don't expect to see active immediately.

    1. Launch the IRST while under Windows
    2. Click Help
    3. Click on troubleshooting
    4. Click on gradient volumes and follow the recommendations. Scroll to RAID 1.
  • Need help updated the VMX file on several Virtual Machine

    All,

    Can anyone help with a problem I'm having?  Here is a brief explanation of what is happening and what we need to solve.

    Recently we found out that we need to add a line in the file VMX of several virtual machines.  In the past, I was able to do this, but would have cold start the virtual machine for the changes to take effect.  Starts cold won't be a problem, because we can program it.

    However, no one knows a way to add this line in the file VMX virtual machines in a cluster.

    Here's the line I need added:

    Devices.hotplug = "false".

    Here is a script that was used earlier (esx 3.0 days) to keep the VM tools updated on reboot.  At this point, if the virtual machine has been turned on, this change could not do through the UI.  However, this script worked to update the .vmx file and then we have cold reboots for the changes to take effect.

    Get-viserver - < Server > - < user > - < password >

    $viview = get-Cluster-name NOMCLUSTER | Get - VM | foreach-object {get-view ($_.ID)}
    $viview | {foreach-object
    $vmConfigSpec = new-Object VMware.Vim.VirtualMachineConfigSpec
    $vmConfigSpec.Tools = new-Object VMware.Vim.ToolsConfigInfo
    $vmConfigSpec.Tools.afterPowerOn = 'True '.
    $vmConfigSpec.Tools.afterResume = 'True '.
    $vmConfigSpec.Tools.beforeGuestStandby = 'True '.
    $vmConfigSpec.Tools.beforeGuestShutdown = 'True '.
    $vmConfigSpec.Tools.ToolsUpgradePolicy = "UpgradeAtPowerCycle".
    $_. ReconfigVM ($vmConfigSpec)
    }

    The exact script can be found in Disable HotPlug

  • Help with VM monitoring parameter at the virtual machine level

    Hi, I'm new to powershell and got the script (from http://damiankarlson.com/2011/01/13/managing-vmware-has-vm-monitoring-powercli/ thanks Damian Karlson) that will allow me to set the "VM Monitoring" setting for each virtual computer in a cluster to 'Disabled' below State. This is necessary to allow a 'monitoring VM and application' at the highest level and keep only selective VMs allowed for surveillance. When I run this script, it is applied VM1. When I try to do this for another virtual machine with a virtual machine name change (VM2), it get error "specified parameter was not correct" in the tasks of vCenter. Not sure whats wrong, any help is appreciated.


    $srv = Connect-VIServer vcenter01
    $vm = get-VM-name VM1
    $spec = new-Object VMware.Vim.ClusterConfigSpecEx
    $spec.dasVmConfigSpec = new-Object VMware.Vim.ClusterDasVmConfigSpec [] (1)
    $spec.dasVmConfigSpec [0] = new-Object VMware.Vim.ClusterDasVmConfigSpec
    $spec.dasVmConfigSpec [0] .operation = "Edit."
    $spec.dasVmConfigSpec [0] = new-Object VMware.Vim.ClusterDasVmConfigInfo .info
    $spec.dasVmConfigSpec [0].info.key = new-Object VMware.Vim.ManagedObjectReference
    $spec.dasVmConfigSpec [0].info.key.type = 'VirtualMachine '.
    $spec.dasVmConfigSpec [0].info.key.value = $vm. ExtensionData.MoRef.Value
    $spec.dasVmConfigSpec [0].info.dasSettings = new-Object VMware.Vim.ClusterDasVmSettings
    $spec.dasVmConfigSpec [0].info.dasSettings.vmToolsMonitoringSettings = new-Object VMware.Vim.ClusterVmToolsMonitoringSettings
    $spec.dasVmConfigSpec [0].info.dasSettings.vmToolsMonitoringSettings.enabled = $false
    $spec.dasVmConfigSpec [0].info.dasSettings.vmToolsMonitoringSettings.vmMonitoring = "vmMonitoringDisabled".
    $spec.dasVmConfigSpec [0].info.dasSettings.vmToolsMonitoringSettings.clusterSettings = $false
    _this $ = get-view-Id $vm. VMHost.Parent.Id

    Hello, vSphereUser7-

    I've seen your follow-up to your thread on this topic at http://communities.vmware.com/message/1859219#1859219.  Between your answer and your question you mention in this thread, I came to realize what seems to be the problem for you.  I have re-written a code in the other thread, based on that blog DKarlson on and commented on why you may receive this error in the vSphere client.  See this thread for more info on what is happening here.

    And let us know if it was the question that you run in to.

  • Corrupted hard disk, need help with replacement drive...

    I have currently a HP Pavilion DV6500 is a bit old but my children use it for learning games and watch netflix. They use on a daily basis. Months ago, the hard drive went out on this issue I tried to take it they told me to just buy a new laptop cost way to much to fix.

    The hard drive has a sticker that says "Replace with HP Spare" which makes it means? The laptop was running a Seagate Momentus 5400.3 im looking for a disc compatible hard good which can be integrated in the laptop right now. And a what it cost an arm and a leg.

    Any help would be greatly appreciated. Thank you for your help.

    Hello

    The player at the link below is an example of one that would be perfect for your laptop.

    250 GB hard drive for laptop.

    The procedure to replace the hard drive is detailed from Page 59 of your & Maintenance Guide.

    Once this is done, simply use your recovery DVD to reinstall the operating system on the new drive.

    If you do not have your recovery discs, you can order a replacement set using the link below.

    Order HP recovery disks.

    If you have a problem with this link, order them directly from HP.

    If you live in the United States, contact HP here.

    If you are in another part of the world, begin here.

    Kind regards

    DP - K

  • Need help with replacement tips Sony hybrid

    Hey all,.

    Please first post here, so I'm sorry if I posted in the wrong section. This month I ordered the spare Atria hybrid Sony EPEX10A/BLK on Amazon.com. While he was trying to get a great tip on my Sennheiser CX500s, broken the coloured part. Now, I have only a great tip, which is currently normal the CX500 very well. I really need another great tip, and I don't know what to do. I thought that the best option would be to contact the Sony Support and ask for a replacement (I guess my warranty is still in effect, dunno anything), but I don't know how. I went on this website (http://esupport.sony.com/US/perl/contact-land.pl) and support selected, and since I could not find my product in the list, I typed in what I thought was the model number, and it came with no result. I have no idea where the model number is on the packaging (which I still have).

    Can someone please help me to get a replacement? Other than the broken tip, what are the best advice I've had , and I would really like to continue to use.

    Thanks for the help!

    Contact Sony parts and accessories - they have a different number of Support technique Sony and should be able to find the right part for you - details on the following link:

    https://servicesales.sel.Sony.com/ecom/... index.jsp

  • need help with USB controller driver

    Recently downgraded to windows 8 for windows 7 ultimate, installed all the drivers except that I can't find the driver for the USB controller anywhere. Will not find the drivers automatically on the internet. I guess I have to install the chipset for PC.  Cannot download from the HP Web site because I got demoted. .  .

    Its a HP Pavilion model 500-098 with windows 7 ultimate 32 bit

    Any help would be appreciated

    Thanks for your time, Dale

    You are the very welcome.

    We'll get it to work... you definitely need the driver of the TI USB controller.

    Download, but do not run the file I posted.

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=CP-100633-1&cc=us&DLC=en&LC=en&JumpID=reg_r1002_usen_c-001_title_r0002

    Download and install this free utility for files.

    http://www.7-zip.org/

    After installing 7 - zip, right-click on the downloaded file and select 7 - Zip option in the list.

    Have 7-Zip extract of: and let it extract the file in the name of the folder (sp55506).

    After 7-zip created the driver folder, go to Device Manager and click on the device of USB controller requiring driver.

    Click on the driver tab, click on set to update driver.  Select her browse my computer for driver software option and find the driver 7-Zip created folder.

    Make sure that the include subfolders is selected and see if the pilot goes like this.

  • Need help with installing the driver Vista for Satellite A200-23U

    INSTALL THE

    WINDOWS VISTA
    N ° Version of the component name
    1 Windows Vista RTM
    2 native Intel ICH7M Chipset utility
    3 945GM Intel display driver
    or
    3 nVIDIA Display Driver G72MV-A3/NB7P-GS
    Realtek Audio driver ALC861D 4
    5 Realtek 8101E 10/100 / Driver LAN Gigabit 8111
    6 Synaptics Touch Pad Driver (with LuxPad)
    7 ALPS Touch Pad Driver
    8 card reader TI Multiple digital media
    9 TOSHIBA software modem
    10 Golan Intel Wireless LAN Driver
    11 Kedron Intel Wireless LAN Driver
    12 Atheros Wireless LAN Driver
    Camera Chicony 13 software
    14 Bluetooth Stack for Windows by Toshiba
    15 Bluetooth monitor
    16 TOSHIBA Value Added Package
    17 TOSHIBA Flash Cards Support utility
    TOSHIBA 18 hardware configuration utility
    19 TOSHIBA supervisor password
    20 TOSHIBA SD Memory utilities
    21 TOSHIBA ConfigFree
    22 TOSHIBA Assist
    TOSHIBA Speech System 23
    24 TOSHIBA Extended tiles for Mobility Center Windows V1.01
    TOSHIBA Fingerprint Utility V5.6.0.3221 25

    But the [code] http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp?service=EU&mode=allMachi nes & action = search & teddProduct = 738 & selShortMod = 532 [/ code] I don't know what connection is No2 chipset driver (I use vista 32 bit), similar what link is No3 display driver.

    Can you help me to download 25 entry because I'm bad at computing :(
    Sorry because of my English... THX

    Hey Buddy

    You have a machine with the ATI graphics card. Am I wrong?
    If Yes, then the Chipset driver is ALREADY included in the ATI graphics driver that is available on the European driver Toshiba page!

    The order of installation displays the instructions step by step for all THE portable Satellite A200 PSAE6E but the fact is that devices were equipped with different material parts and that's why some single drivers do not appear or are not available.

    Once again; Utility/driver chipset is available/included in the ATI graphics driver

    Good bye

  • Qosmio G20-139: need help with 2nd HARD drive installation

    Hey fans of tosh.

    I got a Qosmio G20-139 and I want to install 2nd HARD drive. How can I go about it? I don't want to mirror the 1st HARD drive I just that it runs as a HDD separated for more storage. How do I set up and format?

    I'm using WXP MCE any help received with gratitude, keep in mind, I'm no expert actually I'm a fool to the village that of been inbreeding so take me through in easy to understand steps that even I can follow.

    Cheers in anticipation

    StevieB

    Hello

    That s just to change the BIOS settings in the BIOS!
    I think that the BIOS settings are placed in the last page of the BIOS (3).

    Try setting the 1RAID-0 on the first HARD disk and the 2RAID-0 the second HARD disk.

    It worked well on my laptop.

    By the way; information on the RAID configuration found in the user manual.

    Have a nice day ;)

  • Pavilion 15: Need help with replacement for fan

    Hello, I got annoying problem. My fan makes noise 'grinding '.  But the sad reality is that this problem occurred only 1 day after the end of my warranty (no joke here!)  I tried to clean the fan with compressed air. But it has helped me, so I want to ask what type of fan does not fit on my motherboard.

    -J' found on the internet, that my fan bearing may be/is damaged

    -Sorry for my bad English

    -Thanks for reading

    Hello

    Please use the manual 5th of the following link to find the part # and how to replace it (page #79):

    http://support.HP.com/us-en/product/HP-Pavilion-15-notebook-PC-series/5355006/model/5400833/manuals/

    Note: You cannot replace yourself IF still under warranty.

    Kind regards.

  • need help to replace the drive HARD on HP Pavilion laptop computer model 17-e118dx / 17.3 AMD A8

    Hello

    I'm looking for advice, tutorials or links which will help me safely access my hard drive for repacement. I found a screw that holds a back cover, but the cover would not budge after removing the screws. Other info: 17.3 AMD A8 750 GIG. Also interested in information related to the upgrade / increase memory and if possible, upgrade to backlit keyboard.

    Thank you

    Scott

    Hi Scott

    Here is your manual: http://h10032.www1.hp.com/ctg/Manual/c04069163.pdf

    Go to Page 6, 49-51, 54 for details & alternative methods.

    You can upgrade to 1 TB

    Maximum RAM upgrade is given as 8 GB max in this form: http://support.hp.com/us-en/document/c04235458
    You can add another 4 GB in the other slot with the same configuration - DDR3L PC3L-12800 1600 MHz 1.35v SODIMM SDRAM

    Unfortunately,.
    Changing the keyboard cannot be done, motherboard has changed for this.

    Thank you

  • Hi all, need help with replacing or Regexp_Replace

    Hi all

    I have a string with me, i.e. '9 03000200090 R R 9 R 9 9 1 9 2 R R 001535447 R 1 R Y R Y 4 1 100002589 1 9 9 9 9 9 9 00002589'

    Now, I would like to remove R-9 characters of my channel, look to the characters below marked "BOLD" - these are those, I want to delete.

    "9 03000200090 R R R 9 9 9 1 9 2 R 001535447 R 1 R Y R Y 4 1 100002589 1 9 9 9 9 9 9 00002589' R '.

    Want my output end: ' 03000200090 1 2 001535447 1 Y Y 4 1 100002589 100002589'.

    Can someone help me please?

    Thank you

    Amit

    Hi, amit,

    Here's one way:

    SELECT REPLACE (REGEXP_REPLACE (REPLACE (str)

    , ' '

    , '  '

    )

    , '(^| ) [R9] ( |$)'

    )

    , '  '

    , ' '

    )

    FROM table_x

    ;

    With a little more coding, your could do it without regular expressions.

  • 445 G1: need help with AMD video driver install

    Hello everyone.

    What drivers I don't sellect support AMD Web site? Some can give me the link for my product.

    Specifications:

    APU AMD 4500 M WITH AMD RADEON 8750 M + AMD RADEON 7640 G (this is the graph of low power)

    Or should I JUST install drivers from the HP site? Thank you very much for your help!

    APU (Chipset AMD drivers)

    Open the "optional downloads" from the displayed link

  • Old laptop - Pro 490 - need help with the graphics driver for Win 98

    I downloaded the display drivers, but these seem to be the same ones that Windows 98 is installed but the screen is not 'full' but just a window in the middle of the screen.

    I have also 1 device that does not have a pilot.

    Is someone can you please tell me where I can get a set of drivers for the laptop? Win98SE drivers seem to be a little short on the toshiba web site (unless I'm blind)

    Otherwise I'll have to use the recovery CD to install windows 95 and then upgrade to windows 98... do not look forward to that.

    Any help greatly appreciated

    Hello

    In my view, the drivers for Win98 and Win 98SE are the same.
    But this unit is very old and Toshiba doesn't conceive these drivers more.
    I suggest to look on the sites of manufacturers of equipment. Maybe you'll find some drivers for Win98

    Concerning

  • 4540 proBook s product ID C9K7O: I need help with network controller driver installation.

    I had to install Windows 7 Premium 64-bit operating system and the network controller was not recognized and therefore, the drivers were not installed. That's what I see in Device Manager:

    PCI\VEN_168C & DEV_0032 & SUBSYS_1838103C & REV_01

    PCI\VEN_168C & DEV_0032 & SUBSYS_1838103C

    PCI\VEN_168C & DEV_0032 & CC_028000

    PCI\VEN_168C & DEV_0032 & CC_0280

    I got a driver to download from technical support, but that it does not recognize the controller either. Reference case # (deleted content)

    Dad.

    Have you tried this one?

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?sp4ts.Oid=5229456 & swItemId = ob_128686_1 & swEnvOid = 4059

    REO

Maybe you are looking for