Help! Reinstalled XP Drive letters changed!

Reinstalled XP on G460 (using F6 option for SATA driver).
After installation, drive C: became drive E:. Unable to change it using disk manager. Also I think some driver installations may not have executed correctly because the scripts were looking for C: drive.
Original (Win7) = Cmain) and DLenovo)
Reinstalled (XP) = C200Mb), DLenovo), and Emain)
How do I change the E: back to C:?

OneKey recovery will work only if your WinXP installation method includes it.    I have a Lenovo 3000N200 which came with Win XP Pro, and I bought the factory WInXP installation discs for this machine.   When I installed those disks to a new blank HDD, the Recovery partition was installed along with the rest of windows.   I have never had to run OneKey Recovery myself. 
     I don't know the particulars of your situation.  If Lenovo provided the XP version then it should also have built-in OneKey Recovery.
     That weird 200MB partition is an artifact of WIn7 having been installed on your harddrive first.   The Disk Management Utility in Win7 will show the partition's existence, but will not be able to delete that partition, since it seems to 'think' it is essential to booting your machine.  This is even true if you connect your HDD as an external drive to another Win7 machine, Disk Management will display the partition, but will not modify it.    I don't know whether or not the Win XP version of Disk Management would be able to delete that partition.   You may need to use non Microsoft software to get rid of that partition.   
      I did install Microsoft's free trial version of Win 7 Enterprise to my machine, onto a NTFS formatted but blank HDD, and it did not create that extra partition, everything went into a single C partition.    So the extra partition isn't absolutely necessary even in Win7. 

