How can I turn off messages on iPad while students are at school

Is there any great way to turn off messages on the ipad without shutting down the ports required to connect to Apple on the firewall? Kids will be kids but teachers are pressing administration for solution. If you shut off messages, I may be mistaken but you can't restrict the kid from turning it back on correct?

If you own/control the iPads that run iOS 6, you can turn off Messages via Apple Configurator or an MDM solution and the students would, to the best of my knowledge, not be able to turn that back on without knowing the Restrictions passcode. For personally owned iPads, the only way to block Messages would be to block the ports at your router. Messages uses port 5222, so if you block that port, that should block the transmission of messages, though the students will still try. For more information on ports, see:
http://support.apple.com/kb/HT4245
Of course if the student has a cell connection on a personally-owned device, there won't be any way you can block the sending of messages at all.
Regards.

Similar Messages

  • I am using earphones, but the external audio of my mini ipad is still on. How can I turn off the external audio while listening with my headset?

    I am using earphones, but the external audio of my mini ipad is still on. How can I turn off the external audio while listening with my headset/earphones?

    Other than iMovie, GB always incorporates the audio files into the GB package. So just save or move the GB project to the external drive, and you're done - anything you import, edit or record will be saved to the external drive.

  • How can I turn off "find my ipad" to restore to factory settings if screen is not working?

    How can I turn off "Find My iPad" to restore to factory settings if screen is not working?  I can't get access to the apps on my mini pad.  I can see the device when I'm in iTunes.

    Try resetting the iPad by holding the home and power keys down until the Apple logo appears.
    Barry

  • HT1414 How can I turn off 'Find my IPad in settings if nothing is appearing on the screen ie cant navigate to Settings on the Ipad

    How can I turn off 'Find my IPad in settings if nothing is appearing on the screen ie cant navigate to Settings on the Ipad

    Hi Jim
    Thanks, held down the buttons and the apple logo appears in a flash, then nothing. Screen goes black.
    I am trying to restore the ipad through itunes, but it keeps telling me to turn off the find my ipad.
    Any other suggestions please??

  • How can i turn off Find My iPad without using the iPad?

    My swipe screen has stopped working completely on my iPad. Very disappointing as it is only 18 months old and has been well looked after! I have tried holding down the off/on button and menu button to reboot but this doesn't work. I have now logged the fault with Apple and have an appointment to see someone in the support team this Monday. However, I wanted to try one more thing. I want to restore to factory settings as I've read that this could resolve the problem. When I plug it in to iTunes and try to restore iPad i get a warning message telling me I need to go to iCloud settings on my iPad and turn off Find My iPad before restoring. As I cannot use the iPad I cant do it from there. Is there another way? Please help me, I want to weep!

    FORCE IPAD INTO RECOVERY MODE (this will disable Find My iPhone)
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • 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 I turn off Voiceover on iPad air 2?

    My iPad Air 2 (OS 8.1.3 ) will not allow me to turn off the Voiceover feature in Accessibility. When I tap the toggle button it slides to off position and then turns itself back on immediately. I have tried a settings reset and it stayed selected. This didn't happen with my previous OS version.
    Thanks,
    Sherry

    You're welcome, glad to hear you gpt your iPad sorted out. If you had a black screen while in VoiceOver thats called screen curtain. Triple tap the screen with three fingers to turn screen curtain off. Hopefully now that you restored your iPad you won't be needing to turn screen curtain or Voice Over off again.

  • How can I turn off the Pinch feature while in IE Browser yet continue to use the writing feature

    I found that I can use a stylus pen while in a browser with my HP TouchSmart 300.  It works flawlessly to write however when I rest my hand on the screen (to write)  it recognizes my hand as one point and the stylus pen as the other and the pinch feature makes my screen big or small.  If I could turn off the pinch feature yet leave the writing feature on, all would be perfect.  Can anyone help, please

    It's not possible, it doesn't use pressure on the screen to sense your stylus or hand, it uses the sensor array around the screen.

  • How can I turn off message sound at night?

    I have turned on notification sounds for arriving Mail messages using Rules. 
    This works fine, except that I would like to silence it at night since the sounds actually
    interrupt my sleep.
    I can do this on my Google smartphone.  Why can't I find a way to silence the notifications
    at some clock interval?
    I have looked in the Sound panel of System Preferences too, but haven't found a way to declare a silent period..
    Anyone know how to do this?

    I neglected to make it clear in my original post that this problem occurs on an iMac running MacOS 10.7.5.
    I saw similar threads referring to the iPhone,  but this is a MacOS question..

  • HT1689 How can I turn off my iTunes account on an iPad

    How can I turn off my apple I'd on an iPad?

    Sam's answer is correct, but WHY would you want to not be connected to the Store, or Facetime, or Messages, or anything which makes the iPad such a great device?

  • How can I turn off other languages on my ipad running ios7?  It has Japanese or Chinese and the international keyboard is set to English.  Thank you.

    How can I turn off other languages on my ipad the next generation running ios7?  I have the international language set to English but it's showing a foreign language and sometimes it shows the foreign language with English.  Thank you.

    The complete backup and restore procedure is explained in the link above.
    If you don't want to do a restore, then your iPad may remain in the unstable state you have for the moment.
    You can change the country in the App Store. Have a look at the bottom of the App Store screen, you can change the country and also do the permanent change via Manage > Account.
    You can change the language in iTunes via General Preferences > under General tab.

  • How can I turn off autocorrect in the spelling function of notepad on the iPad?

    How can I turn off autocorrect spelling function on the iPad 2 when using the notepad app?

    This will turn off all auto-correct. Go to Settings>General>Keyboard>Auto-Correct. Hope this helps.

  • How can I turn off text messages from my iPod touch

    How can I turn off text messages from my iPod touch

    Go to Settings>Messages and turn off.

  • How can I turn off the option in my message settings so that others can not tell that I have read there texts? Please HELP

    How can I turn off the option in my message settings so that others can't tell that I have read there message I have an iphone4 updated to the 6ios

    Set Settings->Messages->Send Read Receipts to Off.

  • How can I turn off the home screen preview of SMS/text messages on 3GS

    How can I turn off the home screen preview of SMS/text messages on my new Iphone 3GS ?

    Go to Settings>Messages and choose "No" under "Show Preview" which will hide the text part of the SMS/text message but still will pop up on who its from and just says "text message" on it.
    Other than this there is not a complete way to disable the notification.

