How can I turn off imessage for just one of my contacts? Me and my husband just upgraded (both had iphone 4), I got the iphone 5s and he got he note 3. All my text to him automatically send as a imessage. Ive tried to delete his contact and then went back

How can I turn off imessage for just one of my contacts? Me and my husband just upgraded (both had iphone 4), I got the iphone 5s and he got he note 3. All my text to him automatically send as a imessage. Ive tried to delete his contact and then went back in and reentered it but that doesnt work.

Have your husband text the word "stop" to 48369. This should take his number out of the iMessage system.
Go into your settings under messaging and make sure the box to send as an SMS if iMessage is unavailable is checked.
Hopefully this will get your messages sending/receiving to each other.

Similar Messages

  • Mail shows up in several different inboxes, including the one it was intended. How can I turn off notifications for these duplicate messages?

    I would like to turn off notifications for duplicate mail messages.
    Thanks,
    Ralph Sapertein

    Kurt told you how to turn it off. To learn the Spotlight differences between Tiger and Leopard, see http://www.pinkmutant.com/articles/Leopard/leospot.html and my mod to Finder's Find at http://discussions.apple.com/message.jspa?messageID=6725932 for what you can change so you can find stuff excluded by Leopard's default structure.

  • How can I turn off messages for certain Action Center items?

    I'd like to find a way to turn off messages for Windows Update, Network Firewall and Windows Backup. Ideally I'd like to do it with Group Policy however I can't find a policy for this. We're deploying Windows 7 right now and we'll need a solution that's domain-wide.Orange County District Attorney

    Here's a script I made to uncheck Windows Update, Network firewall, Windows Backup for Windows 7 machines: (Just comment or uncomment both the Hold__ = True lines below)
    Note: this only un-checks the boxes
    Option Explicit
    Dim WshShell:Set WshShell=CreateObject("Wscript.Shell")
    On Error Resume Next
    Dim HoldReg, HoldProblem, HoldWindowsUpdate, HoldSpyware, HoldInternet, HoldUAC, HoldFirewall, HoldVirus, HoldBackup, HoldCheckUpdates, HoldTroubleshooting
    HoldProblem = False
    HoldWindowsUpdate = False
    HoldSpyware = False
    HoldInternet = False
    HoldUAC = False
    HoldFirewall = False
    HoldVirus = False
    HoldBackup = False
    HoldCheckUpdates = False
    HoldTroubleshooting = False
    Err.Clear()
    'Windows Update
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
    If Err <> 0 Then
        HoldWindowsUpdate = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldWindowsUpdate = True
    End If
    Err.Clear()
    'Spyware
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
    If Err <> 0 Then
    '    HoldSpyware = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldSpyware = True
    End If
    Err.Clear()
    'Internet
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
    If Err <> 0 Then
    '    HoldInternet = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldInternet = True
    End If
    Err.Clear()
    'UAC
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
    If Err <> 0 Then
    '    HoldUAC = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldUAC = True
    End If
    Err.Clear()
    'Firewall
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
    If Err <> 0 Then
        HoldFirewall = True
    ElseIf uBound(HoldReg) < 220 Then
        HoldFirewall = True
    End If
    Err.Clear()
    'Virus
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldVirus = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldVirus = True
    End If
    Err.Clear()
    'Windows Backup
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
    If Err <> 0 Then
        HoldBackup = True
    ElseIf uBound(HoldReg) < 100 Then
        HoldBackup = True
    End If
    Err.Clear()
    'Check for updates
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
    If Err <> 0 Then
    '    HoldCheckUpdates = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldCheckUpdates = True
    End If
    Err.Clear()
    'Troubleshooting
    HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
    If Err <> 0 Then
    '    HoldTroubleshooting = True
    ElseIf uBound(HoldReg) < 100 Then
    '    HoldTroubleshooting = True
    End If
    Err.Clear()
    If HoldWindowsUpdate+HoldSpyware+HoldInternet+HoldUAC+HoldFirewall+HoldVirus+HoldBackup+HoldCheckUpdates+HoldTroubleshooting <> 0 Then
        WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
        Wscript.Sleep 1000
        WshShell.SendKeys("+{TAB}") 'shift-tab
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("+{TAB}")
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys("{TAB}")
        If HoldWindowsUpdate Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldSpyware Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldInternet Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldUAC Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldFirewall Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldVirus Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldBackup Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldCheckUpdates Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        If HoldTroubleshooting Then
            WshShell.SendKeys(" ")
        End If
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        WshShell.SendKeys("{TAB}")
        Wscript.Sleep 500
        WshShell.SendKeys("{ENTER}")
        Wscript.Sleep 500
        WshShell.SendKeys "%{F4}" 'alt-f4
        If HoldWindowsUpdate Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.103\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Windows Update"
                HoldProblem = True
            End If
        End If
        If HoldSpyware Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.102\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Spyware"
                HoldProblem = True
            End If
        End If
        If HoldInternet Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.104\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Internet"
                HoldProblem = True
            End If
        End If
        If HoldUAC Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{C8E6F269-B90A-4053-A3BE-499AFCEC98C4}.check.0\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Firewall"
                HoldProblem = True
            End If
        End If
        If HoldFirewall Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.101\CheckSetting")
            If uBound(HoldReg) < 220 Then
                MsgBox "Problem unchecking Virus"
                HoldProblem = True
            End If
        End If
        If HoldVirus Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{E8433B72-5842-4d43-8645-BC2C35960837}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldBackup Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{01979c6a-42fa-414c-b8aa-eee2c8202018}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Backup"
                HoldProblem = True
            End If
        End If
        If HoldCheckUpdates Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{945a8954-c147-4acd-923f-40c45405a658}.check.42\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Check Updates"
                HoldCheckUpdates = True
            End If
        End If
        If HoldTroubleshooting Then
            HoldReg = WshShell.RegRead ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Action Center\Checks\{A5268B8E-7DB5-465b-BAB7-BDCDA39A394A}.check.100\CheckSetting")
            If uBound(HoldReg) < 100 Then
                MsgBox "Problem unchecking Troubleshooting"
                HoldProblem = True
            End If
        End If
        If HoldProblem Then
            Wscript.Sleep 1000
            WshShell.run "rundll32.exe shell32.dll,Control_RunDLL wscui.cpl", 1
            Wscript.Sleep 1000
            WshShell.SendKeys("+{TAB}") 'shift-tab
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("+{TAB}")
            WshShell.SendKeys("{ENTER}")
            MsgBox "Please select options manually"
        Else
            MsgBox "Done"
        End If
    Else
        MsgBox "No changes made"
    End If
    Set WshShell = Nothing

  • How can you turn off notifications for app store?

    Each time I  go to a forum site, it tells me there is an app for Tapatalk for the site to chat with.  If I click on cancel, it continues to pop up each time I try to respond on the forum.  If I click on OK, it takes me to the app store to buy the app for Tapatalk, which I do not want.  How do I turn off this notification that keeps popping up?  I do not see anyway to do this in the settings.

    I hate that too.   What you are seeing is a 'feature' of the forum's website.   They want you to down load their app.  It's not coming from apple, but the website.

  • How can i turn off apps for using cellular data??????

    I. Having a problem of turning off apps from using my data. Whenever  i close it, all the apps just automatically activate them when i go back to my home screen or i go to another page. Can anybody give me a solution??? Thanks in advance!!!! >&lt;

    Yes i did that, but when i went back to my home screen all the applications that i've choose to not using data just automatically activate themselves.... ><

  • How can I turn off sound for a single application?

    So I'm playing iTunes while browsing the web. I come to a webpage with some really annoying Macromdia Flash content. Lots of noise. I'd like to turn the sound off for my browser (Firefox) without turning off iTunes. Similar problem occurs when I'm playing games ... I'd sometimes like to be able to play my own music instead of the game soundtrack. So I'd like to be able to tell the game to be silent without turning the sound of my Mac off completely.
    On my Windows XP machine, whatever application currently has control of the sound is the only one that can make noise. On the Mac the sounds layer together. That's much better in the case of, for example, e-mail app signaling that new mail has arrived. But it is really annoying for the two cases I mentioned above.
    Is there any way in the MacOSX operating system to control the volume for a particular application? Is there any other sound control software that folks know about that I should consider acquiring?

    Kinda funny... I found this article while searching for an answer to my question:
    http://docs.info.apple.com/article.html?artnum=93610
    At the very end of the article, it mentions the "bug" that only one app on Windows can play direct sound at a time. That's exactly the "feature" I'm looking for on the Mac. Funny how one person's bug is another's feature.

  • How can I turn off push for sent items in an Exchange account?

    I have an Exchange account set up in iOS8.3.  I would like to set the sent folder to fetch rather than push.  And while I can go into my list of pushed mailboxes and uncheck the Sent folder, the change does not stick and goes right back to push when I go back into the settings.  This was not the case in iOS7.  I was just wondering if this was a bug in iOS8 or if this behavior is by design.  I already checked with my Exchange admins, and they stated that there is no policy preventing users from setting push and fetch as they please.  Thanks!

    But why turn off battery charging, makes no sense in this case. You either run off the battery or plug it in and run off the battery while it is charging.
    The power draw won't change appreciably.
    My bad power consumption will change
    It would seem the best strategy would be to get on with a fully charged battery plug in the laptop and let it trickle charge as you use it. Given the length of the flight this should give you the longest use with the minimum amount of draw from the seat outlet.

  • How can I turn off notifications for parental control time limits?

    Tears of frustration from my two boys every night as their parentally controlled hour of Minecraft is spoiled by the countdown warnings which HAVE to be clicked -  amounting to fatal hesitation in their game in progress.
    Can these time notifications be made passive - or turned off completely?
    Ideas for a workaround?

    i dont know about whatsapp or other 3rd party apps 0 they may have setting options to do what you want - but for text messages and Facebook posts you can go to Settings/Sounds and set the sound for those 2 things to None

  • How can I turn off ring for notifications e.g. messages but not for calls?

    Simple question:
    Is there a combination of settings where I can turn off sounds and vibrate for notifications e.g. whatsapp, facebook but still have it vibrate for calls.
    E.g. if its in my pocket I'd prefer not to keep getting vibrations, but it would be necessary to know if someone is calling
    Thanks

    i dont know about whatsapp or other 3rd party apps 0 they may have setting options to do what you want - but for text messages and Facebook posts you can go to Settings/Sounds and set the sound for those 2 things to None

  • How can I turn off admin for Guest?

    I am the administrator and was using the guest user for my job. I was looking at to settings and saw one to use as administrator and lost all my info in guest. I just want to reset the guest user back to where it was before I stupidly played with settings. Please help.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state '''while saving your essential information'''.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Can you turn off notification for emails

    How can you turn off notification for email but leave it on for text?

    Suds57  Thanks for posting, made me look a little deeper because I kept looking in general settings not specific app settings.  Appreciate both of the responses to this!

  • How can I turn off the Ipod 5g speaker so it just plays through the headphones?

    How can I turn off the Ipod 5g speaker so that it just plays through the headphones?

    First make sure your headphones are plugged all the way in, meaning no silver from the headphones plug can still be seen.
    If that's not the issue, try a hard reset of the Nano.  To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • How can I turn off the sounds of the firefox? I don't want to turn off my whole computer sounds, but just the sounds which comes from the internet. Is there any master button?

    All the websites doesn't allow you to turn off the sounds, but that is just the thing I need to do. So how can I turn off the web browsers sounds? This is so small thing, that I refuse to believe that this kind of button doesn't exits.

    In Vista you can set the volume and mute setting for each application separately in the volume mixer.
    You can click the Volume icon on the Windows Taskbar near the clock and click the Mixer link at the bottom to open the mixer.<br />
    You can adjust the volume level for each application in that window.<br />
    You will only see the Firefox program in the Mixer if you are on a website that plays sound.

  • HT3529 I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    Hey there fwhitson,
    It sounds like you no longer have your phone but need to unlink your phone number from the iMessages service. According to this article, this is what you do:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Note: If you no longer have access to the iPhone that is using the number you want to remove, reset your Apple ID password.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • HT5362 How do I turn off notifications for Software Updates? 'App Store' doesn't show in the list of notification apps. I want the background checks for updates, just not the notifications.

    How do I turn off notifications for Software Updates?
    In the 'Notifications' section of the 'System Preferences' app, there is no tab for managing the notifications of System Updates nor App Store.
    Hey--- I like auto-checking for updates, and hey--- I like auto-downloading them in the background.
    BUT I do not like being notified of updates in the middle of working! Especially when it's iTunes updates. Grrrr.
    Any chance this is easy and I just missed it?
    THANKS COMMUNITY!

    Settings > Notification Center > Mail > Select the mail account (if more than one) > Alert Sound > None

Maybe you are looking for

  • Error when filling the setup table

    Hi,     When i try to load the setup table,it is giving the error like "No Extract structure active or no bw Connected" .So can anyone suggest me to solve this problem. regards, meiy

  • Material Usuage by Vendor..

    Dear Friends, Our Client need a report, that contains the material consumption value for a year, with vendor details (how much value of that material delivered and also how much the vendor got paid - the total sum value for that year). Is there any r

  • Extended desktop ... HELP!

    Do you only get the "extend desktop" option in the preferences window if proper card is "already" installed? I have a 856(?)mhz G4 running 10.2.2. I am going to install the card from a different mac that I had an extended desktop in for video editing

  • Last() not returning correct value within for-each-group

    I've found inconsistent results between JDeveloper and SOA Suite using the xslt 2.0 for-each-group construct. <xsl:for-each-group select="Po/PoLine" group-by="itemId"> <xsl:if test="position()=1"> <GroupCount> <xsl:value-of select="last()"/> </GroupC

  • NEW iPHONE...WOULD YOU EXPECT

    Expect updates, fixes, security updates, compatibility problems, and gremlin problems like with any new hi tech computer/phone/camera/software technology as past new releases have taught us, so be patience. I would imagine everyone who purchases an i