Getting info from my Powerbook

My powerbook has lost the capability of charging, leaving me unable to access any of my data. Is there any way to access the information on my P.B. without actually powering up the device ? Can I access my info by connecting it via firewire to another mac?
<Post Relocated by Moderator>

If your PB cannot run off the AC adapter and your battery is dead, your only options are to borrow a battery from another PB owner (perhaps the Genius Bar can help there), or to remove the hard drive and put it in an external enclosure. In order to get data off, the HDD needs power.

Similar Messages

  • I have a new MacAir and don't know how to get info from my USB stick and my SD photo card.  Can anyone help me please?

    I have a new MacBook Air and don't know how to get info from my USB stick and get info from my SD card.  Can anyone help, please?

    Plug the stick and/or card into the appropriate slots on the side of your Air. Do you see icons for the devices appear on the desktop? Click into them to see what files are there.
    Matt

  • SWF-file not getting info from UI

    Hi All,
    I have a dialog that loads a flash-file. This swf-file gets info from my dialog and puts it in a datagrid.
    It works well, untill i try it the script on an other computer. The swf-file loads but is not receiving any information given through the UI.
    Is it a matter of installing extra options/software on the other pc?
    My computer (the script works) is a Windows XP with Adobe Design Premium.
    The other computer is also a Windows XP with indesign and flash player installed.
    Is there anyone who has an idea?
    THANKS
    Greetz,
    Glen

    Ok, i have the answer to my own question.
    I forgot that i had to change the settings in the settings manager of the flash player.

  • How to get info from a layer which is  applied  with styles  ?

    How to get info from a  layer  ?  such  as   (  apply  style  or  not , which  effect  have  applied  on  it  etc..)
    I  really  can't  solve  it , Who can hlep me..  By the way , I 'am  using  CS version.  

    xtools/xlib/Styles.js has a set of functions for working with layer styles. I do not know if it works with CS. I wrote it several years ago for either CS or CS2. If this doesn't work, then nothing will. The script retrieves a layer's style by saving it to disk then parsing the file for the desired ActionDescriptor.
    There is a function at the bottom of the file that tests the Styles.js API.
    Styles.test = function() {  var doc = app.activeDocument;
      var layer0 = doc.artLayers[0];
      var gdesc = Styles.getLayerStyleDescriptor(doc, layer0);
      if (!gdesc) {
        alert("There is no layer style associated with the layer");
        return;
    //   this will set the layer style to another layer.
    //   var layer1 = doc.artLayers[1];
    //   Styles.setLayerStyleDescriptor(doc, layer1, gdesc);
      if (!gdesc.hasKey(cTID('FrFX'))) {  // look for a stroke effect
        return;
      var frfx = gdesc.getObjectValue(cTID('FrFX'));
      if (!frfx.hasKey(cTID('Clr '))) {   // look for the color
        return;
      var clr = frfx.getObjectValue(cTID('Clr '));
      // we should really check that the objectType is RGBC
      var r = clr.getDouble(cTID('Rd  '));
      var g = clr.getDouble(cTID('Grn '));
      var b = clr.getDouble(cTID('Bl  '));
      if (r == 0 && g == 0xFF && b == 0xFF) {
        return;
      clr.putDouble(cTID('Rd  '), 0);
      clr.putDouble(cTID('Grn '), 0xFF);
      clr.putDouble(cTID('Bl  '), 0xFF);
      frfx.putObject(cTID('Clr '), cTID('RGBC'), clr);
      gdesc.putObject(cTID('FrFX'), cTID('FrFX'), frfx);
      Styles.setLayerStyleDescriptor(doc, layer0, gdesc);

  • It is possible to get info from the PDF

    Hi Everyone,
    I'm new baby to acrobat using javascript. It is possible to get info from the PDF.
    The Info contain like Color space, Trim size, which font  used depend on pages and which color is used for image & text.
    Thanks in advance.
    -yajiv

    Hi GKaiseril,
    Thanks for prompt response.
    Actually I'm a new baby to Acrobat script. Please explain briefly How do I write java script and execute.
    I'm familiar with Photoshop and Indesign Script. We are using ExtendedScript Toolkit editor for writing script.
    Thanks in advance.
    -yajiv

  • TS3771 Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

    It may be because of your settings. You can modify that setting in System Preferences > Trackpad. Another way of making right-click is to click the app icon while holding the Control key

  • How do I get info from Active Directory and use it in my web-applications?

    I borrowed a nice piece of code for JNDI hits against Active Directory from this website: http://www.sbfsbo.com/mike/JndiTutorial/
    I have altered it and am trying to use it to retrieve info from our Active Directory Server.
    I altered it to point to my domain, and I want to retrieve a person's full name(CN), e-mail address and their work location.
    I've looked at lots of examples, I've tried lots of things, but I'm really missing something. I'm new to Java, new to JNDI, new to LDAP, new to AD and new to Tomcat. Any help would be so appreciated.
    Thanks,
    To show you the code, and the error message, I've changed the actual names I used for connection.
    What am I not coding right? I get an error message like this:
    javax.naming.NameNotFoundException[LDAP error code 32 - 0000208D: nameErr DSID:03101c9 problem 2001 (no Object), data 0,best match of DC=mycomp, DC=isd, remaining name dc=mycomp, dc=isd
    [code]
    import java.util.Hashtable;
    import java.util.Enumeration;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class JNDISearch2 {
    // initial context implementation
    public static String INITCTX = "com.sun.jndi.ldap.LdapCtxFactory";
    public static String MY_HOST = "ldap://99.999.9.9:389/dc=mycomp,dc=isd";
    public static String MGR_DN = "CN=connectionID,OU=CO,dc=mycomp,dc=isd";
    public static String MGR_PW = "connectionPassword";
    public static String MY_SEARCHBASE = "dc=mycomp,dc=isd";
    public static String MY_FILTER =
    "(&(objectClass=user)(sAMAccountName=usersignonname))";
    // Specify which attributes we are looking for
    public static String MY_ATTRS[] =
    { "cn", "telephoneNumber", "postalAddress", "mail" };
    public static void main(String args[]) {
    try { //----------------------------------------------------------        
    // Binding
    // Hashtable for environmental information
    Hashtable env = new Hashtable();
    // Specify which class to use for our JNDI Provider
    env.put(Context.INITIAL_CONTEXT_FACTORY, INITCTX);
    // Specify the host and port to use for directory service
    env.put(Context.PROVIDER_URL, MY_HOST);
    // Security Information
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS, MGR_PW);
    // Get a reference toa directory context
    DirContext ctx = new InitialDirContext(env);
    // Begin search
    // Specify the scope of the search
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    // Perform the actual search
    // We give it a searchbase, a filter and the constraints
    // containing the scope of the search
    NamingEnumeration results = ctx.search(MY_SEARCHBASE, MY_FILTER, constraints);
    // Now step through the search results
    while (results != null && results.hasMore()) {
    SearchResult sr = (SearchResult) results.next();
    String dn = sr.getName() + ", " + MY_SEARCHBASE;
    System.out.println("Distinguished Name is " + dn);
    // Code for displaying attribute list
    Attributes ar = ctx.getAttributes(dn, MY_ATTRS);
    if (ar == null)
    // Has no attributes
    System.out.println("Entry " + dn);
    System.out.println(" has none of the specified attributes\n");
    else // Has some attributes
    // Determine the attributes in this record.
    for (int i = 0; i < MY_ATTRS.length; i++) {
    Attribute attr = ar.get(MY_ATTRS);
    if (attr != null) {
    System.out.println(MY_ATTRS[i] + ":");
    // Gather all values for the specified attribute.
    for (Enumeration vals = attr.getAll(); vals.hasMoreElements();) {
    System.out.println("\t" + vals.nextElement());
    // System.out.println ("\n");
    // End search
    } // end try
    catch (Exception e) {
    e.printStackTrace();
    System.exit(1);
    My JNDIRealm in Tomcat which actually does the initial authentication looks like this:(again, for security purposes, I've changed the access names and passwords, etc.)
    <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99"
    connectionURL="ldap://99.999.9.9:389"
    connectionName="CN=connectionId,OU=CO,dc=mycomp,dc=isd"
    connectionPassword="connectionPassword"
    referrals="follow"
    userBase="dc=mycomp,dc=isd"
    userSearch="(&(sAMAccountName={0})(objectClass=user))"
    userSubtree="true"
    roleBase="dc=mycomp, dc=isd"
    roleSearch="(uniqueMember={0})"
    rolename="cn"
    />
    I'd be so grateful for any help.
    Any suggestions about using the data from Active directory in web-application.
    Thanks.
    R.Vaughn

    By this time you probably have already solved this, but I think the problem is that the Search Base is relative to the attachment point specified with the PROVIDER_URL. Since you already specified "DC=mycomp,DC=isd" in that location, you merely want to set the search base to "". The error message is trying to tell you that it could only find half of the "DC=mycomp, DC=isd, DC=mycomp, DC=isd" that you specified for the search base.
    Hope that helps someone.
    Ken Gartner
    Quadrasis, Inc (We Unify Security, www -dot- quadrasis -dot- com)

  • TS4345 Can I use Migration Assistant to get info from a Macbook Pro that has a dead screen?

    I have a MacBook Pro 17 that the screen died on. I have a new MacBook Pro coming tomorrow and need to try to find a way to get the info from the old one to the new one. From the online info I saw on Migration Assist you need both screens to work to get a authentification code. Is there any work around? I don't know what system the old one is and have no idea what type of sharing may have been on or off.

    AFAIK, you can use the Setup Assistant on first boot w/o any authentication code or sharing stuff. See Pondini's Setup New Mac guide for details.

  • How to get info from a .class file at run time? thanks for help

    I need to get methods and properties (variables) from a .class file at run time.
    as u know, javap.exe can do that in an independent way. but i need to get info at run time once the .class or packeges have been changed, javap is not suitable in the case.
    i try to read data directly from .class file but it's hard to know the file format.
    e.g. a class looks like (java file):
    class MyClass extends Frame
    int i0;
    String s0;
    public String getName()
    if the file is compiled to .class file, how to get properties (variables: i0,s0) and methods String getName() from the .class file by an applicaton at run time?
    Doclet is not suitable for speed reason, it is too slow to get right info in right format.
    Thanks for any help, please write a little bit more in detail if you know.

    Use the Java Reflection API. Have a look at the Reflection section of the Java Tutorial located at http://java.sun.com/docs/books/tutorial/reflect/index.html

  • HT1349 My itunes account has been hacked? I can't access my account or any support thru itunes. I have reset my password but I need to get info from support about my account

    Why can't I get help from support???
    Apple has my account with over $100 in the account and now it's gone and no one will talk to me???
    What do I do???
    and..this is an itunes problem,
    I have 2 iphones, 4 ipods...but it's ITUNES!!! It's been hacked and apple acts like it's so incapable of being hacked!!!
    I NEED HELP....where's my money in my account???
    this is the best apple can do, i'm sorry but this aint no support service!!!
    goodbye

    I can login to my account, after that I see message 
    Your account has been closed
    It looks like the Terms of Use may have been violated. To have our support team look into this, please click the support link below.
    <input class="UiButton default" style="line-height:19px;color:#ffffff;font-family:'Segoe UI Web Semibold', 'Segoe UI Web Regular', 'Segoe UI', 'Segoe UI Symbol', HelveticaNeue-Medium, 'Helvetica Neue', Arial, sans-serif;height:2.142em;padding:4px 12px
    5px;margin:0px 0.5em 0px 0px;cursor:pointer;min-width:6em;background-color:#0072c6;border:0px;" type="button" value="More info" />
    So How Can go to my mail box? I already changed my password 3 time in this week.
    What can I do or What I have to do?
    When I go to Security info I'll got this massage but my email er*****@live.com
    have been closed also (Can't login to that mail).
    We're not ready for you yet
    Your 30 day waiting period ends on 1/15/2014. Please continue to wait and we'll send you an email when you can sign back in.
    If you've regained access to your old security info listed before, click "I found my security info" to get back in to your account and cancel any changes.
    Your old security info
    er*****@live.com

  • Broke my iphone i need to get info from it

    s there a way to get all of my apps and info from my iphone 5c to be installed on a new one

    You can download any purchases made via iTunes to a new device:
    Download past purchases
    If you have an iCloud backup of the old device, you can restore the new device from that backup when you set it up:
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    Cheers,
    GB

  • Quicktime 7.1 buffer overrun when trying to get info from an Indeo 4.4 AVI

    Surprisingly Quicktime7.1 can play one of my Indeo video 4.4-encoded Windows .AVI File. It plays and exports flawlessly but when I want to use Get Info the player (or maybe one of the QuickTime DLLs) crashed with a VC++ Runtime Error: Buffer Overrun. All other QuickTime file don't have this problem.

    This is what when the situation happens.
    Message was edited by: yksoft1

  • I set up the firefox sync from my computer to my ipad. can I use this acct somehow to get info from my ipad that i lost?

    i lost my ipad. i have a sync acct with firefox from my desktop to my ipad 2. how do i retrieve info from my ipad using the firefox sync that i set up

    Hi!
    Unfortunately the communication with iOS devices (iPhone and iPad) is only in one direction: data from your computers will go to your iPad but not the other way around.
    That's a limitation of Firefox Home.

  • Replaced a new HDD but need to get info from old HDD, can I swap it out?

    Excuse me if I sound like an idiot....my factory original 40GB Toshiba HDD finally had to be replaced after serving me for 5 yrs. I took it to a local dealer and replaced it with a new 160GB Samsung drive.
    Here comes the problem...I realized that I had forgotten to backup some important files. So my question is, is it safe (and possible) to open up the laptop myself, plug in the old drive, run it, and backup the files I want on a removable drive, and then swap the new drive back in?
    I hope I am not over-simplifying the problem. Thanks though, your help is greatly appreciated.

    Sorry let me backup.
    You have the 12" Powerbook correct?
    If so then that means that you have a IDE or some call it ATA (not to be confused with SATA found in new macs) type of drive.
    So what you need is an external 2.5" HDD case or enclosure that has an external interface that is firewire or USB, and an internal interface that is IDE or also known as ATA.
    check out these two links and maybe they will help.
    http://www.newegg.com/Product/Product.aspx?Item=N82E16817146604
    http://eshop.macsales.com/item/Other%20World%20Computing/MOTGFWU2/
    On ebay the external enclosure/IDE is what you want, the external portable probably comes with a drive in it. You have a drive already you want to install into the case so you do not need the external portable.
    The 2.0 vs 2.5 I'm not sure about unless you typo'ed and meant 3.0 vs 2.5. As there are two different sizes for HDD's 3"(for desktops) and 2.5"(for laptops).
    Firewire and USB are rival interfaces which allow external devices to attach to a computer. Your Powerbook will accept either, but if you plan on using the external enclosure to boot you Powerbook then you'll need the firewire as Powerbooks can only boot external from firewire not USB. Some enclosures have both USB and Firewire and that would be ok, some people prefer them, as I do.
    I hope that your old drive is still strong enough to get the info off of it.
    What was wrong with it for you to replace it in the first place?

  • Computer not getting info from mp3

    I hope someone else has had this problem. All of a sudden my computer is not displaying any of the info in my zen moziac. I need to make space, arrange playlists and all the software ( both creative central and windows ) does not show the info in my mp3. It only seems to show some recent stuff i loaded to both computer and mp3. I have playlists and it shows only one in the mp3 and 3 in the computer. So in short I am unable to view all of my info to delete add or rearrange.

    Are you using the factory charger or a 3rd party? I used to have a 3rd party charger that would not wake my powerbook from sleep. The only work around I could find was to pull the power and battery, then wait for the sleep light to stop flashing (5 minutes or so), plug the power and battery back in, and then it would boot (though at that point it is no longer "sleeping" and will perform a cold boot). Another option would be to try resetting the PMU. If memory serves me correctly, you removed power and the battery, hold down the power button for at least 5 seconds, then reapply power and boot.
    Good luck.
    G

Maybe you are looking for

  • Using a function in a report query

    Why can't I call a function (basically a query) in a report query like I can from from SQL? Consider the following: Select MyFunctionName(arg) from dual; From SQL, it works great! No problem: In a report query, [Application/Shared Components/Report Q

  • ITunes Server with D-Link DNS-323 NAS - not showing up in Shared list

    Hi I bought a DNS-323 to hold all my music. I am trying to get it working with iTunes. I have enabled the iTunes Server function on the DNS-323, selecting which folder I want to use for music, and have allowed the device to 'refresh'. It then tells m

  • List of stock by storage bin

    Hi, I need to display a list of materials by storage bin. How to display in this list the quantity and valuation of stock for each material and for each storage bin. Thanks for your comments and suggestions.

  • How to know the type of transactions by seeing the data in IP_IN_QUEUE

    Hi B2B gurus, I am Using EDI X12 over internet. Our suppliers processing inbound transactions to us,After receiving from B2B its storing in IP_IN_Queue, The documents which we are sending it storing in IP_OUT_Queue. We want to see the data in in IP_I

  • ORA-00257: archiver error. Connect internal only, until freed.

    I have installed SAP in a ORacle Database. When i login to Oracle Datbase from the Backend, i am getting the following error. ORA-00257: archiver error. Connect internal only, until freed. I reqeust you to please let me know of what can be done on th