What happens to an inactive apple account that has not been used for  years

My aunt has not used her apple account for two years and she wishes to know if it is usable

wait so you mean that if i left my account unused for a number of years it will not delete itself ? cause in  read in the terms and services that it does
ex
In addition, Apple may terminate your Account upon prior notice via email to the address associated with your Account if (a) your Account has been inactive for one (1) year; or (b) there is a general discontinuance or material modification to the Service or any part thereof. Any such termination or suspension shall be made by Apple in its sole discretion and Apple will not be responsible to you or any third party for any damages that may result or arise out of such termination or suspension of your Account and/or access to the Service, though it will refund pro rata any pre-paid fees or amounts.

Similar Messages

  • I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months a year.  So, if I have Icloud for my calendar, and turn on a computer that has not been used for 6 months, does all the old information on that computer to go Icloud?

    I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months each year.  When I turn on a computer that has not been used for 6 months, does all of the old information from that computer end up in Icloud?  Does Icloud push all the new calendar and contact items over the old items?

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • List AD accounts that have not been used for months?

    Hello,
    I use oldcmp.exe to show me what computers have not been used for months and I can disable them, but I wish to do the same for users Active Directory accounts, is this possible?
    We use AD 2003
    Thanks

    sorry for slightly belated reply. I've used another version of this script that doesn't have the GUI interface on it, this will make it easier for you to run from a scheduled task.
    copy the code and make the relevant changes to the top section of the script as the comments explain. This will send and email with a link to the report generated.
    #Script designed to search AD for inactive user accounts, mark them as inactive and move them to a specific OU then disable them
    #Script can be run in the following formats
    # 1. Report only
    # 2. Report and move account
    # 3. Report, move and disable
    #Uses quest powershell tools which can be downloaded from http://www.quest.com/powershell/activeroles-server.aspx
    #Version 2.0
    #Added email functionality
    #Denis Cooper
    #Setup script Variables
    #Change the setting from True to false to alter the way the script runs (only one option can be true)
    $ReportOnly = "True" #Generates a CSV file showing all inactive user accounts
    $ReportandMove = "False" #Generates a CSV report, moves the users to a specific OU
    $ReportMoveDisable = "False" #Generates a CSV report, moves the users to specific OU, and sets the description
    #Set the period of inactivity in days
    $InactiveFor = "90"
    #Specify the OU to search for inactive users - us AD CN if searching enire AD
    $SourceOU = "OU=Users,DC=MyDomain,DC=Int"
    #Specify the destination OU to move inactive users to is using report and move or report move disable script options
    $DestinationOU = "OU=Inactive Users,DC=MyDomain,DC=Int"
    #Don't mark anyone with the the specified prefix in the description field to inactive - DND stands for Do Not Disable and is specified
    #in the users account description field for accounts which may not be used to login so will show as inactive but that you don't want to disable
    #must leave the * after the word for wildcard matching
    $DescriptionPrefix = "DND*"
    #Specify the description to set in the computer account on ReportMoveDisable option
    $Description = "Account disabled due to inactivity on $Today"
    #Specify the path to create the csv file (make sure the folder exists)
    $ReportFile = "\\server\share\InactiveUsersReport.csv"
    #Get todays date and store it in the $today variable
    $Today = Get-Date
    #Email Settings
    $SMTPServer = "smtp-server-name" #replace this with your internal smtp server
    $FromAddress = "[email protected]" #replace this with your from address
    $ToAddress = "[email protected]" #replace this with your TO address
    $CCAddress = "[email protected]" #replace this with your TO address
    $Subject = "This is your subject line" #replace this with the subject line for the email
    $MessageContent = "
    Hello,
    Please find a link to the latest report containing users that have been inactive for $inactivefor days
    $ReportFile
    Please take the appropriate action.
    Thanks you,
    IT
    #NO CHANGES BELOW THIS LINE
    Function SendEmail {
    $messageParameters = @{
    Subject = $subject
    Body = $messagecontent
    From = $fromaddress
    TO = $ToAddress
    CC = $CCAddress
    SmtpServer = $SMTPServer
    Send-MailMessage @messageParameters
    #Generates a report showing inactive users
    Function ReportOnly {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    SendEmail
    Invoke-Item $ReportFile
    #Generates report and moves accounts to desitnation OU
    Function ReportandMove {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Generates report, moves accounts to destination OU, disables the account and sets the description
    Function ReportMoveDisable {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Disable-QADUser $_
    Set-QADUser $_ -Description $Description
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Runs the script
    #Finds all inactive user accounts which are in an enabled state and store them in the variable $inactiveusers
    $inactiveUsers = Get-QADUser -SizeLimit 0 -SearchRoot $sourceOu -NotLoggedOnFor $InactiveFor -Enabled | Where-Object {$_.description -notlike $DescriptionPrefix}
    #Checks which script to run
    If (($ReportONly -eq "True") -and ($ReportandMove -eq "True" -or $ReportMoveDisable -eq "True")) {
    Write-Host -ForegroundColor RED "Only one run condition is allowed, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -ne "True" -and $ReportandMove -ne "True" -and $ReportMoveDisable -ne "True") {
    Write-Host -ForegroundColor RED "No valid run condition was specified, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report only mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    ReportOnly
    If ($ReportandMove -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report and move mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU"
    ReportAndMove
    If ($ReportMoveDisable -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report, move and disable mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU and disabled and their description updated"
    ReportMoveDisable
    This link should help you create a scheduled task to run the script
    http://dmitrysotnikov.wordpress.com/2011/02/03/how-to-schedule-a-powershell-script/
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • I have been given a ipone 4 that has not been used for 18months it is locked to t-mobile who will not unlock it. HELP...

    I have been give an iphone 4 that is locked to T-mobile. the phone hasn't been used for 18 months. the previous own has contacted t-mobile to get the phone unlock, but they won't unlock it. help.....

    It is up to each carrier whether they will unlock or not.

  • HT204053 Apple offered to install iCloud, and I allowed it. Yet when I try to sign in to iCloud using my Apple ID email and pswrd--an ID that I've been using for YEARS--I'm given the message, "This Apple ID is valid but is not an iCloud account." What is

    To repeat my question, Apple offered to install iCloud, and I allowed it. Yet when I try to sign in to iCloud using my Apple ID email and pswrd--an ID that I've been using for YEARS--I'm given the message, "This Apple ID is valid but is not an iCloud account." What is going on?
    Everywhere I search on Apple's Support site says to sign in to iCloud using your "Apple ID," which I did. I've had my iTunes account for years (even migrated from the old AOL account system). It's the standard email+password that everyone is supposed to use.
    My main question is how can I have a valid Apple ID and not an iCloud account--if the two are supposed to be linked?
    Thank you for any help you can give me!
    tlj

    I've tried both. First, I tried on my pc, where iTunes had installed iCloud when it last updated. I have iTunes installed on this computer (and on my iPad and iPhone), but that wasn't the issue.
    So I went online, thinking I needed a separate iCloud Apple ID, but it prompted me for my current Apple ID and gave me the message about my ID being "valid" but not an iCloud account," which, lol, was what it had asked me to do in order to create one. I checked, and at least one other user is having the same issue. I'll attempt to copy/paste the Support request url: https://discussions.apple.com/thread/4430653?tstart=0
    Thank you for any help you can give.
    Trish

  • Hi.. I am reinstalling ios on macbook. While doing process, it asks for the Apple id and password. I am providing the id but it displays the message that apple user id has not been used with apple store... what shall I do to make my id work. Please assist

    Hi.. I am reinstalling ios on macbook.
    While doing process, it asks for the Apple id and password. I am providing the id/password but it displays the message that apple user id has not been used with apple store... what shall I do to make my id work. Please assist

    Just to clarify, iOS is the operating system for iOS based devices such as the iPod touch, iPhone, and iPad.
    Your Mac runs on OS X.
    As for your Apple ID, help here >  Using an existing Apple ID with the iTunes Store, Mac App Store, and iBooks Store

  • Turned on computer email said i needed new account when I have been using for years (no mail, drafts, sent)

    Turned on computer email said I needed new account when I have been using for years (no mail, drafts, sent). I filled oyt new mail setup and it only found my mail not drafts and sent ... I use drafts to store documents and sent in a leser capacity - Ihave huge data in drafts.  Tried to restore using time machine (never had to before). The backups are there but the restore button does not highlight??? So when you clickit nothing happens.

    Restoring Mail is complex. Luckily, the late James Pond left us an illustrated guide:
    You can restore the Mail messages and indexes to the way they were (provided you have a Backup from around that time)
    Pondini's Time Machine FAQs: 15m.  Viewing or Restoring Apple Mail

  • I have an external hard drive that I have been using for years.  All of a sudden my mac will not recognize the external as a "save as" device location.  But the external does show up on my desktop and I can open it to drag and drop items. Help.

    I have an external hard drive that I have been using for years.  All of a sudden my mac will not recognize the external as a "save as" device location.  But the external does show up on my desktop and I can open it to drag and drop items.  What happened and how do I get my mac to rerecognize the device?!?!?

    Hi,
    Check Finder>Preferences>Sidebar, is it checked there to show external drives?

  • I can no longer open my files that I have been using for years?

    I can no longer open my documents that I have been using for years.
    "Adobe Reader could not open xxxx.jpg because it is not a supported file type or ................."
    Help.

    Here are instructions for setting file associations for Windows 8. Again, you will need to know what program you have that opens .jpg files.
    How to Associate File Types in Windows 8: 5 Steps (with Pictures)
    Good luck.

  • Why isn't remember me working on sites that I have been using for years on my iPad but fine on my iPhone?

    Why isn't remember me working on sites that I have been using for years on my iPad but fine on my iPhone?
    Both have recently been updated with IOS7

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Server not recognizing same password that I've been using for years. What's the problem?

    I entered the same password that I use for this particular email address in outlook and when I first set up Thunderbird and it work fine but when I went back to check my mail for this account in Thunderbird I get a password failed message now. I retype it several times and it keeps coming up failed.

    http://kb.mozillazine.org/Password_rejected

  • How can i manage old data on my file server that as not been used for over 2 years?

    I have 4 file servers and more then 50% of the data is older then 2 years
    I would like to move that data to another san, slower but i would like the user to have access by shortcut on there share
    Would make it faster to backup because the drive would be 50% less big and would not affect users because they would see the same thing in there share it would just be a little lomnger to open file upon need.
    Thanks
    I have an environement 2008r2 but can transfert everything to a 2012 r2 if needed
    Thanks

    robocopy is the tool I recommend to use for that. See that: https://social.technet.microsoft.com/Forums/windowsserver/en-US/51e5f602-b7f2-4d06-adda-1372c30f6250/help-for-script-to-move-old-files?forum=winserverpowershell
    You can also add the shortcuts using a script: http://superuser.com/questions/455364/how-to-create-a-shortcut-using-a-batch-script
    More if you ask them in the Scripting forum: https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=ITCG&filter=alltypes&sort=lastpostdesc
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • I have an old Mi-Fi Card that has not been used and want to cancel service now.  What do I do?

    I have an old Mi-Fi Card that I have not used in more than a year (using the hot spot on Verizon IPhone).  I want to cancel the Mi-fi device/account - what do I do and what are my fees?

    Call Customer Service to cancel the line, and if you are under contract, being a year in, it should be around 105$ Early Termination Fee (They would know the exact amount) and whatever your final bill is for the month. If it is not under contract, you won't have to pay a dime

  • Why are some web sites that i have been using for years now all the sudden changing themselves from Standards compliance mode to Quirks mode? How do I change them back to Standards compliance mode?

    Like I will be checking on an account { page is fine} go to a different screen then go back.... This is the fun part. The page starts off normal then all the sudden it shrinks and moves to the right side of the page with out me touching anything. I have had this happen to me a few different times and could not seem to get the help I needed. I bring up another page, look at page info and it says Rendering mode - Standards compliance mode, but on the messed up page it says Quirks mode. How do I get it back to Standards compliance mode?

    Good day ... As I leave California I am still very puzzled at how Yahoo can hijack my pages while on the internet ...? A friend of mine who lives here is also puzzled at how this is happening. I have taken screen grabs and would video it if that is possible ...? The screen grabs have the time taken on each grab, so one can see how fast this happens .. in a matter of seconds Yahoo jumps in with no relevance to my link I was trying to get to or the last hit or any thing stored in my history ... Is this possible ..? As I said I use a Macbook Pro 17", Os X 10.9.5, firefox 33.0.0 ..... Where is the fault ... Is my system compromised ..?
    I am now in South Africa and the problem still exists ... Please see screen grabs that I took and uploaded before ... Please help as I like Firefox over Safari, and do not wish to change ....

  • I have a D7160 that have not been using for awhile. Get Error message: Oxc18a0206

    I have replaced the ink cartridges and tried all of the online troubleshooting ideas that I have found such as power off/power on. How do I get to the PC board to check the cmos battery? Any other ideas?

    TLDR
    But I did skim over some of it, and I see a big mistake repeated several times:
    "&" is the bitwise AND operator.
    "&&" is the logical AND operator.
    You've confused them, but you're using them in such a context that it's not a syntax error, so you're probably getting unexpected results. When used with booleans, it will probably work okay, although the operators will not be evaluated conditionally. But when used near ints, you've got a problem:
    Int examples:
    if (targetList.size() != 0 & inRangeList.size() != 0){
    if (actor.getX() == actorList.get(inRangeList.get(currentClosest)).getX() & actor.getY() == actorList.get(inRangeList.get(currentClosest)).getY() ){
    for (int i = 0;
                    i < inRangeList.size() &inRangeList.size() != 0;
                i++){
    if (actor.getX() == d.getWidth() & actor.getY() == d.getHeight()){
    Boolean examples:
    if (brainState.getFoodLocationFound() & actorFound){
    else if (brainState.getNestLocationFound() & actorFound){           
    else if(brainState.getFoodLocationFound() & !actorFound){Also, avoid declaring variables named "l".
    Some of those while() loops would be better rewritten as for() loops so that the loop variable will be limited in scope to the loop.

Maybe you are looking for