Add insurance to phone after it's been used for 2 months

can I add insurance to my phone after it's been used for 2 months....I'm scared that my daughter will lose it or break...thx

No, you would not be able to add insurance to the phone due to it being over the 30 day grace period. We do have a certified pre-owned device program that offers a replacement option to customers who are not enrolled in equipment coverage, wireless phone protection, or extended warranty. If your device is lost, stolen or damaged and you are not enrolled in total equipment coverage or wireless phone protection, you can purchase a certified pre-owned replacement device to replace your original device. 
If your device experiences a defect after the manufacturer’s warranty has expired and you are not enrolled in total equipment coverage or extended warranty, you can purchase a certified pre-owned replacement device to replace your original device. 
There is a limit of one certified pre-owned replacement device per mobile number every 12 months.
I have provided a link for additional information. Click here http://support.vzw.com/information/cpo_replacement.html

Similar Messages

  • 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:

  • The wifi i have been using for months quit working yesterday. any ideas how to fix this?

    the wifi i have been using for months quit working yesterday. any ideas how to fix this?
    HELP!!!

    Is your Wi-Fi visible?
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    iOS: Troubleshooting Wi-Fi networks and connections
    Did you check your router?
    iOS: Recommended settings for Wi-Fi routers and access points

  • I have updated to iOS8. Now cannot connect to BT speaker I have been using for months. BT discovers it but will not pair. Help please

    I have updated to iOS8. Now cannot connect to BT speaker that I have been using for months. BT discovers it but will not pair. I have tried switching both off & on but nothing helps.

    I am sure the BT speaker not the problem because it works fine with iOS8 on my iPad!
    ... And no I am not trying to connect both at once.  To be sure I have switched the iPad off completely and switched the speaker off & on but still with the same failure to pair.  The iPhone sees the speaker but then gives me the pairing unsuccessful message when asked to connect.

  • Thunderbird will not allow me to use a group email I have been using for months, why and how do I do it please?

    I set up a group email for people that I send an email to at least once a month, I updated Thunderbird when the update came up and now when I have gone to send the email it has told me that it must be in the form of name@host, not my Groups name. How do I fix this problem without having to put each individual email address in each month

    This has been reported as [https://bugzilla.mozilla.org/show_bug.cgi?id=1060901 Bug #1060901]. If you have an account on Bugzilla, please consider voting for that issue.
    Several other people have sent in the same support request as you, noting this happened after they upgraded to version 31.1.
    The exact error message is: XXXX is not a valid e-mail address because it is not of the form user@host. You must correct it before sending the e-mail.
    '''This happens when your mailing list description includes several words separated by spaces.'''
    Although not ideal, these workarounds should let you use your mailing lists until a proper fix is implemented:
    * While composing an email open the address book and select the list you are trying to send to, highlight all the names in the list and drag them to the To: box. This uses your existing data without modifying it.
    * Replacing the blanks " " between the words in such lists' descriptions with an underscore "_". This requires modifying your mailing list(s) description(s).

  • HT4528 I receive a 4s after been use for 2 years in the verizon network and the customer upgrade to a 5.I will like to use the phone overseas but I do not use Verizon.

    I receive a 4s after been use for 2 years in the verizon network and the customer upgrade to a 5. I will like to use the phone overseas but I do not use Verizon, how I can get this phone legally unlocked without having to add service because I'm with Sprint under a contract?
    I can get the prior  owner of the phone info if you nedd to contac her to verify, just let me know thank you.
    If the phone was used in the Verizon network for 2 years, is that not enough time to get the phone unlocked?

    I have sprint phone and service without simcard, Sprint and Verizon use CDMA. But if I can get the Verizon iPhone 4S unlocked, I can use it let's said in the caribean, canada, europe etc.,  with a local simcard from the service provider and country that I visit . No to be use here in USA with Sprint or Verizon, only to be use with GSM-Simcard when I travel out of USA. 

  • I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone).

    I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone). Why doesn't my phone recognize him to have iMessage? Do I have to turn my data on and my airport off to send a message before it recognizes that he has iMessage?

    Call AppleCare, because, according to Apple, removing the devices from your support profile should have fixed this issue. You can also try changing your Apple ID password, but given what you've done, I doubt this will help.

  • 3 year old iMac 24 running OS10.7.4.  After it has been on for a day or so, it stops going to sleep and becomes very slow.  This only happens when Safari is running. Quitting Safari solves the problem.  Has anyone else have the same problem?

    3 year old iMac 24 running OS 10.7.4.  After it has been on for a day or so, it stops going to sleep and becomes very slow.  This only happens when Safari is running. Quitting Safari solves the problem.  Has anyone else have the same problem?  Does not happen on MacBookpro only on iMac.

    Hello Albert, see how many of these you can answer...
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab, are there a lot of Pageouts?

  • All my title bars (very top of the page) show up in Chinese characters after I've been online for awhile. What is causing this? I've never activated anything in Chinese; this makes me nervous. Is this a virus? My virus scanner is not showing any problems.

    I never have noticed this problem until about 2-3 weeks ago & it occurs after I've been online for awhile. When I click through my open tabs, each of them is written in distinctly different Chinese, as if it's translating what ordinarily would have been in English. I have been using Firefox on this computer for over a year, never have had this issue before and have never done anything to activate any translation function.

    I never have noticed this problem until about 2-3 weeks ago & it occurs after I've been online for awhile. When I click through my open tabs, each of them is written in distinctly different Chinese, as if it's translating what ordinarily would have been in English. I have been using Firefox on this computer for over a year, never have had this issue before and have never done anything to activate any translation function.

  • I accidentally set up two accounts.  One account with my old e-mail address which I've been using for years and has all of my purchases on it.  Now I have a new account with my current e-mail address. How do I disable this new account?

    I accidentally set up two accounts.  One account with my old e-mail address which I've been using for years and has all of my purchases on it.  Now I have a new account with my current e-mail address. How do I disable this new account?  I need to disable the new e-mail address account so that I can add it as an additional e-mail to my old account.  THEN, how do I make this new e-mail address my primary e-mail for this old account?

    Did yoo go to Settings>iTunes and App Stores and sign out and sign back in?
    Next see:
    Frequently Asked Questions About Apple ID

  • HT5312 My recovery email is no longer in use, as it hasn't been used for sometime, and now seems to have 'expired', and I do not even recall being asked the security questions,so I can no longer download certain games. Please help.

    I cannot download certain games because I do not recall the answers to my security questions when it asks if I am 17 years or older. In fact, I do not even recall being asked these security questions.
    I tried to guess logical answers but now my iPad is threatening to lock me out. My second email is no longer in use as it has not been used for years and has seemingly expired.
    Can you please help?

    If you don't have access to your rescue email account, or you don't have one on your account (an alternate/secondary email address is a different setting/address), then you will need contact iTunes Support or Apple to get the questions reset (you won't be able to change/add a rescue email address until you can answer 2 of your questions)
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then 'Forgotten Apple ID security questions'
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57
    When they've been reset you can then use the steps half-way down the page that you posted from to update/add a rescue email address for potential future use

  • HT204406 Hi, Although I had iunes downloaded on my pc & been using for a while now, today I've been prompted to download itunes again. This has been successfull except that 65 songs that I had previously in my library are now no longer able to play, the m

    Hi, Although I had itunes downloaded on my pc & been using for a while now, today I've been prompted to download itunes again. This has been successfull except that 65 songs that I had previously in my library are now no longer able to play, the message informes me that the original files could not be found. Yet these songs are still on my ipod after being syncronised and I can play them on my ipod. Please advise how I can find the original files on my pc.
    Thank you
    Carol

    I would copy over the entire thing if you have room.  With iTunes 10.4 though, you can download any previous iTunes purchases you have made in the past with your current iTunes account.  While in iTunes, look at the left hand side of your screen and select "Purchases" and look at the bottom right corner of the screen and select "Download Previous Purchases".  If you have an iPhone, iPod and/or iPad...you can do the same thing from each device.  Nice new feature...just remember that those ripped CDs need a back-up!!!  Enjoy...

  • I recently moved and had to disconnect my WD My Pro Edition II 2TB external drive I had been using for backup.  Its been several months and now when i try to reconnect the external dire (Use a firewire cable) it does not recognize the drive is there.  I a

    I recently moved and had to disconnect my WD My Pro Edition II 2TB external drive I had been using for backup. 
    Its been several months (many upgrades to the iMac software during this time), and now when I try to reconnect the external dire (Use a firewire cable) it does not recognize the drive is there.  I also tried "reloading" software from the Western Digital site, but after following all the instructions, it looks like my iMac doesn't support this software (I can't even locate it after I follow all the instructions.
    Thnaks,  for anyones ideas on how I can get this working again.....

    First of all, you do not really want to use their software; if you want a bootable clone, use either Carbon Copy Cloner or SuperDuper. If you simply want to drag and drop some files, you don't need software to do that. The important thing on any external drive is that you format/partition it correctly (Mac OS Extended (Journaled) and using GUID partition scheme). 
    Unfortunately, I don't know anything about WD drives or their software, so I don't have any idea what kind of backup you did. Having said that, it should still recognize the external even if it's outdated. Have you tried mounting it manually in Disk Utility? If you can get it to mount, you could (worst case scenario) just drag your stuff off onto your internal and then reformat the external.

  • My iMac suddenly can't read the backup hard drive I've been using for Time Machine.  I did NOT just upgrade the OS or anything.  The external HD is an OWC Mercury Elite All Pro. It's worked fine since I got the iMac 4 years ago.`

    My iMac suddenly can't read the backup hard drive I've been using for Time Machine.  I tried unplugging the cord that connects the HD to the iMac and plugging it back in, but I still get "The disk you inserted was not readable by this computer" below which are buttons for Initialize, Ignore and Eject.  I was using a cord that went from larger square plug to larger square plug.  So then I tried one that went from smaller square plug to what I think is USB (thin rectangular plug) of the sort that connects the keyboard and mouse. It's the type that my printers and scanners use to connect to the iMac.  I did NOT just upgrade the OS or anything.  The external HD is an OWC Mercury Elite All Pro. It's worked fine since I got the iMac 4 years ago. What else can I try before just trying to initialize and

    Thanks, Michael!  I do hear it at times spooling up and running. Just after I bumped the thread I looked for troubleshooting for this drive online and found the manual which suggested using Disk Utility which I've seen before accidentally (if I hit Command Shift U instead of Shift U to type "Unit" on a new folder for a student's homework ) but had never really noticed.   Disk Utility does see it and also a sub-something (directory?) which might be the Time Machine archives on the disk, called disk1s2), sort of the way that my iMac's hard drive shows up as 640.14 GB Nitachi HDT7... and has a sub-something titled DB iMac, which is what I named my iMac's hard drive.
    Anyway the owner's manual just shows the image under the formatting section, not the troubleshooting section, but as soon as I saw it in the manual I remembered seeing it accidentally a few times, went to it, and am now verifying the disk.  Right now it's telling me that it will take 2 hours to complete the verification, so I guess I have a bigt of a wait.  :-) 
    Does that fact that Disk Utilities can see it mean it's not failed, or just that it hasn't completely failed? 
    I can see the virtue in having multiple redundant backups, or at least two backups. What do you suggest?  Two external hard drives?  I had this one linked by ethernet, and but I also have a cord that could link it by USB (like a printer), so if this one is reparable I could get a second one and link it by USB.  If this one is not reparable I could get two and do the same thing.  I do have an Airport so I suppose it's possible to get some sort of Wi-Fi hard drive (my new printer/scanner uses only the network and not a cable, although it has a cable that I used for the initial installation), but I'd suspect a Wi-Fi hard drive might have a higher price.
    What hard drives, if any, do you recommend? I seem to recall that when I was looking at external hard drives 4 years ago, Apple's were substantially more expensive, which is why I got the OWC Mercury Elite All Pro.

  • I recently bought a new macbook and installed Acrobate Pro. My settings/preferences did not come over and I do not have the same style options for my signature.  It now only allows me three options and the style I have been using for the last year is not

    I recently bought a new macbook and installed Acrobate Pro. My settings/preferences did not come over and I do not have the same style options for my signature.  It now only allows me three options and the style I have been using for the last year is not there.  How do I add additional options and get my preferred signature style back?

    Hi Amanda ,
    Which version of Acrobat are you using?
    Which signature style are you talking about?
    You can go ahead and try uninstalling and reinstalling it and see if that works for you .
    Use the cleaner tool to uninstall it .Here is the link.
    Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs
    You can refer to the following link to re install it .
    https://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Regards
    Sukrit Dhingra

Maybe you are looking for

  • How can I transfer photos from my ipod touch to my computer

    How can I transfer photos from my iPod touch to my laptop.?

  • Now on 2nd DR8-A and still Problems

    I'm on my replacement drive of my replacement drive of a dr8-a and I have been less than pleased.   I get constant burn errors and underruns on dvd and cd media.  I've used no brand, name brands, and still no luck.  My pioneer a05 keeps on ticking an

  • How to use java script in jsf?

    my requirement is i have to pass the id of the component to the java script function .that component is inside data table. how to solve this problem?

  • Help with Imports

    Ok my problem is hard to explain but I'll do my best. My iTunes is brand new. Yesterday I downloaded and installed it. As soon as I opened the program it started moving my music from Windows Media Player onto iTunes. This was all well and good but th

  • Extremely high latency from 4am - 12pm in Baltimore, MD

    Lately for the past month I have been getting extremely high latency 1500ms+.  I am directly wired to the Actiontec router using a new cable on a confirmed working lan card.  I believe the problem maybe at the POD card.  How would I go about proving