Some help needed! thanks!

hi everybody! this is my first time here... and i need help! days ago unfortunately I had some troubles with my pc and all my stored music was deleted... the question is: can I transfer the music in my iPod in my pc?! I tried but I didn't succeed! thanks for your help! Fenix

Hi.
Try www.versiontracker.com and try some searches for ipods, there are quiet a few recovery software programs to use, unfortunantly I own a mac so I don't know of any programs that are for PC but try that website and I'm sure you'll find something.
Good Luck.
Kirby

Similar Messages

  • Oracle forms installation - some help need

    I am trying to install Oracle forms - but get the follwing message:
    Checking swap space: 576 MB available, 1535 MB required. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    actually - I have no choice to choose y and try what's going on - so - is this means that I shoul add some 1.5 GB of RAM to my computer? (I have already 700MB, only 300 of them are used)? I am using WinXP, free HD is above 3.5 GB, 2.4GHz processor.
    Can I try to find some workaround - e.g. simply try to copy jar's from 'stage' (direcotry in installation disk) in Oracle application server's lib directory (where it is in Oracle_Home directory?)?
    Any experience with installing Oracle forms?
    This was trying to run setup.exe, but when I am trying to run wsf.exe - I get:
    SEVERE: Unable to locate the MDAC Update Status registry key value, probably because the installation was aborted.
    MDAC possibly stands for Microsoft Data Access Components? If so - where is problem - I can run a lot of DB servers, including Oracle server itself normally?
    BTW - is there any free service available for Oracle Forms skills development (e.g. as for Oracle SQL the Intel test drive is available?)
    user454720

    OK - now I increased the max limit of my page file and now I achieved this:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors . Actual
    4294967296 Passed
    Checking swap space: must be greater than 1535 MB . Actual 1600MB Passed
    Checking Temp space: must be greater than 150 MB . Actual 1942 MB Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2006-03-18_01-57-43PM. Please wait ...
    however - after this I receive the standard messgae:
    'setup.exe has encountered a problem and need to close. we are sorry for the inconvenience..... Please tell Microsoft about thsi problem'
    actually - I have little ideas what to do further - maybe I should look for other Oracle Installer version? I am using:
    Oracle Universal Installer version: 10.1.0.2.0
    and I am trying to install
    Oracle Deveoper Suite: 10.1.2.0.2 (so - a bit higher)
    I can run OUI without any problems, my Default JRE is 1.5_1 - so - all seems to be OK?
    Please - if any idea - help me :))
    Thanks in advance!

  • Some help needed  for guides.

    Hi,
    I need this script, or another, to place guides in "dead-centre" (50%/50%)horizontal and vertical!
    Since I'm a nobody in Jsx I need some help, badly!! :)
    For 2 day's I've seen nothing but "errors" :(
    Can somebody help me, please?
    Regards
    Mahon
    Code: start
    // make guideline
    function guideLine(position, type) {
    // types: Vrtc & Hrzn
    // =======================================================
    var id296 = charIDToTypeID( "Mk " );
    var desc50 = new ActionDescriptor();
    var id297 = charIDToTypeID( "Nw " );
    var desc51 = new ActionDescriptor();
    var id298 = charIDToTypeID( "Pstn" );
    var id299 = charIDToTypeID( "#Pxl" );
    desc51.putUnitDouble( id298, id299, position );
    var id300 = charIDToTypeID( "Ornt" );
    var id301 = charIDToTypeID( "Ornt" );
    var id302 = charIDToTypeID( type );
    desc51.putEnumerated( id300, id301, id302 );
    var id303 = charIDToTypeID( "Gd " );
    desc50.putObject( id297, id303, desc51 );
    executeAction( id296, desc50, DialogModes.NO );
    Code: End

    Please try this...
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;
    guideLine(app.activeDocument.width.value/2, 'Vrtc');
    guideLine(app.activeDocument.height.value/2, 'Hrzn');
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;
    function guideLine(position, type){
        var desc27 = new ActionDescriptor();
            var desc28 = new ActionDescriptor();
            desc28.putUnitDouble( app.charIDToTypeID('Pstn'), app.charIDToTypeID('#Pxl'), position );
            desc28.putEnumerated( app.charIDToTypeID('Ornt'), app.charIDToTypeID('Ornt'), app.charIDToTypeID(type) );
        desc27.putObject( app.charIDToTypeID('Nw  '), app.charIDToTypeID('Gd  '), desc28 );
        executeAction( app.charIDToTypeID('Mk  '), desc27, DialogModes.NO );

  • Hallo. My computer can't see my iPhone 4 when I open iTunes. iPhoto sees my iPhone as a device, but can't see its photos, although it recognizes how many photos there are. Some help? Thanks

    Hallo.
    My computer can't see my iPhone 4 when I open iTunes. iPhoto sees my iPhone as a device, but can't see its photos, although it recognizes how many photos there are. Some help?
    Thanks

    Did you also read that same link you provided and see this "With iTunes 10.3 or later and iOS 4.3.3 or later, "?
    Iphone 3G does not support ios 4.3

  • Some help needed getting file path

    I had some help earlier attaching a file to mail via a dialog. That worked great.
    Now I am trying to get a particular file to attach.
    The following works but if i try to dynamically define the path ie comment out line 1 and bring into the script lines 2 and 3 it only adds the folder (line one). Any ideas?
    tell application "Finder" to set the_files to {alias "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:440b_progress certificate_8.pdf"} --------------line 1
    --set the_path to "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:" as alias ---------line 2
    --set attach_file to "440b_progress certificate_8.pdf" -------line 3
    tell application "Finder" to set the_files to the_path & attach_file
    tell application "Mail" to tell (make new outgoing message) to set visible to true
    tell application "Mail"
    tell front outgoing message
    repeat with a_file in the_files
    make new attachment with properties {file name:a_file} at after the last paragraph
    end repeat
    set visible to true
    end tell
    end tell

    Your problem is in the line:
    <pre class=command>tell application "Finder" to set the_files to the_path & attach_file</pre>
    where the_path is an alias and attach_file is a string representing the file name.
    When you use the concatenate operator ( & ) with two different object classes (in this case an alias and a string), you get a list as the result, so after this line runs the_files equates to a list containing two items:
    <pre class=command>{alias "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:", "440b_progress certificate_8.pdf"}</pre>
    There's no way that Mail.app can translate that into something that can be attached to an email message.
    Instead, what you want to do is NOT define the_path as an alias, leave it as a string. Now the above line would result in one long string of the form:
    <pre class=command>"Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:440b_progress certificate_8.pdf"</pre> 
    which can easily be coerced to an alias suitable for Mail.app:
    <pre class=command>set the_path to "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:"
    set attach_file to "440b_progress certificate_8.pdf"
     tell application "Finder" to set the_files to alias (the_path & attach_file)</pre>

  • I just updated my Mac Mini to latest software, tried updating GarageBand. It downloaded but now it gets stuck downloading the 'essential sounds and loops'. It always worked fine before I updated and would really appreciate some help. Thanks

    I just updated my Mac Mini to latest software, tried updating GarageBand. It downloaded but now it gets stuck downloading the 'essential sounds and loops'. It always worked fine before I updated and would really appreciate some help. Thanks

    I just updated my Mac Mini to latest software
    You mean, MacOS X 10.9.2 and GarageBand 10.0.2?
    How far does the download proceed? Do you get an error message?
    Try to resume the download as described here:  http://support.apple.com/kb/HT4485

  • I have a Apple TV . My problem is I signed up for hbo go and it will play on my ipad but not through app on Apple TV only previews not the actual series or movie . Need some help . Thanks !

    HBO GO problems

    Hello there rmera,
    It sounds like you have the option to use Airplay on your phone but your Apple TV doesn't seem to be picking it up. I would start by restarting the device and testing it again:
    Restart your Apple TV by selecting Settings > General > Restart.
    Apple TV: How to restart your Apple TV
    http://support.apple.com/kb/HT3180
    If that does not resolve the issue, I would next use the following article to help resolve the issue:
    Verify that your iOS device's software is up to date.
    Verify your Apple TV's software is up to date.
    Verify that your iOS device has Wi-Fi turned on. Enable Wi-Fi on your iOS device by going to Settings > Wi-Fi.
    All AirPlay-enabled devices must be connected to the same Wi-Fi network.
    Some Wi-Fi network configurations offer a Guest Network. On your Apple TV, go to Settings > General >Network and ensure that you're connecting to the same Wi-Fi network on your iOS device. On your iOS device, tap Setting > Wi-Fi and confirm that this matches your Apple TV.
    Ensure that other devices are not trying to stream to the same Apple TV at the same time.
    Ensure that your Wi-Fi router is set up with the recommended settings for the best performance.
    Certain external devices, such as microwave ovens and baby monitors, may interfere with a Wi-Fi network. Try moving or disabling these devices.
    If possible, try to locate your Wi-Fi router in the same room as your iOS device and Apple TV.
    If your wireless and wired networks are the same, try connecting your Apple TV to the router via Ethernet instead of Wi-Fi.
    If the Wi-Fi router has an external antenna, check to see that is it connected properly and in good condition.
    Use the Wi-Fi network troubleshooting guide to resolve interference and other issues.
    iOS: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • CRM - IPC issues - need some help desperately -Thank you

    Issue: Create Quotation with a product results in a error: "no connection could be made to IPC".
    Also, choosing 'Conditions' Tab results gray/empty tab with "Pricing doc. does not exist" message in the status bar.
    Landscape:  Single host Win2k, CRM 4.0 sp03 IDES with IPC SP08.  No issues on CRM side other than the above mentioned.  So far we did:
    1) Installed IPC. 
    'dispatcher.properties' file contents:
    rfcEnabled=true
    rfcDispatcherProgId=IPC_RFC_DISPATCHER
    rfcServerCount=1
    rfcServerProgIdPrefix=IPC_RFC_SERVER_
    rfcGateways=ALPHA:sapgw00
    <end>
    2) Added "ipcuser" and gave system roles according to note:412309
    3) Maintained RFC settings for IPC_RFC_DISPATCHER and IPC_RFC_SERVER_1.  Both as (host:alpha), (Gateway:sapgw00)
    Started IPC dispatcher, server.  IPC logs look good. 
    ~ IPC Admin utility was able to login with "ipcuser" and client 800. 
    ~ monitor pulls up server on port 9163.  Test create document works fine and IPC reports Operational.
    4) RFC Testing (SM59) connections
            IPC_RFC_DISPATCHER  and  IPC_RFC_SERVER_1  tested ok and reported time.
    >>>>  However, using (SE37)
    5) IPC_COM_SESSION_BEGIN executes to a error screen of:
    Test for function group  |   COM_SCE_SV
    Function module              |  COM_IPC_SESSION_BEGIN
    Runtime:       | 2.262.764 Microseconds
    Exception:     | DISPATCHER_SYSTEM_ERROR  <<<<<
    Import Parameters |      Value
      |     -
    IV_CLIENT           |    800
    IV_USER_NAME         |   IPCUSER
    IV_USER_LOCATION |       ANYTEXT
    IV_SESSION_TYPE       |      CRM
    IV_NULL                |     *
    IV_MODULE           |    IPC
    Export Parameters    |   Value
        |   -
    EV_DESTINATION          
    EV_HOST
    EV_PORT  |               00000
    EV_SESSION_ID     
    EV_SESSION_ID_IPC
    EV_RFC_SCENARIO   |      RFC
    So, digging further,
    6) IPC_COM_SHOW_SERVERS executes to a error:
    ET_DISPATCHER_LIST : 2 Entries   <<<<<
    <details>
    IPC_V_RFC_DISPATCHER - communication failure   <<<<<<
                           hostname 'iwyf7yta' unknown / CPIC-C error CM_PARAMETER_ERROR.
    Here are my questions:
    a)  Do you find anything wrong with my configuration?
    b)  why is the need for IPC_V_RFC_DISPATCHER?
    C)  Does this mean that I need to run more dispatchers and servers??
        (i.e. each for IPC_RFC_DISPATCHER/server, IPC_V_RFC_DISPATCHER/server and IPC_WOV_RFC_DISPATCHER/server) - because these destinations are defined in RFC DESTINATIONS under TCP/IP connections... and they don't have program ids registered... so their test connections fail...
    and more importantly, am I even on the right track in solving my pricing issue???
    Any help would be greatly appreciated.

    John,
    The configuration you have done is correct as per the IPC documentation. But the RFC destination to be used for IPC connection is defined in the table COMM_IPC_DEST field DEST_OUT. When you run the IPC test with the FM COM_IPC_SESSION_BEGIN, this destination is used to connect to the IPC dispatcher. BTB while you do not need more than one dispatcher you may choose to run more than one server.
    There are more than one ways to resolve this problem.
    The simplest is to maintain the RFC destination IPC_V_RFC_DISPATCHER with the program ID (in this case IPC_RFC_DISPATCHER) configured in your IPC's dispatcher.properties file.
    Once the IPC connectivity is established your pricing problems should get resolved. Let me know if it works.

  • Quicktime really successfully installed?  Need some help here, thanks!

    I accidentally uninstalled quicktimex and I wanted to reinstall it.  However, I saw no quicktime in the application folder, but the installer said quicktime was installed successfully.  What should I do? Thanks

    QuickTime Player 7.6.6 is installed in the Utilities folder.
    QuickTime X installs in the Applications folder. If you've deleted it you may be able to get it back because your profile says 10.6.3. The 10.6.7 software Combo update may help.

  • I cannot download the shockwave player. I need some help. Thanks

    Hi, I have been trying over and over again to download the adobe shockwave player for a class assignment and i have had difficulty in doing this. I have windows 7 and I use firefox. When i go to the adobe website i click on adobe shockwave player and then i click on agree and install now. Then a prompt comes up asking if i want to save the file shockwave installer slim and i click on save file. after that, the shockwave installer slim icon appears on my desktop so i click on it. and the Adobe Shockwave Player Setup runs. after it is finished running the only option that i have is to close the window. so i close it, restart my computer, and shockwave is still not on my computer. I have even deleted cookies, and my history options. I don't know what to do next.

    How do you know that
    shockwave is still not on my computer.
    Did you try the full installer?

  • Some help needed in creating trigger

    Hi Everybody,
    I was practicing trigger and I came across a question but i was not able to form a logic to create the trigger..
    Here is the question
    While modifying the EMP table, ensure that the salary is in the valid range as specified in the SALGRADE table (between lowest losal and highest hisal)
    desc salgrade
    Name                                      Null?    Type
    GRADE                                              NUMBER
    LOSAL                                              NUMBER
    HISAL                                              NUMBER
    desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)I was trying to create a trigger but I was not sure what to use in the condition to check for the validation.
    So, if anybody can help me that would be a real help and let me understand the concepts pretty well
    Thanks and Regards
    Peeyush

    Hi,
    What do you want to do if the sal is not in the allowed range?
    The code below raises a user-defined exception:
    SELECT     'OKAY'
    INTO     in_range
    FROM     salgrade
    WHERE     :NEW.sal     BETWEEN     losal
                   AND     hisal
    AND     ROWNUM          = 1
    IF  in_range  IS NULL
    THEN
         RAISE  sal_out_of_range;
    END IF;What is the new sal is NULL? The code above allows them. If you don't want them, a NOT NULL constraint is better than a trigger.
    This diesn't do exactly what you said. The code above checks to see if sal is in the allowed range on any single row of the salgrade table. If there are gaps in the table, and the new sal happens to fall into one of those gaps, this will raise the error.
    For example, in the standard salgrade table, the lowest losal is 700, and the highest hisal is 9999,, but some non-integer values in that range (lsuch as 1200.5) are not BETWEEN losal and hisal on any row. I assume this is what you really want, but, if not, you can use MIN (losal) and MAX (hisal).
    Edited by: Frank Kulash on Jun 13, 2011 1:10 PM
    Edited by: Frank Kulash on Jun 13, 2011 1:18 PM
    When I wrote the above, I hadn't seen your 2nd message.
    In triggers, you need a DECLARE statement before you declare local variables, such as v_lowsal. (By the way, I would call it v_losal, to be consistent witht the column name.)
    Is there a column called grade in the emp table? If not, then what is :NEW.grade?
    If salgrade has more than 1 row, then SELECT ... INTO ... FROM salgrade will raise a TOO_MANY_ROWS exception, unless you put something in the WHERE clause that guarantees you'll never return more than 1 row. (That's why I used "AND ROWNUM = 1".)

  • Some help needed on Order-to-cash process

    Hi Gurus,
    i need some insight on how to use/config the Order-to-cash process.
    if someone could help me out in this, it would be greatly appreciated.
    Thanks in advance
    Poorna.

    Hi,
    Please find info on
    https://wiki.sdn.sap.com/wiki/display/ERPLO/SD%20Configuration
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/8c/df293581dc1f79e10000009b38f889/content.htm
    Thanks,
    Vrajesh

  • Some help needed for shopping calculator program

    Hi. I would like to thank you in advance for helping me. At the moment I am pretty much stuck. I don't know how to add the input using 'while loop'. This is what I'm suppose to do:
    Write a program called ShoppingCalculator.java that allows the user to enter the prices of several items they have bought and then tells them the total amount. The user can enter the prices for as many items as they want, until they click Cancel. The program should then output the total amount they spent, in a message dialog box. Use pounds for all the amounts.
    So far I have written:
    import javax.swing.JOptionPane;
    public class ShoppingCalculator
        public static void main(String[] args)
                boolean done = false;
                double amount;
                String input;
                while (!done)
                        input = JOptionPane.showInputDialog("Enter the amount you spent on the next item:");
                        amount = Double.parseDouble (input);
                if (done = true)
                        JOptionPane.showMessageDialog (null, "You spent a total amound of £" + amount  );
    }Sorry if the code doesn't make much sense cause I've been changing the code around so many times that.
    At one point when I was playing around with the code, I manage to make the input dialog loop nicely but when I pressed cancel, the message dialog only output the last input I put in. What I'm really stuck here is I need to know how to add the input when using 'while loop' and is it correct to use the IF Statement on this program. Please give me some advice on how to and I will try to work on it again.

    Ok. I have edit the code and this is what it looks like:
    import javax.swing.JOptionPane;
    public class ShoppingCalculator
        public static void main(String[] args)
                boolean done = false;
                double amount;
                String input;
                double total = 0;
                while (!done)
                        input = JOptionPane.showInputDialog("Enter the amount you spent on the next item:");
                        amount = Double.parseDouble (input);
                            if (input == null)
                                        total = total + amount;
                                        JOptionPane.showMessageDialog (null, "You spent a total amound of " + total  );
    }I created another variable (total) and it even compiled. The only problem I have now is the message dialog wouldn't show at the end. When I press cancel and nothing happen. This is what I get on my output command window:
    Exception in thread "main" java.lang.NullPointerException
    at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:991)
    at java.lang.Double.parseDouble(Double.java:510)
    at ShoppingCalculator.main(ShoppingCalculator.java:23)
    Java Result: 1
    Anything that isn't right here?

  • Some help needed setting up NAT in 2x Airport network

    I'm wondering if anyone can give me some advice on how to get port forwarding to work on my network.
    DSL comes into the house downstairs and from the DSL modem it goes right into an Airport Express. I am on the second floor though, and the Airport's signal isn't strong enough for my G5's antenna to pick up. That's why I have another Airport Express on the first floor, expanding the Airport network.
    The two Airport Express units are in a "WDS".
    I would like to run a home server, so I have to open up port 21 and forward it to my G5, which gets its internet from the 2nd Airport Express unit.
    How do I do this? The Airport's have IP's in the 10.0.0.x range. The G5 is in the 192.168.2.x range because it also connects to a wired router. Do they both have to be in the same range?
    Port Forwarding seems disabled on the Airports because I use WDS. I can check the Distribute IP checkbox in the Network tab, but then I get a warning it shouldn't be enabled with WDS on.
    Any ideas?
    Thanks in advance,
    Maarten

    Hi Henry,
    I managed to get it working. I thought port fowarding was greyed out on both Airport units, but it only was on the relay one. Not on the main one. Also, I first accidently forwarded port 21 to the G5's wired IP address instead of its wireless (Airport) IP address.
    The setup is exactly as you described (your 2nd paragraph). The wired router is only there to connect 4 PC's to the G5. They don't need internet (I don't want Windows to have internet), they just need just data transfer with the G5 (MIDI data and VNC control). It's on a different IP range than the Airport network.
    One issue I am still experiencing is that when Airport is turned on on the G5, the router network (the 4 PC's) don't appear in Finder > Network. When I turn off Airport, the router network appears within a second. So there is a file sharing conflict or something there.
    Thanks for your help,
    Maarten

  • My report on installing Windows 7 RC x64 on my lenovo X200 (Still some help needed!)

    I upgraded from Vista and for a brief moment everything seemed to work but then problems started and I did a clean install. BUT there are quite some issues:
    - Unknown PCI Simple Communications Controller in Device Manager (Which drivers are needed?)
    - Intel GMA driver reports to be installed but I don't have the Settings app to change power saving things and I don't have the GPU video acceleration as well as some problems with 3D Games (QuakeLive)
    - Fans seem to spin more than under Vista. Not sure about that one. (Have to observe with new drivers from lenovo)
    Fixed:
     - Can't install Bluetooth driver (No Device found) - Installed the OSD Package following a guide posted somewhere on the board (manual registry key added, installed in vista mode) and could then enable BT using the Fn Keys and the Drivers were installed automatically by Wind7 after that
    - Fn+F2 (Lock) does not work, Fn+F5 (WiFi&Bluetooth) does not work - Same fix as BT issue
    - Brightness change does not show the green onscreen bar, does not work after sleep - Fixed through the Hotkeys Driver for Win7 (provided by lenovo on the Win7 Beta Drivers page)
    - Power Manager - New Drivers for Win7 by lenovo
    Doesn't work but it's crap anyways:
    - Presentation Director won't install correctly
    Doesn't work but not important:
    - Audio Driver from lenovo only worked after "Install with recommended Settings" and the SmartAudio pane in the Control Panel does not work so I uninstalled and the Win drivers work perfectly
    - Fn+Pause (doesn't do anything)
    - Fn+PrtSc (doesn't do anything)
    - Intel AMT wouldn't install (I'm not in an Enterprise Environment so I don't need it anyways)
    What works:
    - Active Protection
    - Camera (at least it installed. Didn't try it out)
    - All other Fn Keys, Volume Buttons, Onscreen Display of volume/ThinkLight change
    - Intel Matrix and Turbo Memory drivers installed
    - lenovo System Interface installed
    - WLan (Out of the box and after I killed it with the deinstallation of Access Connections, worked again with Intel drivers)
    - Fingerprint (Win Update)
    - Chipset (Win Update)
    - LAN (Win Update)
    - Display (Win Update)
    - Power Management Driver (Win Update)
    - Trackpint (Win Update)
    - Audio (Out of the box)
    - Modem Drivers installed
    Untested/Not Installed:
    - Easy Eject Utility (Not needed anymore with new Win7 Driver behavior)
    - ThinkVantage Menu & Message Center
    - Access Connections
    It works quite well but the GMA and Brightness issues are really annoying! BUT I hate it, that the System Update App isn't available anymore and stopped working with Vista SP2 (RC). One app which manages all the Driver and support software installation is just perfect! I hope lenovo will release something like it again (Maybe as a sidetab in the official Win7 Update app )
    Does someone know how I can fix the the red problems?
    Thank you.
    Message Edited by Chrigi on 05-28-2009 01:11 PM
    Message Edited by Chrigi on 06-06-2009 03:42 AM

    Grüezi Christian:
    I did a clean installation (as opposed to an upgrade) of W7 RC on my W500, and discovered that all of the problem you mention are quite easily solved.  Basically, they seem to be caused by the computer needing the correct device driver for the item - in other words, the device driver is not provided on the W7 CD, you need to get it from the Lenovo website.
    In your case, because you did an upgrade install (rather than wiping your hard drive and doing a clean install), chances are that you already have the required drivers present on your computer.  They will be located at the root level of your 'C:' drive in a folder entitled 'drivers' (in other words, C:/drivers/).
    All you have to do is point your computer in the correct direction, to assist it to find the driver that is present on your hard drive.
    Here is how I recommend you proceed:
    1) Open the Device Manager.  In W7, you can accomplish this from the control panel (Start - Control Panel - Device Manager).
    2) Look for an item in the device manager that the computer is unhappy about.  These are normally identified with exclamation points or similar icons beside them.
    3) Right-click on one of these problem items, and choose 'Update Driver Software'.
    4) Select the lower option (the non-default option), which is 'Browse my computer for driver software'.
    5) In the window that appears, use the browse button to navigate to C:/Drivers, and confirm that the check box 'include subfolders' is checked.
    6) Press the NEXT button.  The computer will then go fishing through the C:/Drivers folder, find what it needs, and install it.
    You will have to iterate this procedure for each item in the device driver list that shows a problem.  It may also be necessary to reboot the computer after each iteration.
    Hopefully, this will solve your problems.  Please let us know what your experience is.
    gruss,
    Michael
    Message Edited by PanEuropean on 05-17-2009 01:35 PM
    W520 (4270 CTO), which replaced a W500 (4062-27U), which replaced a T42P, which replaced an A21P...

Maybe you are looking for

  • Error while compiling Key flexfield

    Hi, I'm getting the below error while trying to compile one key flexfield structure. +APP-FND-00668: The data that defines the flexfield on this field may be inconsistent.  Inform your system administrator that the function: FDFRKS could not find the

  • Preparing for upgrade and Unicode conversion while on 4.6c

    We're currently on 4.6c and preparing to upgrade to ERP 2005 and do a Unicode conversion.  I'm trying to compile a list of coding techniques that can used in 4.6c that will minimize changes needed for Unicode.  Does anyone have such a list? Some thin

  • Solaris 8 can't open root

    Solaris 8 It gets as far as reading the hostname on boot and then spits out /dev/dsk/c0d0s1: no such device or address (this is swap). Then it trieds to check / but complains it can't open it (/dev/rdsk/c0d0s0). It wants me to repair it manually. I t

  • No sound device found G6 2103AX running XP

    Hi...my very very elderly aunt bought the G6 2103AX laptop but just couldnt get her head around Windows 7 and asked me to install Win XP on it. Rather than wipe win 7 i set up a seperate partition with XP on it...and after much work and many hours go

  • Embedding Google Earth in frame

    i am making a a java application using swings i want to embed google earth in it can nebody help me how to proceed