Similar Messages

  • PC Suite mixes up drive letters

    Hello,
    I am having two optical drives installed in my PC with letters W and X.
    After installing PC Suite the drive letters change to G and H which are the next unused letters following my fixed drives
    (it took me a long time to figure this out, so this seems to be the case since earlier versions).
    Also my PC is in a domain so by logging on a netlogon.cmd is executed. This file is located in my home directory (commonly) set to letter "H", but unreachable as PC Suite shifts one optical drive to it.
    This is reproducable by uninstalling/reinstalling the software.
    Anyone who can confirm this behaviour (maybe it is already known but I did not find something about it in this forum) ?
    best regards
    PatchPanel

    PC Suite will recognise your phone as a drive (latest versions of PC Suite do this even when not using 'data transfer' mode). It is unusual that it causes existing drive allocations to be changed, I have not heard of this happening before.

  • Edit code for change drive letters in paths for links, to also work with Fonts that have been moved.

    I have the following code that looks through my links and changes all of the drive letters to the new locations where they exist.  So if something stays in the same folder structure, but moves to a new drive E: and InDesign can not longer find it, you can run the code and have it fix them all.
    Well I want to do the same but for fonts that have also moved.
    Thank you in advance for any and all help!
    if (app.documents.length == 0) {
        err("No open document. Please open a document and try again.", true);
    if (File.fs != "Windows") {
        err("This script is for Windows only.");
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links;
    var myCounter = 0;
    if (myLinks.length == 0) {
        err("This document doesn't contain any links.", true);
    var mySettings = CreateDialog();
    for (i = myLinks.length-1; i >= 0 ; i--) {
        var myLink = myLinks[i];
        if ( myLink.status == LinkStatus.LINK_MISSING || (myLink.status != LinkStatus.LINK_MISSING && mySettings[2] == false) ) {
            var myOldPath = myLink.filePath;
            var myNewPath = myOldPath.replace(mySettings[0] + ":\\", mySettings[1] + ":\\");
            var myNewFile = new File(myNewPath);
            if (myNewFile.exists) {
                myLink.relink(myNewFile);
                try {
                    myLink.update();
                catch(e) {}
                myCounter++;
    if (myCounter == 1) {
        alert("One file has been relinked.", "Finished");
    else if  (myCounter > 1) {
        alert(myCounter + " files have been relinked.", "Finished");
    else {
        alert("Nothing has been relinked.", "Finished");
    function err(e, icon){
        alert(e, "Change drive letter in path", icon);
        exit();
    function CreateDialog() {
        var myDrives = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "y", "Z"];
        var myDialog = new Window("dialog", "Change drive letter in path");
        var myPanel = myDialog.add("panel", undefined, "");
        myPanel.orientation = "column";
        myPanel.alignChildren = "left";
        var myGroup = myPanel.add("group");
        myGroup.orientation = "row";
        var myStText1 = myGroup.add("statictext", undefined, "Change ");
        var myDropDownList1 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1") != "") {
            myDropDownList1.selection = myDropDownList1.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1")];
        else {
            myDropDownList1.selection = myDropDownList1.items[2];
        var myStText2 = myGroup.add("statictext", undefined, " to ");
        var myDropDownList2 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2") != "") {
            myDropDownList2.selection = myDropDownList2.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2")];
        else {
            myDropDownList2.selection = myDropDownList2.items[3];
        var myCheckBox = myPanel.add("checkbox", undefined, "relink only missing links");
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox") != "") {
            myCheckBox.value = eval(app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox"));
        else {
            myCheckBox.value = true;
        var myButtonsGrp = myDialog.add("group");
        var myOkBtn = myButtonsGrp.add("button", undefined, "Ok", {name:"ok"});
        var myCancelBtn = myButtonsGrp.add("button", undefined, "Cancel", {name:"cancel"});
        myOkBtn.onClick = function() {
            if (myDropDownList1.selection.index == myDropDownList2.selection.index) {
                alert("Both drive letters should not be the same.", "Change drive letter in path");
            else {
                myDialog.close(1);
        var myDialogResult = myDialog.show();
        if (myDialogResult == 1) {
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1", myDropDownList1.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2", myDropDownList2.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox", myCheckBox.value + "");
            return [ myDropDownList1.selection.text, myDropDownList2.selection.text, myCheckBox.value ];
        else {
            exit();

    ok, so I have discovered where the issue came from...
    The code you helped me with before, were I removed all links and my link character styles that I had (found here: http://forums.adobe.com/message/5881440#5881440)
    Well it set all the items I was finding/replacing to unknown fonts that my machine doesn't have (Like Helvetic Neue Bold, instead of just Helvetica Bold, etc).
    Is there an easy way of fixing this?
    The only way I know to fix it right now is:
    Go to Package >> go to Fonts >> Select the the font that says it's missing >> Select Find First >> CLOSE ALL OF THIS, then use the eye-dropper to select the text around that font which copies the formatting and then apply it to the text who's formatting got messed up.  And then start the process all over again for the next occurence of that word whose formatting got stripped.

  • I formatted my ext hard drive and changed it to mac os x extended(journaled). then i put in all my data back. after a while, i insert the hard drive but my macbook cannot read it. plz help

    i formatted my ext hard drive and changed it to mac os x extended(journaled). then i put in all my data back. after a while, i insert the hard drive but my macbook cannot read it. plz help

    SanandaDutta 
    tried on a different mac. The same problem exists.
    If that is the case, its extremely unlikely you have a bad USB cable on the seagate, rather as I mentioned earlier a bad SATA bridge card.
    If the Seagate 1TB USB external wont open on either Mac and youve verified same (try a diff. USB cable if you have one however this is nearly never the case),....then to get the data off that HD (unless it is dead which is also extremely unlikely),......then you would need to extract the HD from its case and insert same into either a HD dock or USB HD enclosure.
    8 out of 10  seemingly dead inopperable 1-3+ year old external HD are perfectly fine, rather the cheap 50 cent SATA bridge card fries and dies (alas)
    reply back if you need help in extracting same. 

  • For those who have problems RE: My iPhone 4 on connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??

    For those who have problems RE: My iPhone 4 connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??
    SOLUTION:
    Iam pointing t0 windows7 os.
    1) go to control panel
    2) open hardware and sound
    3) In that open Devices and printers
    4)In that u can find Apple Iphone.
    5) now right click on this --> Hardware --> Properties --> General --> Uninstall --> ok.
    6) now unplug and plug in ur iphone again.There u go u iphone name changes to its original name.

    I am having this problem.  At first with the new iPhone 5, and then with the iPad 2.  I am not sure why this is happening. 
    My gut feeling is this is an iO6 issue and here's why -
    The problem mainly occurs with apps.  I have about 150 apps, and when I plugged in the phone, iTunes went to sync all of them.  The process would hang up after about 20 - 30 apps were loaded onto the phone. I could tell where about the process hung up because the apps on the phone showed up as "waiting".
    Then on the iPad 2 I plugged in to sync and saw there was a huge "Other" component in my storage.  It required me to restore the iPad 2 from backup.  With this restore the same issues occurred - putting the apps back on the iPad would hang up.  The videos on the iPad also got stuck - maybe after about 10 hours of videos transfered iTunes crashed.
    My solution has been to soft reset the device, restart Windows, and continue the process until it's complete.  This is remarkably inefficient and time-intensive but everything works with patience.
    I have been wondering if others have had these same problems. 

  • I can't see my Canon MG5220 printer... Initially I was getting "there is a communication error" so I rebooted everything, reset the printing system, reinstalled the driver and still NO luck! It seems to see the scanner, but never the printer. HELP!

    I can't see my Canon MG5220 printer... Initially I was getting "there is a communication error" so I rebooted everything, reset the printing system, reinstalled the driver and still NO luck! I see no printers available in the Print & Scan area. If I click "+" it seems to see the scanner, but never the printer. HELP!

    The printer component uses a different protocol to advertise itself on the network compared to the scanner component and it can take several seconds longer to appear after the scanner has.
    That said, with the introduction of AirPrint, the MG should be seen as Bonjour Multifunction in the Add Printer window, as shown below.
    Selecting this Bonjour Multifunction entry will create a printer using AirPrint and a scanner using the iCA driver.
    So do you see the MG5220 as Bonjour Multifunction or just Bonjour?

  • Need help reinstalling driver for my dvd drive

    my a205-s5812 cddvd driver isnt working, when i went to device manager to check for the problem, there is a message stating that the driver might be corrupted or missing. so i cant use my dvd drive anymore, how do i fix this problem
    Message Edited by GAMBLER_CPT on 03-28-2009 03:08 AM

    Satellite A205-S5812
    Turns out there is a firmware update to that drive. Maybe it helps.
       Toshiba (TSST) TS-L632* DVD Drive Firmware Update
    You can reinstall the driver by uninstalling it in Device Manager (devmgmt.msc) and rebooting.
    -Jerry

  • ISCSI Initiator - Cannot Change Drive Letters

    Good afternoon-
    I added two iSCSI LUNs to one of my servers using the Microsoft iSCSI Initiator on a Windows Server 2008 R2 server. Everything seems to be working fine, except for the fact that the drive letters are reversed - Volume 1 is my F: drive and Volume 2 is E:.
    Because I need to use one script across multiple servers, I need to change these drive letters. When I right click them in Server Manager, the Change drive letter option is greyed out. Is there a different way to do this?
    Thank you!

    Please start by that:
    http://forums.cnet.com/7723-6142_102-139635/change-drive-letter-grayed-out-in-disk-management/
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Thanks Mr. X! I was able to fix this with DISKPART. Here are the instructions taken from your link:
    1. Open Command Prompt.
    2.Type:
    diskpart
    3.At the DISKPART prompt, type:
    list volume
    Make note of the number of the simple volume whose drive letter you want to assign, change, or remove.
    4. At the DISKPART prompt, type:
    select volume n
    Select the volume, where n is the volume's number, whose drive letter you want to assign, change, or remove.
    5.At the DISKPART prompt, type one of the following:
    assign letter=L
    Where L is the drive letter you want to assign or change.
    remove letter=L
    Where L is the drive letter you want to remove.

  • My printer driver has changed and it is HORRIBLE

    I have been using my HP 8500A all-in-one with a few years now with absolutely no problems.  Two days ago, I encountered a problem:  when I tried to specify certain pages of a document to print, I would get an error message.  However, if I selected to print the entire document, it would print.  I assumed that my driver needed to be updated, so I downloaded from the HP website.  WHAT A HORRIBLE MISTAKE THAT WAS.  My scan utility has changed completely, I still can only print when I select to print an entire document.  I cannot print from an Excel spreadsheet at all.  I tried uninstalling the driver and re-installing.  I DO NOT want to network this printer, but now each time I try to reinstall the driver, I can choose to connect via USB, but on the following pop-up, it does not give me the option to proceed.  It only gives me the option to go "back" or to "skip" connecting via USB.  What the heck is going on????????????????

    Hi , Welcome to the HP Community!I hope you have a pleasant experience here. I'd like to help you with the driver/software issues you are experiencing with your HP Officejet Pro 8500A e-All-in-One printer and your Windows 8 machine. It sounds like your software may not be installed properly, in addition to the common issue of Windows 8.1 automatically installing drivers from Windows update. First, with the USB cable plugged in, we'll want to remove all instances of your printer in the device manager (this way when we plug the USB cable back in during the new install, it'll be seen as a new device).  Open up your Start Screen. Start typing "This PC", it will come up under search results. Right click on This PC and select Manage. Click on Device Manager on the left hand side. In the main part of the window, look in the following categories for any HP entries: Imaging Devices, Other Devices, Printers, and Universal Serial Bus Controllers. If you see your HP printer listed in any of these sections, right click and select Uninstall. Keep an eye out as well for anything that says Unknown Device, and let me know if you see this at all (these are also okay to uninstall). Once all HP entries have been removed, unplug your USB and leave it unplugged. Do not plug the USB back in until the software prompts you when we re-install. Next we'll want to remove the installed printers from your Devices and Printers folder. From your desktop, either swipe in from the right to open the charms bar, or press Win key + C on your keyboard.Select settings from the bar on the right.Select Control PanelUnder Hardware and Sound, Select Devices and PrintersRight click on each icon you see for your 8500A (even if there is only one) and select Remove Device, or Delete. Once that's done, lets do a cleanboot of your computer (this will turn off all non-essential programs at startup, so if there is another program running that's hindering the installation we can avoid it).How to perform a clean boot in Windows  Once the computer has restarted, try downloading the HP Printer Install Wizard to complete the installation for you. It will automatically detect your device, and install the appropriate software. Please respond to let me know if this resolves the issue.Good luck!

  • In server 2008 r2 i cant prevent access to extra drive letters(apart from a,b,c,d) via gpo

    in server 2008 r2 i want to prevent access to extra drives like g,h,i,j drives via GPO i have been able to successfully hide these extra drives but not able to prevent access to restrict them  i have hidden these extra drive letters via code pasting
    with hidedrives.adm file on right clicking adminstrative templates in GPO and adding  templates but i dont know the code for preventing access to drives. HELP me need this fast 

    Hi Manish,
    Based on your description, we can try enabling the following policy:
    User Configuration\Administrative Templates\Windows Components\Windows Explorer\
    Prevent access to drives from My Computer
    If we enable this policy, users cannot view the contents of the selected drives in My Computer and Windows Explorer. Also, they cannot use the
    Run dialog box, the Map Network Drive dialog box, or the Dir command to view the directories on these drives.
    However, this policy does not prevent users from using programs to access local and network drives. And, it does not prevent them from using the Disk Management snap-in to
    view and change drive characteristics.
    Regarding this policy, the following article can be referred to for more information.
    Prevent access to drives from My Computer
    http://technet.microsoft.com/en-us/library/cc978514.aspx
    Best regards,
    Frank Shen

  • Use of "A" and "B" as drive letters

    Working in Windows 7 Pro x64 and Adobe Lightroom
    I have a user that has multiple external USB drives... At times he actually runs out of drive letters.
    We have used "computer management" to assign fixed drive letters at the end of the alphabet for the most frequently used devices... and recently assigned two of the USB drives to "A" and "B". This has worked fine in Windows Explorer. They show up and he can cut and paste, save, etc successfully.
    However, he is also using Adobe Lightroom, and when he selects "view devices" he can only see C and higher. Any idea why this would be so and if there is a workaround?
    Thanks for any suggestions.

    On my LR 5.6 / Windows 8.1, the B: drive (or any folder, in general) doesn't appear in the Recent list until you actually import at least one pic from there into the catalog:
    But as you allude, when you select B: from the Recent list, you'll be selecting the root folder of B: and you won't get a chance to navigate to subfolders.  The most you can do is to select Include Subfolders to see all the pics on the drive.    This is adequate for many use cases, e.g. importing pics from memory cards inserted into a card reader.  But if you want the ability to browse subfolders, I think you'll need to drill down from "Other..." again.  
    Based on experience over the last several years, I think it is unlikely that Adobe will ever fix this.  In the last several years they have made very few changes to the Library features, and of the changes they have made, almost all are either bug fixes or introducing new features -- they've made very few changes to correctly operating but inconvenient features.
    A couple more options:
    - You can create a network share on the B: drive and then add that network volume to LR's source list by clicking on the "+" to the right of Source:
    Now the B: drive will permanently show up as a browseable network share in the Source list:
    - You can mount the USB drive to a mount point on the C: drive, e.g. C:\SANDISK64GB (see my first reply in this thread for how to do that).  But it appears that you need to create a separate mount point for each different drive that might be connected, so this approach may not work if you're frequently re-connecting lots of drives.
    Hope these help.

  • HT204074 I have a new machine with a previous installation of Itunes, linked to another Apple ID. Even  I authorized the machine to my Apple ID, I can not connecto to the Apple Store. I tried removing Itunes and reinstalling it, but anything changed.

    I have a new machine with a previous installation of Itunes, linked to another Apple ID. Even  I authorized the machine to my Apple ID, I can not connect to the Apple Store. I tried removing Itunes and reinstalling it, but anything changed. I still can not connecto to the Store.
    My previous machine has Itunes Installed, and I deauthorized the machine so I unlinked to my Apple ID, if this is correct.
    Anyway, Dropbox is also not connecting....so I do not know how to make it woek. please help!

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • I have tried several times to install iTunes update 11.1.4 on my PC.  I get a message saying that install was not successful and an error message of MSVCR80.dll not present, Error 7, (Windows error 126).  I am told to reinstall iTunes, but nothing changes

    I have tried several times to install iTunes update 11.1.4 on my PC.  I get a message saying that install was not successful and an error message of MSVCR80.dll not present, Error 7, (Windows error 126).  I am told to reinstall iTunes, but nothing changes.  What next?  I've not had this problem with other updates requested by Apple.

    I have also had the same problem with my Win 7 32 bit computer.  I had great help from Apple techs in Montreal and Orlando for 2.5 hours.  They helped me remove every trace of Apple products and clean the registry in two different ways.  Each install gave the same problem!  If Apple techs can't fix it (on some of our machines) then we are really in trouble.  They promised to raise it with the "engineers" and get back to me with a solution.  I am waiting and hoping.  Otherwise maybe version 11.1.5 will have a fix ??

  • ITunes can't see my songs. Drive Letter Change.

    I have over 10,000 songs in my iTunes library.  They all have a path that originates from my drive L.  This is my external hard drive.  The drive was shut off, as it has been many times in the past, and when it was turned back on, it was all of a sudden drive M.
    Now iTunes cannot find anything in my library.  I tried the Disk Manager in Win7 to reassign the drives letter back to L but it won't let me do it because the final step is to pick the drive's new letter assignment from a drop down menu, and "L" is not available.
    Can anyone help me with this.  Is my iTunes simply just useless from here on out.  I'm not deleteing it and starting over again just so the drive letters can switch again.
    thank you for any help.

    The problem fixed itself -- somewhat. Now, iTunes sees audio CDs. But when I eject them, iTunes doesn't notice. I generally have to open & close the CD tray 2-4 times to get iTunes to notice that I have switched CDs. This is an iTunes problem, not Windows or my Plextor -- only iTunes has any issue with CDs being inserted or switched.
    Hey Apple, I really appreciate the lack of support here.

  • I just restarted my mac then suddenly when it boots,disk utility came and says different option like repair disk, get help, reinstall OSX and I tried to click disk repair but it says that I am um able to repair the disk

    i just restarted my mac then suddenly when it boots,disk utility came and says different option like repair disk, get help, reinstall OSX and I tried to click disk repair but it says that I am um able to repair the disk

    It sounds like your hard drive either has a software problem that Disk Utility cannot fix or that the HD has failed (mechanically).
    Your Mac may have booted either to your recovery partition or to internet recovery in an attempt to repair the drive- I can't tell from your post.
    I'll assume that it was the recovery partition.
    Try to boot into internet recovery (hold down option command R at restart), and see if you can repair your HD with Disk Utility. You should also repair permissions while you're there.
    If that doesn't work, try to boot into single user mode (restart, hold down ⌘S until you see a black screen with white text) and repair your hard drive. Here's a reference with directions: Repair Your Hard Disk in Single User Mode | Everything Macintosh
    If that doesn't work you have a few options:
    If your mac originally came with installation disks, you can try to boot from the installation disk and then see if you can repair the HD.
    There is a small chance that Techtool Pro 7  will be able to repair your HD if Disk Utility can't.
    If none of that works then your HD has probably failed and will need to be replaced, which is not too difficult to do yourself if you can use a screwdriver.

Maybe you are looking for

  • Issue on Hyperion Financial Reporting Services -URGENT

    Hi Gurus, I would like to know the steps to be performed to take the back up of the Financial reports when all the Financial Services are stopped running. Production server is down and noticed that all the services are running fine except the Financi

  • How to polulate data from lookup using request dataset in OIM 11g

    Hi, Using Request dataset in OIM 11g, I need to display one dropdown with the roles those need to come from Lookup. For Ex; I have 2 resources,i.e Resource A and Resource B. Resource A has 5 roles and Resource B has 3 Roles. While creating a request,

  • Audio Manager showing less space on Memory Card th...

    Hello, I use a Nokia N70, and am trying to transfer music files to the memory card. I have the "E" (memory card) option highlighted as the device to copy files to, however it will not let me transfer more than a few tracks before it comes up saying "

  • Single schema or multiple schemas

    Hello A few years ago I worked on a greenfield project where we were building a system to serve 20 or so different departments with 1200+ users. The approach the existing DBA had taken was to use a single schema for all objects and for all apps. The

  • Deleting 3rd party software

    Hello, We want to delete a 3rd party software bolt-on that all resides in its own namespace /epiuse/.This is in our DEV,TEST and PROD systems. The original system for all objects is different to ours. How can this be done easily ?. There must be an e