Maybe you are looking for

  • SMB issue in 10.9.2 Server

    Hey everyone, Hopefully I can get some help or at least someone else can recognize the issue at hand. We recently upgrade our Mac Mini Server to 10.9.2 and are having major SMB issues. It's hard to specifically tell but it seems like when we hit a ma

  • My iPad screen became green & noisy occasionally

    I brought my iPad 64GB form US apple store last month during my business trip. After 5-6 weeks usage, my screen became green & noisy occasionally. Now i am back to Taiwan Taipei, and can't find local service here. http://www.flickr.com/photos/pipiche

  • How can I reduce total time after deleting a transition

    Hello there ! I recently made a quite long 1:51 minute animation with rather complex timeline. Now, It happened that I want to delete some middle animations (at 0:18 or something)  and reduce the overall video time. I am finding myself at totally los

  • How to find the host name of a client?

    Iam doing a project in grid computing. I have developed a client-server program. In that program I have to get the host name of the connected client. Can anyone tell me the code to do that?

  • Sorting large amounts of data with treemap

    Hello. Im doing a project where I have to sort a large amount of data. The data is formed by a unique number and a location (a string). Something like this NUMBER .... CITY 1000123 BOSTON 1045333 HOUSTON 5234222 PARIS 2343345 PARIS 6234332 SEATTLE I