I cannot unlock the lock on administrator account

Despite beeing logged into administrator account I can't unlock the lock when I go to System Preferences>Accounts , Time Machine, etc. Problem started since I lost my password. I managed to login into my account by logging as a guest and changing password for my own account (strange, but in fact it is possible to do that). I tried many solutions, but none worked (e.g. I set new account with administrator rights, but that one also is not allowed to unlock the lock).
I hope there is a proper solution. I need my Time machine working back

mikolajjj wrote:
Yep, I tried that too As I wrote, on the new administrator account I also cannot unlock the lock.
Why do you think should I take my Mac to Apple Store? Does it seems to you as a hardware problem? Or do they have some tricky ways to undo everything?
Acctually I found kind of a tricky way on a web, but I follow its steps as a monkey so again with no succes. These are unix commands to abstract for me. Do you understand the logic? Do you think it might help with my problem?
Or maybe I can login as root (somehow) and that could let me change password of my account?
I understand that all the usual methods have failed for you, even though they work everytime for me, that being said there are only 2 reasons for this, there is something else wrong with your Mac or you are not able to type the commands as needed (I am not choosing which, just stating the obvious).
Either way you now need hands on help, I do not advise tampering with the machine as the Root User, mistakes in Root mode will certainly make things worse.

Similar Messages

  • Cannot unlock the lock in Security & Privacy Menu

    I cannot unlock the lock to make any Security changes.  Please help!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Can't unlock the lock on Time Machine

    I Can't unlock the lock on Time Machine, Security, Accounts, or Startup Disk prefPanes?
    This occured after the last update to OS 10.6.8. Repaired the disk Permitions.The problem remains.......
    Does anyone know how to solve the problem?
    I

    I Can't unlock the lock on Time Machine, Security, Accounts, or Startup Disk prefPanes?
    This occured after the last update to OS 10.6.8. Repaired the disk Permitions.The problem remains.......
    Does anyone know how to solve the problem?
    I

  • My Ipod Touch Was dropped and screen is broken. How can I get It Fixed? I cannot Unlock the Ipod Touch, all I can do is play Music and Change Songs.

    I Dropped My Ipod Gen 4 on a Granite Floor and it Spider webbed. Now all I can do is Play songs and change songs from the lock screen. I cannot unlock the Ipod or do anything else. Is there any way for me to get it fixed Cheap???

    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G and $99 for the other 4Gs. They do not fix yours.
    Apple - iPod Repair price
    You can do it at an Apple store by making an appointment:
    Apple Retail Store - Genius Bar
    or send it in to Apple. See:     
    Service Answer Center - iPod
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit                  

  • Prevent locking of Administrator account

    Hello,
    We'd like to expose our portal to the internet. This means everyone will be able to logon to the portal (after creating an UME user account). UME is configured to lock user accounts after 3 invalid login attempts.
    Now how can we prevent anonymous internet users to lock the Administrator account or other system accounts like ADSUser?
    The first option would be to implement this on the revert proxy, e.g. block requests containing j_user=Administrator either in the URL during a GET request or in the body during a POST request.
    However, because of performance reasons, especially because of the need to scan all POST requests, this option doesn't look very attractive.
    A second option would be to deploy a new JAAS LoginModule, configured to be always executed as the first one, that checks the username first and halts the login process if the username is Administrator and the request is coming from a certain IP (the reversed proxy), e.g. by throwing a RuntimeException in the login method (will that work? any other possibility besides throwing a RuntimeException?).
    This doesn't look as very clean solution either.
    What would be the best (safe, clean, easy) way to stop anonymous users from locking the Administrator user account?
    Thanks!
    Sigiswald

    At the end we decided to write a custom LoginModule anyway.
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.security.auth.Subject;
    import javax.security.auth.callback.Callback;
    import javax.security.auth.callback.CallbackHandler;
    import javax.security.auth.callback.NameCallback;
    import javax.security.auth.callback.UnsupportedCallbackException;
    import javax.security.auth.login.LoginException;
    import com.sap.engine.interfaces.security.auth.AbstractLoginModule;
    import com.sap.engine.lib.security.LoginExceptionDetails;
    import com.sap.engine.lib.security.http.HttpGetterCallback;
    import com.sap.security.api.IUser;
    import com.sap.security.api.NoSuchUserException;
    import com.sap.security.api.UMException;
    * <p>
    * <div>This LoginModule either succeeds or fails, but in fact it
    * <u>never</u> authenticates the user. What is meant is that even if
    * all relevant methods of the LoginModule API - i.e. login and commit
    * - return true, indicating success, the Subject is never
    * authenticated. Therefore this LoginModule should <u>never</u> be
    * configured as SUFFICIENT.</div>
    * </p>
    * <p>
    * <div>The purpose of this LoginModule is to abort the authentication
    * process in case an unauthorized user tries to authenticate as
    * administrator and thus it stops unauthorized users from locking
    * administrator accounts.</div>
    * </p>
    * <p>
    * <div>This LoginModule accepts two optional configuration
    * options:<ul>
    * <li>ip_allow</li>
    * <li>ip_deny</li></ul>
    * The value of both options is a comma separated list of IPv4 ranges.
    * e.g.
    * <code>ip_allow=145.50.76.81,145.50.77.0-145.50.77.255,194.196.236.70-194.196.236.71</code>
    * The localhost is added implicitly.</div>
    * </p>
    * <p>
    * <div>If the IP address of the client that sent the HTTP request is
    * within the range(s) defined by ip_allow and is not within the
    * range(s) defined by ip_deny, authentication succeeds. If this is
    * not the case, authentication fails if the user tries to
    * authenticate by username (and password) and supplies the username
    * of an existing UME user that is assigned the internal_use_only
    * role. Otherwise, authentication succeeds.</div>
    * </p>
    * <p>
    * <div>To meet its purpose, i.e. prevent the locking of administrator
    * user accounts, this LoginModule <u>should</u> be configured as
    * <u>REQUISITE</u> and should be in the login stack <u>before</u> the
    * standard BasicPasswordLoginModule.</div>
    * </p>
    * @author smadou
    public final class AdministratorFilterLoginModule extends AbstractLoginModule {
      private static final String INTERNAL_USE_ONLY =
        LogonUtil.getRoleid("internal_use_only");
      private static final String IP_ALLOW = "ip_allow";
      private static final String IP_DENY = "ip_deny";
      private static boolean initialized;
      private static List IPRANGE_ALLOW = new ArrayList();
      private static List IPRANGE_DENY = new ArrayList();
      private CallbackHandler callbackHandler;
      private boolean succeeded;
      public void initialize(
        Subject subject,
        CallbackHandler callbackHandler,
        Map sharedState,
        Map options) {
        super.initialize(subject, callbackHandler, sharedState, options);
        this.callbackHandler = callbackHandler;
        this.succeeded = false;
        AdministratorFilterLoginModule.initialize(options);
      public boolean login() throws LoginException {
        try {
          if (ipAllowed()) {
            succeeded = true;
            return true;
        } catch (UnsupportedCallbackException e) {
          throwUserLoginException(e);
        } catch (IOException e) {
          throwUserLoginException(e, LoginExceptionDetails.IO_EXCEPTION);
        String logonid = null;
        IUser user = null;
        String userid = null;
        try {
          logonid = getLogonid();
          user = logonid == null ? null : LogonUtil.getUser(logonid);
          userid = user == null ? null : user.getUniqueID();
        } catch (UnsupportedCallbackException e) {
          throwUserLoginException(e);
        } catch (IOException e) {
          throwUserLoginException(e, LoginExceptionDetails.IO_EXCEPTION);
        } catch (NoSuchUserException e) {
          // TODO connect to NetWeaver logging API - DEBUG
          e.printStackTrace();
        } catch (UMException e) {
          throwUserLoginException(e);
        if (userid == null) {
          return true;
        if (user.isMemberOfRole(INTERNAL_USE_ONLY, LogonUtil.RECURSIVE)) {
          throwNewLoginException(
            "Access Denied to user with logonid "
              + logonid
              + " having role "
              + INTERNAL_USE_ONLY
              + "!");
        succeeded = true;
        return true;
      public boolean commit() throws LoginException {
        return succeeded;
      public boolean abort() throws LoginException {
        return succeeded;
      public boolean logout() throws LoginException {
        succeeded = false;
        return true;
      private static synchronized void initialize(Map options) {
        if (initialized) {
          return;
        IPRANGE_ALLOW.addAll(Arrays.asList(AddressRange.parseRanges("127.0.0.1")));
        try {
          IPRANGE_ALLOW.addAll(
            Arrays.asList(
              AddressRange.parseRanges(
                InetAddress.getLocalHost().getHostAddress())));
        } catch (UnknownHostException e) {
          // TODO connect to NetWeaver logging API - INFO
          e.printStackTrace();
        String ipAllow = (String) options.get(IP_ALLOW);
        String ipDeny = (String) options.get(IP_DENY);
        if (ipAllow != null && ipAllow.length() > 0) {
          IPRANGE_ALLOW.addAll(Arrays.asList(AddressRange.parseRanges(ipAllow)));
        if (ipDeny != null && ipDeny.length() > 0) {
          IPRANGE_DENY.addAll(Arrays.asList(AddressRange.parseRanges(ipDeny)));
        initialized = true;
      private String getClientIp()
        throws UnsupportedCallbackException, IOException {
        HttpGetterCallback hgc = new HttpGetterCallback();
        hgc.setType(HttpGetterCallback.CLIENT_IP);
        callbackHandler.handle(new Callback[] { hgc });
        return (String) hgc.getValue();
      private String getLogonid()
        throws IOException, UnsupportedCallbackException {
        NameCallback nc = new NameCallback("username: ");
        callbackHandler.handle(new Callback[] { nc });
        return nc.getName();
      private boolean ipAllowed()
        throws UnsupportedCallbackException, IOException {
        String clientIp = getClientIp();
        return match(IPRANGE_ALLOW, clientIp) && !match(IPRANGE_DENY, clientIp);
      private boolean match(List ipRanges, String ip) {
        for (Iterator i = ipRanges.iterator(); i.hasNext();) {
          AddressRange range = (AddressRange) i.next();
          if (range.match(ip)) {
            return true;
        return false;
    import com.sap.security.api.IRole;
    import com.sap.security.api.IRoleFactory;
    import com.sap.security.api.IUser;
    import com.sap.security.api.IUserFactory;
    import com.sap.security.api.NoSuchRoleException;
    import com.sap.security.api.NoSuchUserException;
    import com.sap.security.api.UMException;
    import com.sap.security.api.UMFactory;
    * @author smadou
    public final class LogonUtil {
      static final boolean RECURSIVE = true;
      static String getRoleid(String uniqueName) {
        try {
          IRoleFactory rf = UMFactory.getRoleFactory();
          IRole role = rf.getRoleByUniqueName(uniqueName);
          return role.getUniqueID();
        } catch (NoSuchRoleException e) {
          // TODO connect to NetWeaver logging API - WARN
          e.printStackTrace();
          throw new SecurityException(
            "NoSuchRoleException while getting role with unique name ""
              + uniqueName
              + "": "
              + e.getMessage());
        } catch (UMException e) {
          // TODO connect to NetWeaver logging API - WARN
          e.printStackTrace();
          throw new SecurityException(
            "UMException while getting role with unique name ""
              + uniqueName
              + "": "
              + e.getMessage());
      static IUser getUser(String logonid)
        throws NoSuchUserException, UMException {
        IUserFactory uf = UMFactory.getUserFactory();
        return uf.getUserByLogonID(logonid);
    * This code is based on
    * http: //drc-dev.ohiolink.edu/browser/fedora-core/tags/2.0/src/java/fedora/server/security/IPRestriction.java
    * @author smadou
    public final class AddressRange {
      private static final int IP_OCTETS = 4;
      private static final int OCTET_MIN = 0;
      private static final int OCTET_MAX = (int) Math.pow(2, 8) - 1;
      private long start;
      private long end;
      private AddressRange(long start, long end) {
        this.start = start;
        this.end = end;
      public boolean match(String address) {
        return match(parseAddress(address));
      private boolean match(long address) {
        return address >= start && address <= end;
      private static long parseAddress(String address) {
        String[] octets = address.split("\.");
        if (octets.length != IP_OCTETS) {
          throw new IllegalArgumentException("invalid adress: "" + address + """);
        long lAddress = 0;
        for (int i = 0, n = octets.length; i < n; i++) {
          lAddress += parseOctet(octets[ i ], n - i - 1);
        return lAddress;
      private static long parseOctet(String octet, int byteNum)
        throws NumberFormatException {
        long lOctet = Long.parseLong(octet);
        if (lOctet < OCTET_MIN || lOctet > OCTET_MAX) {
          throw new IllegalArgumentException("invalid octet: "" + octet + """);
        return lOctet * (long) Math.pow(Math.pow(2, 8), byteNum);
      private static AddressRange parseRange(String range) {
        String[] parts = range.split("-");
        if (parts.length > 2) {
          throw new IllegalArgumentException("invalid range: "" + range + """);
        long start = parseAddress(parts[0].trim());
        long end = parts.length == 1 ? start : parseAddress(parts[1].trim());
        return new AddressRange(start, end);
      public static AddressRange[] parseRanges(String ranges) {
        String[] parts = ranges.split(",");
        AddressRange[] addressRanges = new AddressRange[parts.length];
        for (int i = 0, n = parts.length; i < n; i++) {
          addressRanges[ i ] = parseRange(parts[ i ].trim());
        return addressRanges;

  • "Cannot unlock all locks for owner" error

    During a NW 7.01 central instance portal install, we're receiving the following error during the "Starting Java Engine" step:
    1.#3A1947C8A10200000000000D000840E400049D720C669A2D#1299013066725#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.unlockAllGeneric(owner, asyn
    chronous)#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###Cannot unlock all locks for owner ********************************************.....512790150; internal error (returncode = 8).#
    #1.#3A1947C8A10200000000000E000840E400049D720C66A01A#1299013066727#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.unlockAllGeneric(owner, asyn
    chronous)#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.locking.TechnicalLockException: Cannot unlock all locks for owner ********************************************.....512790
    150; internal error (returncode = 8).#
    #1.#3A1947C8A10200000000000F000840E400049D720C66A1B5#1299013066727#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.unlockAllGeneric(owner, asyn
    chronous)#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.locking.TechnicalLockException: Cannot unlock all locks for owner ********************************************.....512790
    150; internal error (returncode = 8).
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.unlockAllInternal(LockingManagerImpl.java:441)
            at com.sap.engine.core.locking.AbstractLockingManagerImpl.unlockAllGeneric(AbstractLockingManagerImpl.java:651)
            at com.sap.engine.core.locking.AbstractLockingManagerImpl.removeAllLocksForClusterId(AbstractLockingManagerImpl.java:965)
            at com.sap.engine.core.locking.AbstractLockingManagerImpl.init(AbstractLockingManagerImpl.java:183)
            at com.sap.engine.core.Framework.loadSingleManager(Framework.java:577)
            at com.sap.engine.core.Framework.loadManagers(Framework.java:255)
            at com.sap.engine.core.Framework.start(Framework.java:189)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
            at java.lang.Thread.run(Thread.java:770)
    Caused by: java.lang.Exception: class com.sap.bc.krn.enqu.EnquServerException reported: SERVER ERROR:
            Code...: 8
            Name...: ENQ_ERROR
            Text...: internal error, see log for details
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.transformToExceptionForApplication(LockingManagerImpl.java:697)
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.unlockAllInternal(LockingManagerImpl.java:440)
            ... 13 more
    #1.#3A1947C8A102000000000017000840E400049D720C7F88F1#1299013068359#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(owner, name[], argument
    [], mode[], int)#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###Cannot lock at least one of the 1 locks for the owner 2011030114574739900000doasbx.....................512790150; internal e
    rror (returncode = 8).#
    #1.#3A1947C8A102000000000018000840E400049D720C7F8B02#1299013068360#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(owner, name[], argument
    [], mode[], int)#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.locking.TechnicalLockException: Cannot lock at least one of the 1 locks for the owner 2011030114574739900000doasbx
    .....................512790150; internal error (returncode = 8).#
    #1.#3A1947C8A102000000000019000840E400049D720C7F8BF7#1299013068360#com.sap.engine.core.locking.AbstractLockingManagerImpl##com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(owner, name[], argument
    [], mode[], int)#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.locking.TechnicalLockException: Cannot lock at least one of the 1 locks for the owner 2011030114574739900000doasbx
    .....................512790150; internal error (returncode = 8).
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.lockInternal(LockingManagerImpl.java:332)
            at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:469)
            at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:489)
            at com.sap.engine.core.locking.ServerInternalLockingImpl.lock(ServerInternalLockingImpl.java:52)
            at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:373)
            at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:406)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getInternalEnqueueLock(ConfigurationCache.java:505)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:154)
            at com.sap.engine.core.configuration.impl.ConfigurationHandlerFactoryImpl.<init>(ConfigurationHandlerFactoryImpl.java:30)
            at com.sap.engine.core.configuration.impl0.ConfigurationManagerImpl.initInternal(ConfigurationManagerImpl.java:189)
            at com.sap.engine.core.configuration.AbstractConfigurationManagerImpl.init(AbstractConfigurationManagerImpl.java:169)
            at com.sap.engine.core.Framework.loadSingleManager(Framework.java:577)
            at com.sap.engine.core.Framework.loadManagers(Framework.java:255)
            at com.sap.engine.core.Framework.start(Framework.java:189)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
            at java.lang.Thread.run(Thread.java:770)
    Caused by: java.lang.Exception: class com.sap.bc.krn.enqu.EnquServerException reported: SERVER ERROR:
            Code...: 8
            Name...: ENQ_ERROR
            Text...: internal error, see log for details
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.transformToExceptionForApplication(LockingManagerImpl.java:697)
            at com.sap.engine.core.locking.impl3.LockingManagerImpl.lockInternal(LockingManagerImpl.java:331)
            ... 20 more
    I've searched a lot for this error, but no working solutions could be found.

    We solved this issue.
    There were some processes still running from the initial install attempt that needed to be killed, then we were able to retry the install and it worked.  The processes were owned by <sid>adm.

  • Pls help on how to unlock the locked ipad2 wifi screen.

    I had my iPad2 wifi was locked the screen when my little boy tried to open by guessing passcode more than 3x... Need your help pls on how i can unlock the locked screen? I would appreciate your advise... Thank you.
    Gerry murillo

    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup).
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.
    You may have to force iPad into Recovery Mode
    http://support.apple.com/kb/ht1808

  • HT1316 How to unlock the locked SIM

    Not get it to unlock the locked SIM

    Hi Anagha,
    Go to system Administration --> Monitoring --> Object Locking.
    Select object locking. The objects locked are displayed on the right hand side. Choose the objects and select unlock button that is found above.
    Regards
    Arun

  • Unlock the lock in SP

    How do I unlock the lock in System Preferences to make changes??  I can use my administrator password to open my Mac but this password is not accepted  when I want to change System Preferences. An important reason why I want to change is that Date and Time preferences were changed without my input - believe it or not but my EST was changed to PST and I am not able to correct the time zone!
    MacBook Pro, OS X Server

    What exactly happens when you enter the password?

  • I'm selling my iPhone 3GS so I set it back to factory settings. I cannot unlock the phone, all it says is "connect to iTunes". How do I fix this?

    I'm selling my iPhone 3GS so I set it back to factory settings. I cannot unlock the phone, all it says is "connect to iTunes". How do I fix this?

    Once you get it going you need to make sure you do the following so that you can sell the phone.
    Turn off imessage in settings/messages
    Turn off Facetime in settings/Facetime
    Delete icloud account in settings/ilcoud
    Erase all data and settings in settings/general/reset
    Delete the phone from your profile in  https://supportprofile.apple.com

  • My 5S touchscreen is not working, I cannot enter the lock password, is there a way to retrieve data? Apply store wants to reissue a new iphone and wipe out the existing.

    Hello,
    I purchased a new Iphone 5S about a couple of months back. The phone use to hang up occassionally with a white screen and the black apple logo on it. Two days back the screen went unresponsive. I cannot enter the lock code. Everything seems to be normal otherwise. I can see the Atnt signal, I get calls.  The find my iphone app on a different device can locate my iphone. I can even take screenshot by pressing the home key and power button simultaneously.
    I took the phone to apple store and they say they will issue me a new phone. I dnt mind but I will loose the data on the phone. It was never backed up because my icloud is filled with data from my ipad. Is there a work around to get the data  back.?
    Any help is appreciated.

    Are you sure that the battery is not empty: when the battery is VERY empty (that is when it was on and a long time off the charger) it may take an hour or even more to start charging with the charger connected. When you have an iPad charger you can also use that one, and it charges a bit faster.

  • After enabling the Built-in Administrator account, it is not shown on Welcome screen

    Hello,
    I have Windows 7 Starter SP1.
    I have previously successfully enabled and then logged on, to the built-in administrator account,  and then when I had finished using it, disabled it again.
    Unfortunately today, I found that when I enabled the built-in administrator account, it no longer appears on the Welcome screen.
    I went through the process of enabling it by doing:
    Start/Search "CMD"/right-click CMD/Run as administrator.
    net user administrator active:yes
    It confirms: "The command completed successfully."
    However, when I log off and log back on (or do shut down and restart), the Welcome screen does not display any option for the Built-in Administrator account.
    I have also tried doing the above in Safe mode, and also using Command Prompt from a Rescue disk.
    As background information:
    The reason why I wanted to access this account today, was because I attempted to defrag a partition listed as "(1% fragmented)" and after Defrag appeared to complete while at "Pass 2",  the partition is still shown as 1% fragmented.
    I would appreciate advice how to resolve the issue with the built-in administrator account.
    Regards,
    Robert339

    Hello Niki Han,
    Thank you for your response. I have not yet had an opportunity to look into what you have written  but wish to thank you for that information.
    Meanwhile, I would like to discuss the possible cause for this issue. I know the date when I last successfully accessed the built-in Administrator account, which was April 18, 2012. 
    Since I was last able to use that account on April 18, 2012, I have made no changes to the system other than install all Important Microsoft Updates through Windows Update.
    A full scan with Windows Defender finds no threats.
    A full scan with Avast finds no threats.
    I beleive Microsoft may wish to ensure that this issue has not been caused by any of the following  30 updates. If it has been caused by one of these updates, then Microsoft should consider issuing a further update to correct this.
     - - -  Extract from Windows Update History for period April 18, 2012 and the date I noticed this issue of May 18, 2012, Starts: - - - -
    Definition Update for Windows Defender - KB915597 (Definition 1.125.1635.0)
    Installation date: 13/05/2012 19:31
    Security Update for Microsoft Silverlight (KB2636927) 
    Installation date: 10/05/2012 15:44
    Windows Malicious Software Removal Tool - May 2012 (KB890830) 
    Installation date: 09/05/2012 22:51
    Update Rollup for ActiveX Killbits for Windows 7 (KB2695962) 
    Installation date: 09/05/2012 22:45
    Definition Update for Windows Defender - KB915597 (Definition 1.125.1373.0) 
    Installation date: 09/05/2012 22:45
    Security Update for Microsoft Silverlight (KB2690729) 
    Installation date: 09/05/2012 22:45
    Security Update for Microsoft Office 2007 suites (KB2596880) 
    Installation date: 09/05/2012 22:33
    Security Update for Microsoft Office Excel 2007 (KB2597161) 
    Installation date: 09/05/2012 22:32
    Security Update for Microsoft Office Word 2007 (KB2596917) 
    Installation date: 09/05/2012 22:31
    Security Update for Microsoft Office 2007 suites (KB2596672) 
    Installation date: 09/05/2012 22:31
    Security Update for Microsoft Office 2007 suites (KB2597969) 
    Installation date: 09/05/2012 22:29
    Security Update for Microsoft Office 2007 suites (KB2597162) 
    Installation date: 09/05/2012 22:28
    Security Update for Microsoft Office 2007 suites (KB2596792) 
    Installation date: 09/05/2012 22:27
    Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 SP1 x86 (KB2604115) 
    Installation date: 09/05/2012 22:16
    Security Update for Microsoft .NET Framework 4 on XP, Server 2003, Vista, Windows 7, Server 2008 x86 (KB2656405) 
    Installation date: 09/05/2012 22:16
    Security Update for Windows 7 (KB2688338) 
    Installation date: 09/05/2012 22:12
    Security Update for Windows 7 (KB2660649) 
    Installation date: 09/05/2012 22:12
    Security Update for Windows 7 (KB2659262) 
    Installation date: 09/05/2012 22:11
    Security Update for Windows 7 (KB2676562) 
    Installation date: 09/05/2012 22:11
    Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 SP1 x86 (KB2656411) 
    Installation date: 09/05/2012 22:11
    Security Update for Microsoft .NET Framework 4 on XP, Server 2003, Vista, Windows 7, Server 2008 x86 (KB2604121) 
    Installation date: 09/05/2012 22:11
    Security Update for Windows 7 (KB2690533) 
    Installation date: 09/05/2012 22:04
    Security Update for Windows 7 (KB2658846) 
    Installation date: 09/05/2012 22:04
    Definition Update for Windows Defender - KB915597 (Definition 1.125.1137.0) 
    Installation date: 06/05/2012 14:54
    Definition Update for Windows Defender - KB915597 (Definition 1.125.1090.0) 
    Installation date: 03/05/2012 23:48
    Definition Update for Windows Defender - KB915597 (Definition 1.125.886.0) 
    Installation date: 02/05/2012 15:09
    Definition Update for Windows Defender - KB915597 (Definition 1.125.655.0) 
    Installation date: 28/04/2012 23:55
    Definition Update for Windows Defender - KB915597 (Definition 1.125.402.0) 
    Installation date: 25/04/2012 01:08
    Definition Update for Windows Defender - KB915597 (Definition 1.125.146.0) 
    Installation date: 20/04/2012 16:10
    Definition Update for Windows Defender - KB915597 (Definition 1.123.1936.0) 
    Installation date: 18/04/2012 15:55
    - - - - End of Extract from Windows Update History - - - -

  • In Lion 10.7.x I cannot disable the Lock documents for 2 weeks in Time Machine! Thus it prevents to change anything else like the system preferences or other settings. How I can disable it?

    Hello, In Lion 10.7.x I cannot disable the Lock documents for 2 weeks in Time Machine! Thus it prevents to change anything else like the system preferences or other settings. All is locked. How I can disable it?

    Do you mean the check box isn't enabled?
    Or you remove the check but it doesn't "stick"?
    Or you remove the box but documents are stil getting locked?
    That setting doesn't apply to other things in System Preferences, just apps that support AutoSave and Versions.  If you're having a problem with System Prefs, please clarify exactly what.

  • My phone was run over. It still works but the screen is smashed and I cannot unlock the phone from find my iphone. How can I unlock the phone so I can save my photos?  It was not backed up in iCloud. I

    My phone was run over. It still works enough to see some of the screen but not the number pad. I cannot unlock the phone because I activated find my iphone. How can I unlock the phone so I can save my photos? Is there a way to unlock it from find my iphone. It was not backed up in iCloud. When I plug it into my computer, the computer tells me that I have to unlock it first. Help?

    No I haven't synced my iPhone with the computer I'm currently using. The computer that I normally sync my iPhone with is being repaired.
    I read a nearly identical question to mine (in which you answered) and I found my the answer. Thanks!
    Now I have a few more questions: If I mail my broken iPhone to Asurion, will I be able to get my data off of my iPhone once Asurion has it? And what will happen to my old iPhone and the data on it if I activate my replacement iPhone? Will my broken iPhone just become de-activated and will the data be erased or lost or something? Could I still sync it (with the computer ir originally synced with) and back up the data?
    Thanks.

  • I successfully deleted a user from my MacBook through the Users and Groups window in System Preferences.  But now I cannot close the lock in the bottom left corner of the box.  When I click on it, I briefly see a word that I think says "reauthorizing" but

    I successfully deleted a user from my MacBook through the Users and Groups window in System Preferences.  But now I cannot close the lock in the bottom left corner of the box.  When I click on it, I briefly see a word that I think says "reauthorizing" but the word flashes too quickly to tell for sure.

    If you are admin.
    Try restarting your Mac.

Maybe you are looking for