Disk Utility can't restore from TimeMachine. it's disabled.And recovery disk doesn't show up after pressing option while rebooting the machine.
Search results for
restore purchases
21,823 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Are you UPDATING your iPhone or RESTORING it to iOS 9?If you restore your iPhone, you will most likely end up wiping the Watch as well since whenever a Watch is un-paired from the phone, it is wiped.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I installed the iOS 9 beta on a secondary iPhone to try out the new OS, including the new Music app. However it seems that app is being released first on iOS 8.4 and is currently omitted from the iOS 9 beta, so I'm considering reverting that phone back from the beta.Before installing the beta, I performed a local iTunes backup. However, after doing so I neglected to switch the backup preference setting back from local to iCloud, and so when the phone performed its automatic nightly backup it overwrote the local iOS 8 backup with one for iOS 9. While it's possible to download an iOS 8.3 IPSW file and downgrade to that version, I don't believe I will be able to restore my data backup, since the sole backup is based on iOS 9.I'm assuming a workaround would be to first restore the last iOS 8 backup file from Time Machine and use that. However, I'm not sure if it's as simple as replacing this backup and restoring from it, or whether additional steps would be required to avoid screwing so
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I'm having the same issue with an iPhone 6. I'm restoring to 8.3 and will try again after removing all USB devices. I'll report back afterwards.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
No luck. I tried both Update and Restore options and both fail at about the 10% mark. Any other recommendations?
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I definitely understand the inconvenience. I've noticed a few core apps do not function or behave properly; even after I an unpair (erase) and repair. I've looked into this as well and there is no official path to restore at this point. You would have to take it in to an Apple Retail Store to have it restored and it might be considered an out-of-warranty repair due to it being a personal device.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hope you're able to get your PC repaired soon.iOS updates traditionally have only been offered as firmware files from the developer portal. This is been my experience.Per requirements, your device must be registered as a development device in Xcode. I don't know, officiallly, if restoring it from a PC is advisedanyway. Consider trying again from a Mac.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Same exact issue. I will try to do a factory restore, then a icloud restore to see if it fixes the issue with it only showing home screen and siri as what is killing my battery life. Won't show any other apps that I used throughout the day today and I am down to 11% right now where I am usually at 65 or 70% on my iphone 67 plus at this time of day.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
So after updating my iPhone 6 and Apple Watch to their new respective betas, I had to restore my Apple Watch and start all over which I realize may be a bug. However now my watch will not let me reply to SMS messages and they don't show up in the Watch messages app. iMessages sync perfectly fine and I get SMS notifications, but no option to reply. If I try to send a new message as a SMS from the Watch, it crashes the device. This was also happening with the iOS 8.4 betas.Has anyone else had this problem? Thanks!
I'm not sure if this is happening for everyone else but I filed a bug report on it. I had done a restore to put iOS 9 on and lost about 30% batter in standby. Home/Lock Screen took about 50% of the power, but Facebook was #2 for background activity even though I have backround app refresh disabled on Facebbook. This might be a possible case of the OS ignoring the BAR settings on some very hungry apps.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
The retail stores cannot restore the device as they don't have the ability to. They would have to create a repair and send it out to a repair facility. Since unreleased software is not supported (much like modifying software), there would be a cost if they have to replace the watch. You would also be looking at not having your watch for several days until it returns.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Have tried 5 or 6 times now it install the beta package for 1474 on two diffrent computers. Each time the install freezes after about 10% and itunes pops and error code 14. I have tried diffrent cables and ports with no luck so far. I have tried redownloading the package to insure it wasnt corrupted but still no luck. It restores to 8.3 from both computers without trouble. I am unsure what to do from here. Has anyone else come across this and resolved it? Any suggestions as to what to try next? Your help is appreciated.
The main cause for this terrible battery drain is a background app refresh - even if you turned it off it does operate (also you can see it in the Battery statistics)Just try to turn it on and off and check a result.---and now I'm restoring to ios 8.4
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I had this same problem on iOS 8.3 and iOS 9 to fix it you must un-pair your Apple Watch and then re-pair it you can restore from a backup it won't affect it. This fixed it both times for me. Best of luck!
Topic:
App & System Services
SubTopic:
Core OS
Tags:
HiI'm validating my receipts against the appstore, following the Apple's guide The receipt is retrieved from the bundle using the following code:NSURL *receiptURL = [[NSBundle mainBundle] appStoreReceiptURL];NSData *receipt = [NSData dataWithContentsOfURL:receiptURL];NSString *base64Receipt = [receipt base64EncodedStringWithOptions:0];The encoded receipt is a signed binary file, as described in the documentation. However, in some weird cases the receipt is not the expected binary file but an NSDictionary with the form{ pod = 50; purchase-info = ewo...; signature = Apdx...; signing-status = 0;}When I try to validate those receipts against the appstore, the result is always 21002 (The data in the receipt-data property was malformed or missing). Any ideas in why the receipt retrieved from the bundle is in the wrong format?Regards