USB not working for data

Hi, I just realized one of the USB ports of the laptop (powerbook G4) is not working for data transmition, it only works for power, like a cooler.
Does anybody has any idea?

USB and FireWire Quick Assist
http://support.apple.com/kb/HT1151?viewlocale=en_US
Common fixes for USB device issues (unrecognized, etc.)
http://www.macfixit.com/article.php?story=20070824012114701
 Cheers, Tom

Similar Messages

  • USB not working for ipod

    This is my 2nd USB cord for ipod touch. This one is now not charging as it should. Tip or suggestions? Anyone else have this problem?

    - See:       
    iPod touch: Hardware troubleshooting
    - Try another cable
    - Try another charging source
    - Inspect the dock connector for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genus Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • HT1476 My iPhone 4S will charge on a laptop but not from a wall plug. I have tried different boxes and different USB cords from the wall but none work. These boxes and USB cords work for other family members with iPhones. I'm stumped :/

    My iPhone 4S will charge on a laptop but not from a wall plug. I have tried different boxes and different USB cords from the wall but none work. These boxes and USB cords work for other family members with iPhones and a USB cord that works from the laptop won't work from 3 or 4 different wall boxes that work for others. I'm stumped :/

    Update: It seems as though the phone will charge if I plug it in and then turn it off.  It will not charge while the phone is on.  Also iTunes will not recognize it, so I can't sync or anything.  I read somewhere that it could be a fuse somewhere?? Or maybe the dock connector. Where is the best place to get this repaired?

  • I have an older iMac 5,1 and the disc drive no longer works. I was hoping that I could the Apple USB super drive as a replacement, but the info on the super drive page says compatible with iMac 2012 or later. Does anyone know why it would not work for me?

    I have an older iMac 5,1 and the disc drive no longer works. I was hoping that I could the Apple USB super drive as a replacement, but the info on the super drive page says compatible with iMac 2012 or later. Does anyone know why it would not work for me?

    A reply to similar question (Q & As , in product page Apple Store) says:
    "...dissable the internal reader hardware from devices setup. Then plug the external usb superdrive and that's it."  Answered by Enrique T from Lima Oct  25 2013.
    If you can locate an external Apple USB 'Air" superdrive for earlier model MacBook Air, that should work. The newer one for the Air is the same as for iMac, now.
    You may be able to use other brands of external USB optical drive with your older intel-based iMac, as some of them function capably. A few should also be able to see system discs or other bootable utilities on DVD.
    Hopefully this helps.
    Good luck & happy computing!

  • Clob is not working for bulk data files in PL/SQL XML program

    Hi Odie,
    we took your help to fix the our issue before
    "https://forums.oracle.com/forums/thread.jspa?threadID=2238458&tstart=105"
    working fine for : program is working for smaller size data.
    Issue : now we have problem with the largr size data .
    getting the below error:
    Arguments
    P_dir_name='/tmp'
    P_file_name='CCBGO.COLO_CNG.RESPONSES.20120802.00054131826'
    Environment will now switch to UTF-8 code-set.
    Parts of this log file may not display correctly
    as a result. This is an expected behavior.
    XML_REPORTS_XENVIRONMENT is :
    /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /apps/applmgr/product/OFDEV/ofdevora/806/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    stat_low = 8B
    stat_high = 0
    emsg:was terminated by signal 11
    Appreciated for your earlier support.
    Kindly suggest .
    Many Thanks,
    Ramesh.

    Thanks ALex,
    your are true it is concurrent program error ,
    but it is working for small amount of data and generating the output and it is not working for larger data.
    i have placed the code which i have used kindly suggest where i am going wrong.
    i am calling the .rdf through the concurrent program, i've used the below query in RDF
    select
    BATCHHEADER
    ,BATCHTRAILER
    ,RqUID
    ,Severity
    ,PmtRefId
    ,StatusDesc
    ,ErrorDesc
    ,AsOfDate
    ,AsOfTime
    ,RqUID1
    ,SPRefId
    from table(CL_CXFRFXFH_PKG.rcacknowledgments(:P_dir_name,:P_file_name));
    kindly find the below code for the package CL_CXFRFXFH_PKG.
    ==========================
    CREATE OR REPLACE package body APPS.CL_CXFRFXFH_PKG is
    function rcacknowledgments (p_directory in varchar2, p_filename in varchar2)
    return TRecordTable pipelined
    is
    nb_rec number := 1;
    tmp_xml clob;
    tmp_file clob;
    rec TRecord;
    begin
    dbms_lob.createtemporary(tmp_file, true);
    tmp_file := dbms_xslprocessor.read2clob(p_directory, p_filename);
    rec.BATCHHEADER := regexp_replace(tmp_file, '.*<BATCHHEADER>(.*)</BATCHHEADER>.*', '\1', 1, 1, 'n');
    rec.BATCHTRAILER := regexp_replace(tmp_file, '.*<BATCHTRAILER>(.*)</BATCHTRAILER>.*', '\1', 1, 1, 'n');
    loop
    tmp_xml := regexp_substr(tmp_file, '<\?xml[^?]+\?>\s*<([^>]+)>.*?</\1>', 1, nb_rec, 'n');
    exit when length(tmp_xml) = 0;
    --dbms_output.put_line(tmp_rec);
    nb_rec := nb_rec + 1;
    select RqUID, Severity, PmtRefId, StatusDesc, ErrorDesc, AsOfDate, AsOfTime, RqUID1, SPRefId
    into rec.RqUID
    , rec.Severity
    , rec.PmtRefId
    , rec.StatusDesc
    , rec.ErrorDesc
    , rec.AsOfDate
    , rec.AsOfTime
    , rec.RqUID1
    , rec.SPRefId
    from xmltable(
    '/CMA/BankSvcRq' passing xmltype(tmp_xml)
    columns RqUID varchar2(3000) path 'RqUID'
    , Severity varchar2(3000) path 'XferAddRs/Status/Severity'
    , PmtRefId varchar2(3000) path 'XferAddRs/Status/PmtRefId'
    , StatusDesc varchar2(3000) path 'XferAddRs/Status/StatusDesc'
    , ErrorDesc varchar2(3000) path 'XferAddRs/Status/ErrorDesc'
    , AsOfDate varchar2(3000) path 'XferAddRs/Status/AsOfDate'
    , AsOfTime varchar2(3000) path 'XferAddRs/Status/AsOfTime'
    , RqUID1 varchar2(3000) path 'XferAddRs/RqUID'
    , SPRefId varchar2(3000) path 'XferAddRs/SPRefId'
    pipe row ( rec );
    end loop;
    dbms_lob.freetemporary(tmp_file);
    return;
    end;
    end;
    ============================================
    Many Thanks,
    Ramesh.

  • I have an Iphone 4 and my internet has not worked for a good 10 months, why wont it work? my dad pays for my data plan, so its not that i dont pay my bill. I've even tried to reset my net work settings, and that did not work

    i have an iphone 4 and my internet has not worked for a good 10 months, why wont it work? My dad pays for my data plan, so its not that i dont pay the bill. I've even tried to rest my net work settings, and that did not work. I went to AT&T and they said that the only way to fix it was to buy a new phone, and im not going to buy a new phone with out my upgrade. someone, please help!

    Hey lilmissindian!
    I have an article for you here that will help you troubleshoot this issue:
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Personal Data not working for an employee in ESS

    Hai All,
    I have configured Personal Data in ESS. But, for a particular employee Personal Data is giving the below mentioned error when he edits the data. The error happens when he edits and clicks on Review or when he clicks on the dropdown for Nationality(Only for this field, the error occurs) and selects a value from that dropdown.
    As I searched in the forum, I found that we have to search ST22 for that user. In ST22, it is throwing 4 errors:
    1. UNCAUGHT_EXCEPTION CX_HRPA_INVALID_INFOTYPE_DB. The exception 'CX_HRPA_INVALID_INFOTYPE_DB' was raised, but it was not caught anywhere along the call hierarchy.    Termination occurred in the ABAP program "CL_HRPA_TIMECONSTRAINT========CP" - in "COMPUTE_INSERT". The main program was "SAPMSSY1 ".                                                        
    2. SYSTEM_CANCELED. The current program "CL_HRPA_TIMECONSTRAINT========CP" has been terminated by another mode.
    3. OBJECTS_OBJREF_NOT_ASSIGNED_NO CX_SY_REF_IS_INITIAL. Termination occurred in the ABAP program "SAPLHRXSS_PER_MAC" - in  "HRXSS_PER_CLEANUP".     
    The main program was "SAPMSSY1 ".
    4. SYSTEM_CANCELED. The current program "SAPLHRXSS_PER_MAC" has been terminated by another mode.
    My questions are:
    a Why it is not working for a particular employee?
    b Why it is working for other employees?
    c Did I miss out some configurations?
    Please help me out.
    Regards,
    Jubish

    Hai,
    Thankyou for the reply. But the user has entry in the infotype. Likewise, it is possible to change data from PA30 transaction also. The problem occurs only when I try to change data through ESS.
    Regards,
    Jubish

  • ODI 11g 11.1.1.7 with Win64 bit OS : Starange problem : Right click does not work for Create new data server in Topology.

    ODI 11g 11.1.1.7 with Win64 bit OS : Strange problem : Right click does not work for Create new data server in Topology.
    On right click nothing happens at all. I have  reinstall the ODI multiple times with right installer. issue persist.
    Please help.

    Hi,
    Did you use the generic installer or the win32 one ? You should use the former with Win64.
    You can also check that your version of Java is supported in the certification matrix.
    Regards,
    JeromeFr

  • USB port Working for my Wireless mouse but not working for another Devices like Flash Memory ?, USB port Working for my Wireless mouse but not working for another Devices like Flash Memory ?

    USB port Working for my Wireless mouse but not working for another Devices like Flash Memory ? Anyone can help me plz?

    Hi, is this a question" Post?
    or are you just offering an insight into your Mouse Issue?
    Generally and at times we all have little idiosyncrasies appearing with the running of our Macs.
    I use the same Logitech BT with my MBP. MB & iBook..(not at the same time) Only ever had one issue
    and the cure was to completely Delete the mouse from BT -> Repair Permissions & Reboot then Re Install the BT mouse..Ihave just put a new set of batteries in the Logitech (only 2nd set ever)...L

  • Ovi Suite + 5230 USB not working

    Preamble:
    I recently connected my Nokia 5230 mobile phone to my PC via USB connection and loaded up Ovi Suite (2.2.1.23). Everything worked lovely. But alas! Both an Ovi suite update was available, as well as a update for the phone itself! So I downloaded the latest version of Ovi Suite (3.0.0.284).
    Unfortunately, now Ovi Suite does not detect when I select "PC Suite" USB mode (selected on the phone screen). This essentially makes Ovi Suite useless.
    So I followed some advice on other discussion pages (more on that later) and reinstalled the Ovi Suite. The problem persisted.
    Here are some pictures to help you understand my problem:
    http://i.imgur.com/5IknF.jpg
    The computer is able detect the phone is connected via USB. I can even browse the contents of the phone memory and memory card. Upon detecting the connected phone, and me pressing 'PC Suite' on the phone screen, it will show this:
    http://i.imgur.com/lV0rs.jpg
    I cannot progress past this screen. The Ovi Suite simply does not recognise that I've selected that option on the phone.
    Defense:
    I know what your thinking. "Just another USB thread". Well, I did in fact read plenty of threads on this forum before posting, and have spent the last few hours uninstalling and reinstalling Ovi Suite and drivers in various ways (as suggested in those threads), with no success.
    The following is a list of forum threads which I have read and tried all the solutions found in each, and I have copied the solutions (which appear to have worked for other people), for your convenience:
    /t5/Nokia-Ovi-Suite/Ovi-Suite-PC-Suite-USB-Connection-Problem/td-p/682828
    Solutions which did not work for me:
    Could you please follow these steps and check?
    1. Disconnect your phone from PC if connected.
    2 .Open Control Panel and go to ‘Programs and Features’
    3. From the list of available programs, choose ‘Nokia Connectivity Cable Driver’
    4. Click on the ‘Change’ button on top toolbar.
    5. In the setup dialog box that pops up next, choose ‘Repair’ and select ok. Wait for setup to complete.
    6. Restart the computer if prompted.
    7. Now connect your phone to the PC. Driver installation should complete and PC suite (hopefully) should detect your mobile properly now.
    1. Uninstall all nokia related applications like Ovisuite, pc suite, connectivity cable driver,pc connectivity solutions, nokia software updater etc. from ur PC.
    2. Restart your PC
    3. Now download and install the recent ovisuite from http://www.ovi.com/suite
    4. After installation, disconnect/disable your internet connection (this will make sure that the PC use the drivers which comes with ovisuite and  prevent the PC from downloading any new drivers from internet) and then connect your mobile and wait for drivers and support software installation.
    5. After drivers installation you can connect your mobile to ovisuite from ovisuite screen.
    /t5/Nokia-Ovi-Suite/Can-t-connect-to-Nokia-Ovi-Suite-on-Nokia-6700/m-p/757938#M5623
    Solution which did not work for me:
    Hi GannonC,
    Uninstall the following Programs, if any, from Control Panel -> Programs and Features or Add or Remove Programs.
    Nokia Connectivity Cable Driver
    Nokia Ovi Suite
    PC Connectivity Solution
    Later download and install the latest OVi Suite from the following location.
    http://www.ovi.com/suite
    After OVi Suite installation, restart your PC, disconnect your internet from PC and connect your mobile to the PC. This is to prevent the PC searching for a new drivers from internet. OVi suite has all the required drivers for all the nokia phones available in market.
    Once all the required drivers are installed automatically, you try connecting the mobile by selecting 'Connect your device' from the bottom left on the OVi suite screen. You should be able to connect your device now.
    After connecting you can go ahead and update your maps/ download new country maps.
    NOTE: before updating your maps/ download new country maps, you should have used your maps in you mobile atleast once.
    Hope this will resolve your issue.
    You can connect back your internet anytime after the drivers installation.
    /t5/Nokia-Ovi-Suite/OVI-suite-not-reconizing-the-OVI-suite-USB-mode-N8/m-p/809893#M7107
    Solution which did not work for me:
    Hi,
    Please check the suggestions below:
    Select Ovi Suite via Tools -> Options -> My device -> Remove this device.
    Once you add the device back to Ovi Suite, Select tools -> Add device, reconfigure the Sync -> Option - device sync settings and sync again.
    If it does not help:
    Go to
    Control Panel--> Right click and Programs and Features or add/remove programs   "Repair" Nokia Ovi Suite.
    Go to
    Control Panel--> Programs and Features or add/remove programs - > Right click and "Repair" Nokia Connectivity cable driver & PC Connectivity solution.
    If it does not help:
    Uninstall the following Programs,from Control Panel -> Programs and Features or Add or Remove Programs.
    Nokia Connectivity Cable Driver
    Nokia Ovi Suite
    PC Connectivity Solution
    Later download and install the latest OVi Suite from the Nokia.com/support.
    After OVi Suite installation, restart your PC, disconnect your internet from PC and connect your mobile to the PC. This is to prevent the PC searching for a new drivers from internet. OVi suite has all the required drivers for all the nokia phones available in market.
    Once all the required drivers are installed automatically, you try connecting the mobile by selecting
    'Connect your device' from the bottom left on the OVi suite screen. You should be able to connect your device now.
    Br
    Mahyav
    /t5/Nokia-Ovi-Suite/E5-Ovi-Suite-keeps-telling-me-that-my-device-isn-t-in-PC-suite/m-p/856573#M7752
    Solution which did not work for me:
    Maarten, I had the same issue and it started after I updated Ovi Suite as well as my device software. I found this in another thread and thought it might help you. I just uninstalled the 3 items and downloaded and installed as prescribed by going to nokia.com/support and downloading and reinstalling Ovi Suite.... Merry Christmas
     Re: OVI suite not reconizing the 'OVI suite USB mode 22-Nov-2010 11:36 AM
    ***** Select Ovi Suite via Tools -> Options -> My device -> Remove this device.
    Once you add the device back to Ovi Suite, Select tools -> Add device,
    reconfigure the Sync -> Option - device sync settings and sync again.
    *****If it does not help:
    Go to
    Control Panel--> Right click and Programs and Features or add/remove programs
     "Repair" Nokia Ovi Suite.
    Go to
    Control Panel--> Programs and Features or add/remove programs - > Right click
    and "Repair" Nokia Connectivity cable driver & PC Connectivity solution.
    ***** If it does not help:
    Uninstall the following Programs,from Control Panel -> Programs and Features or
     Add or Remove Programs.
    Nokia Connectivity Cable Driver
    Nokia Ovi Suite
    PC Connectivity Solution
    Later download and install the latest OVi Suite from the Nokia.com/support.
    After OVi Suite installation, restart your PC, disconnect your internet from PC and
    connect your mobile to the PC. This is to prevent the PC searching for a new drivers
    from internet. OVi suite has all the required drivers for all the nokia phones available
    in market.
    Once all the required drivers are installed automatically, you try connecting the mobile
    by selecting
    'Connect your device' from the bottom left on the OVi suite screen. You should be able
    to connect your device now.
    /t5/Nokia-Ovi-Suite/not-recognizing-USB-mode-on-E73/m-p/780655#M6383
    Solution which did not work for me (simmilar to above):
    frauk:
    I found this on the Europe forum and it worked for me--finally!
    From /t5/Nseries-and-S60-Smartphones/Synchronisation-error-code-8393f010/m-p/734155/highlight/true#M21944...
    Click Start
    Click Control Panel
    Click Programs and Features or Add/remove Programs
    Choose Nokia Nokia Cable Connectivity then Change and repair
    Do the same for PC Connectivity Solution - Change then repair
    Reboot computer
    After re-starting the computer, I also followed this portion of a suggestion from another post (don't know if it made a difference or not):
    "connected the device, waited till all the drivers were loaded.
    Then launched Ovi suite"
     (From /t5/Nokia-Ovi-Suite/E52-Sync-Error-8393f010-838c03ee/m-p/740481)
    Ovi Suite then recognized my device and the sync appears to have gone smoothly.  I hope it works for you too!  It's ridiculous that it causes so many problems though--I've wasted many hours on something that should have installed correctly the first time.
    Other threads with this problem, which I came across that mention the same problem with various other phones:
    /t5/Nokia-Ovi-Suite/5230-won-t-establish-USB-connection-with-Ovi-Suite/td-p/824037
    /t5/Nokia-Ovi-Suite/OVI-Suite-2-2-0-245-problem-recognizing-Nokia-device/m-p/719958#M4079
    More data:
    Now that I have shared a detailed description of my failings with you, here is some information about my phone and the Ovi suite:
    Phone information (Keypad: *#0000#):
    Software version
    V 20.0.005
    Software version date
    23-03-2010
    Custom version
    20.0.005.C02.01
    Custom version date
    23-03-2010
    Language set
    19
    Model
    5230
    Type
    RM-588
    Latest update
    Not needed (<-- is this another bug Nokia? The phone regularly informs me that a update is available...)
    Ovi Suite System information:
    Nokia Ovi Suite 3.0.0.284
    PC Connectivity Solution 10.50.2.0
    Connectivity Cable Driver 7.1.36.0
    Nokia Ovi Suite Software Updater 2010.44.0.60888
    Maps Service API 4.0.24.1
    Nokia mPlatform 2.7.44
    Ovi Desktop Sync Engine 1.4.1.42
    Operating system:
    Microsoft Windows Vista 64-bit Edition, Service Pack 2
    Language: English
    Detected internet browsers:
    - Microsoft Internet Explorer 8.0.6001.18999
    - Mozilla Firefox 3.6.13 (Default browser)
    Detected Bluetooth stacks:
    - Microsoft (Version: 6.0.6000, Build: 16386), In use.
    Detected USB drivers:
    - Default Hub Driver for USB 6.0.6002.18005
    - USB Modem Driver 6.0.6002.18005
    - EHCI eUSB Miniport Driver 6.0.6002.18005
    Additional information:
    Windows Vista Home Premium SP2 64-bit (with all updates installed)
    I have no problems with USB or drivers with another components
    Zship's revelations:
    So this is not really a problem for me. I have the working, older (2.2.1.23) version of Ovi Suite installed on my netbook, and sure enough, it works fine, I just tried it. I wont be updating Ovi Suite on it though. I also could probably just download the update via 3.5G using just the phone itself, but the problem remains that a simple software update has caused a critical connectivity problem between your software and hardware. Given that many Nokia customers would have less technical know-how than say, myself or anyone else on this forum, this problem is a quite likely a huge inconvenience to them, they probably wouldn't visit these discussions and spend 5 hours reinstalling software like I just did, and they surely would be thinking twice before purchasing another Nokia device in the future.
    tl;dr - Nokia recommended update breaks connectivity between software and device, various attempts to fix seemingly simple problem don't work.
    Solved!
    Go to Solution.

    SAME PROBLEM. And none of the many suggested solutions has worked for me yet. I want to thank all on this thread (and many others) for their help. I've learned a lot but I haven't gotten to the bottom of it. I think maybe Nokia needs to ... uh ... bloody well BOTHER TO FIX THIS ISSUE themselves, maybe. Like, cuz they're PAID FOR IT and I'M NOT. Harrumph.
    I run Windows XP, and was on Media Player 11, but have rolled back to 9 and 10. I have a Nokia E 72. I have all the latest Nokia cable-drivers, PC Suite, OVI Suite, Connectivity software, etc.. The symptoms are as follows: when I plug in the phone by USB cable, the laptop won't recognize it. It says "USB device faulty" or "failed to load properly" and refuses to get the hardware into its brain. The Device Manager shows only a "Unknown Device" which I cannot install drivers onto. Taking the extra media-card out of the phone doesn't make any difference -- nothing I've done will make the computer recognize the main (built-in) card in the phone. I can't browse to it via any sort of populate / repopulate disk drive, or any other method of connecting it.
    As I understand it, this is some conflict with the phone and the new concept of MTP. Media Transfer Protocol confuses the computer, causing it to kind-of think that the phone is kind-of a media player, when in fact it's a whole lot more. So, the "parent" doesn't get loaded, then the rest of the phone doesn't get loaded, then it kind-of tries to load some MTP but fails, etc.. If I could browse to the phone through a non-Nokia connection I'd be happy to do so in order to implement any of a number of the suggestions above. But I can't get the computer to recognize the phone when the phone is plugged in by USB, regardless of all the solutions above.
    The problem began a few days ago. It just up and wouldn't recognize the phone. I hadn't installed any updates that I knew of on either item, but it's possible that my memory is faulty and a newer version of this or that snuck in there and screwed it all up. I have tried a serious roll-back to a Restore Point about six weeks old, but that didn't solve the problem. This suggests to me that the problem is phone-resident, since the rollback was to a computer-based Restore Point and I don't have phone rollback capability. 
    This seriously hampers me. PC Suite, OVI, and some future version of Nokia Suite, will all be useless to me unless Nokia accomplishes the stunning act of supporting their software. I won't hold my breath. Just in general, you'd think that plug-and-play of a phone into your computer would be a lot simpler. Just take the cord -- stick it in the phone; stick it in the computer -- and shazam, you're plugged in. But NOOOOOO we're on NOOOOOOKIA ... Now I know why Microsoft wanted to buy them so badly. They knew they'd all get along and have the same assumptions about software -- that it doesn't really matter whether it works reliably on a user's computer at his home, as long as it works in theory on some programmer's ideal personal computer in Seattle once in a rare while. Nokia? Meet Microsoft. Microsoft? You and Nokia will get along juuuust fiiiine ...

  • Fingerprint utility is not working for normal users - Tecra M11

    Hi All,
    I installed windows 7 pro in Tecra M11 laptop and the Toshiba finger print utility is not working for normal users.
    It is working only for domain administrators. The TFPU is not working for, normal domain users, local users, local administrators. If we run the utility it will ask to enter the windows password and once we applied the password then the message saying "entered password is not valid" will prompt even if we are trying to use the utility first time.
    If we try with a domain admin account it will work without any problem. Can somebody help me to trouble shoot this issue?
    Thanks.

    People nowadays experienced that no matter How many times we glide our finger it have no response.In this instance, you might be very afraid of Windows password lost by reason that there is a plenty of important data on your PC.
    Then what should you do? One choose is fix the Fingerprint scanners, but this method will cost a lot of money. The other is use the Windows password function to solve the problem. Certainly, this is a very safer, faster and easier to use method for you.
    According my personal experience, you can try these three ways to re-access to your PC:
    Method 1: Login with the default administrator account
    * Step 1: Start Windows PC
    * Step 2: When you can see the Windows login screen, press ctrl+alt+del keys Twice and it'll show Classic Login box
    * Step 3: Type Administrator as Username and leave the password field blank
    * Step 4: Press the Enter Key and then you can be able to login the default windows administrator account which is it created by default when install windows.
    *Note:* This trick is only work for Windows XP. And when you input the key combination Please don't put the cursor on any account. And if you change the name or password before, you cannot login by this way.
    Method 2: Use the previous password reset disk
    This method describes how to create and use a password reset disk for a computer that is a member of a domain. You can use a Windows password reset disk to gain access to your Microsoft Windows Professional-based computer if you forget your Windows password. Please click here to learn more.
    Method 3: Using Windows Password Unlocker
    Using Windows password remove software is could be the fastest and easiest way for you to reset your Windows password while you didn't create a password reset disk before.
    There are 2 options for you: recover Windows password with a bootable CD/DVD or recover Windows password with a USB flash drive.
    Before starting, a bootable CD/DVD or USB flash drive and a computer with CD drive are required. (Internal CD drive and external CD drive are both OK.
    Option 1: Recover Windows password by burning a bootable CD/DVD
    Option 2: Recover Windows password by burning a USB flash drive
    The whole Windows password recovery process can be divided to 3 big steps:
    * >> Step 1: Burn a USB flash drive to remove lost Windows password
    * >> Step 2: Set your target computer to boot from USB
    * >> Step 3: Recover forgotten Windows password with the burned USB flash drive
    In fact, all you need is a *Windows Password Unlocker www.passwordunlocker.com/windows-password-recovery.html which can help you directly reset your windows xp password, and then you can login your XP without a password required. Of course, there are also some other ways to do it, but this way may be most convenient one.

  • Bluetooth AND USB not working

    Hi friends i'm facing 2 problems1. my bluetooth is not working properly, initially it wont show any blutooth icon when i start up, but after i restart it shows and start working, every time i need to repeat this to use bluetooth. kindly suggest me the solution.2. the usb ports (3.0 and2.0) both doesnt work properly, they only detect devices wen i go to device manager and scan for hardware devices.

     I was also worried that bluetooth is not working. But eventually came to know that  this model 15R203TX has bluetooth version 4.0  which is backward compatible to other bluetooth devices of version 2.0 to 2.1 EDR. Means if your hand set or any bluetooth device is having  version 2.0 or 2.1 EDR it won't able to send any data or see this laptop model while transferring data. Moreover if you try to send data from laptop to other bluetooth device irrespective of version it is able to send data. Now it is Same with WiFi  this model is backward compatible to IEEE 802.11 a/b/g. means  you can't receive signals from this devices unless the router is having IEEE 802.11 b/g/n/ac. For USB not working may be its a BIOS issue. While boot up try to press F2 key. And enter the diagonistic blue page. There you can check the version of BIOS or try to reinstall the updated BIOS by downloading it from HP support. If  USB still not woking then try to go to nearest authorised HP service centre.

  • Form Designed in LiveCycle will not work for End User

    Please Help!
    I am a newbie to Adobe LiveCycle but recognized the utility in the program, so decided to give it a while to try and streamline some of my employer's forms.  After spending too much time learning how to design a form (much to the dislike of my boss), I am finally going to have to ask for some help.  So here's the deal:
    I've designed a dynamic pdf in LiveCycle with two master pages and two repeating flowed subforms.  The first repeating subform is basically an expanding table intended to be used as a photographer's log where they can log each photo taken with the camera.  The expanding table has some code with a button at the top for the end user to enter the number of photos on the photo roll, click submit, and table expands to however many instances of rows are needed for each photo that was taken.  The second subform is basically an image field and text fields used as photo captions/photo compilation pages.  When the end user clicks submit on the first subform to expand the table, I also have javascript in that click event to also create same amouint of instances of the second subform (the photo compilation page(s)).  Each text field for the photo caption on the second subform is populated by the data entered into the photo log table cells.  I was able to find a script to correctly populate those fields for each instance of the table.  Wish I had the form here, but it's at work at the moment.
    My problem is this: I've scratched and clawed to get all of the forms expanding correctly and the scripts populating each instance of the fields correctly and everything works great in LiveCycle preview.  I then saved the form as PDF for use by my field crew personnel (whom all use, at the very least, Adobe Pro 9, but most Pro X).  I sent the new form to them and they move it to their desktop, open it with Adobe Pro, and populate all of the fields and everything works swimmingly.  However, once they save it, it gets all jumbled and they can't even print it.  We even thought we found a workaround by entering all data and printing to PDF, but even that has turned out to not work.  I checked to make sure that I designed and saved the form in LiveCycle for use with the Adobe Pro versions, but still not working for my end users.
    Anyone have any thoughts on my long explanation??  Please HELLLLPPPP!

    The error(s) occur when trying to save the document.  I want each user to tell the first page how many rows they will need in the photo log table, so they would enter however many photos were taken in the box: "Number of Photos on Roll:"  ---> Then click the "Submit" cmd button.  That should expand the table.  Once it expands, it should also add the same amount of instances of the photo compilation page (2nd Page) as there are rows in 1st page table.  Then the user will populate each cell of the table on page 1 with data.  The data entered into the page 1 table cells will populate the text fields (photo caption) in Page 2 once the user clicks on the "Populate Captions!" cmd button in the lower left corner of the table on Page 1. 
    The problem is in the distributing of the form to the user so they can save the form after populating the data.  I did a test run this morning and for some reason it did do the "print to PDF" correctly for 5 photos on the roll (though this has not been happening every time and especially for a large number of pages, ie. 80 photos).  However, after entering the data for 5 rows on page 1 and then populating the 5 photo compilation pages, I saved a copy as "Save As PDF" and closed the document.  Then re-opened the copy in Acrobat Pro X.  The new copy:
    -had 5 additional rows added to Page 1
    -Duplicates of some of the fields
    -Only retained the 1st instance of the Second Page (Photo w/ Caption) and not all fields were populated
    Again, this all works fine in the LiveCycle Preview but not anywhere else.  I do not have this set up to be linked to an external data source (YET) but there is javascript in the cmd buttons.  I also do not want to distribute this form to end users and then collect the data back from them.  I want them to be able to save a copy of my LiveCycle designed form, open in Adobe Pro, populate the data and save as many copies as needed for form production.

  • MAM application is not working for some users

    Hi All,
    Tha MAM application is not working for some users.Different users have different workcenters other than that I dont see any other change. When I run MAM30_090_GETLIST in the backend I can see the no of customized users.But I cant see same no of users in the MEREP_207 table for the Syncbo MAM30_090 and strcture id TOP in the middleware. There is a data when I checked under worklist monitor for that user. But neither the MAM application nor MAM data is downloading to that device.
    If I use different user on the same device I can see the MAM application and MAM data.
    What could be the wrong in this case. Any help would be highly appreciated.
    Mobile Client:MI 70 SP 15 Patch 0 Build 200802280918
    Middleware:SAP NetWeaver 2004s with Patch leve 15
    Backend:SAP ECC 6.0
    Application:MAM 3.0
    Thanks and Regards,
    Ameer.

    Hi,
    from your description the source of your issue is quite obvious: some of the MAM users configured in spro are not configured properly.
    For T01 SyncBos the number of TOP records in merep_207 MUST be the same as number of headers returned by an appropriate getList FM in the backend.
    You need to solve this before you can go any further.
    Reason why a record is not recorded in MEREP_207 - getdetail failed for whatever reason. So execute MAM30_ML_getdetail for each of the users that is not replicated in the middleware and check if there are errors in RETURN table. If there is no error - one of the common reason for replication fail is when there are records in item tables that have duplicate primary keys.
    Regards,
    Larissa Limarova

  • Image Processor not working for me. Help!

    In a nearby thread I've reached a stumbling block. Image Processor in CS4's PS is not working for me. I have a folder of psd's generated on the fly via File > Export > Data Sets as File... and now I'm trying to process those psd's to generate a JPEG of each. The only strange characteristic of the auto-generated PSD files is that there is no image preview available within the Finder. When a psd is selected the preview pane reads:
    "This layered Photoshop file was not saved with a composite image"
    I've verified in my Preferences > File Handling that image previews are always saved. (But I've been using PS for a long time and previews are always available with all my manually saved work.)
    So here's what happens when I invoke File > Scripts > Image Processor...
    In section 1 of the menu I select the source folder where the psd files reside
    In section 2, I select 'Save in same location'
    In section 3, I select 'Save as JPEG'
    In section 4, I change nothing. No special actions. Include ICC profile is checked.
    When I select run I get an error message: "Sorry, I could not process the following files:"
    And then it lists what appears to be 3 lines per psd file in the source directory:
    The path to the source dir
    The name of the source dir
    The [source_dir]/[filename.psd]
    What am I doing wrong?

    mrdior wrote:
    I have a folder of psd's generated on the fly via File > Export > Data Sets as File... and now I'm trying to process those psd's to generate a JPEG of each. The only strange characteristic of the auto-generated PSD files is that there is no image preview available within the Finder. When a psd is selected the preview pane reads:
    The part I don't understand is the "export" Part. File > Export > Data Sets as File.. on my machine is grayed out so I don't know how this feature is used. Is Export > Data Sets as File... used with CSV data sets and Photoshop variables?
    Check your Photoshop preferences and make sure you have set in the file handling tab "Maximize PSD and PSB File Compatibility:" to Always using the pull down menu. If that is not your current setting try setting that to see if the exported PSD files contain composite previews. When I use save as PSD on my system I alway see Photoshop save through up a popup window stating generating composite preview image.

Maybe you are looking for

  • Synchronization from OID to AD failed by using ActiveExport profile

    Hi All Synchronization from OID to AD failed by using ActiveExport profile and i use copy activeexp.map.master that contains DomainRules cn=Users,dc=software,dc=raya,dc=corp:CN=Users,DC=twa,DC=com: AttributeRules # Organizational Unit Mapping ou: : :

  • Vendor Info Records: No Purchasing org. data exists

    Hello Team, I see a lot of Info records that have no purchasing org. data. How can this be maintained or do I just create new info records? Thank you in advance.

  • Problem with displaying index in RH11

    Hi, I'm using RH11 to make Responsive HTML5 output in 4 different help projects, with the Theme2-_Government layout (in Dutch and French). All projects start correctly with the TOC pane open and the whole indexfile displayed. Even my first indexsearc

  • Oracle forms and jinitiator in ebusiness suite

    I want to use sun plugin for forms in oracle ebusiness suite 11.5.10.2. I don't want to use jinitiator. what would be the step. Regards,

  • How to remove the print popup screen from module pool program

    Hi, In my project i am having one module pool program in which 7-8 screens are there. In the initial screen after entering the equipment number when i am executing the program then after loading second screen it is showing one screen is coming which