How to turn-off automatically the wifi of time capsule

Hello I have a new Time Capsule for fews weeks and I would like to turn off the wifi automatically during nigth.Is it possible ? How can I do that ?
Thanks for yourhelp

mserfaty wrote:
I heard about potential wifi danger. Are you sure that when there is no client, the wifi stops difusing the signal ?
You are reading the normal sort of rubbish that flat earthers produce against every new technology.
I don't want to start a new thread about this.. but wifi produces so little signal when it is transmitting that cosmic rays will far exceed your exposure.. so are you going to go and live in a cave??
The signal from the TC when there is no actual data transfer is merely polling. It will do you no harm.. nor will full 100% transmission.. except in the flat earthers view.

Similar Messages

  • How to turn off automatic backups in logic 8?

    How to turn off automatic backups in logic 8?
    there was the option to turn off auto backups in v.7.
    can't find it in 8...
    thanks for help!

    This option has been removed.

  • How to turn off automatic correction on text message?

    How to turn off automatic correction on text message?

    At this time I don't think there is a way to turn it off. the software will learn new words and shortcuts you use when typing as you go. To do this type in the word/phrase and then hit the x when the suggested word pops up or tap on the word to keep what you have. Then hit the space bar and type away, it should have added that word to its dictionary and if you type it again it shouldn't offer up a new word instead.

  • How to turn off all the layers in one go?

    How to turn off all the layers in one go?
    In case the pdf file contains layers, then how to turn them all off in one go?
    Thank you for the help,
    Best
    Jamal

    able,
    What happens if you select both the grunge and the image and in the Transparency flyout tick Make Opacity Mask? You may try different ticking/unticking and colours.

  • I have used Airport Time Capsule with my iMac for several years. I recently purchased a MacBook Air and when it tried to backup to Time Capsule it couldn't because Time Capsule is full. How can I now use the 3TB Airport Time Capsule to back up both?

    I have used Airport Time Capsule with my iMac for a couple years. I recently purchased a MacBook Air and when it tried to backup to Time Capsule it couldn't because Time Capsule is full. How can I now use the 3TB Airport Time Capsule to back up both the iMac and MacBook Air? I don't mind losing earlier backups. I have excluded some items from backing up, but since the Airport Time Capsule is full, I can't even begin to back up the MacBook Air.

    On your Mac.......
    Open Finder > Applications > Utilities > AirPort Utility
    Click on the Time Capsule icon, then click Edit in the smaller window that appears
    Click on the Disks tab at the top of the window
    Click Erase Disk
    On the next window that appears, select the Quick Erase option, then click Erase
    The operation will only take a few minutes.
    Now you are ready to start new backups of both Macs.  Back up one Mac first, then back up the other.  Do not try to back up both Macs as the same time.

  • I connected my Canon printer to time capsule, and can print OK. However, I can't get the printer scanner to work. How do you set up the scanner with Time Capsule?

    I connected my Canon printer to time capsule, and can print OK. However, I can't get the printer scanner to work. How do you set up the scanner with Time Capsule?

    You cannot use USB. It has to be a network capable printer.. is it?? You did not indicate how it is connected.. but by wireless or ethernet then scanning is possible otherwise not.

  • How to turn off automatic variable code suggest for a single page?

    Does anyone know how to turn off the code assist feature where CFBuilder tries to assist you by listing all the variables on the page?  I have a CFC with over 3000 lines and it causes CFBuilder to hang/freeze like you wouldn't believe.  I'd like to turn off this feature for large files (or at least see if I can tune the feature to be smarter about what variables it suggests).
    Does anyone know how to disable this feature on a specific template or turn this feature off altogether?  Note: I do want to keep the tag attribute suggestion if possible.

    Update: I tried using CFBuilder as a plugin for Eclipse (64 bit) and then followed the steps here: CFBuilder 2 Performance Problems on Windows 7 64-bit Solved » websolete.
    So far I have experienced noticeably faster response times. However, the program still hangs when trying to suggest variable names.  It would be great if there was a way just to disable that feature until Adobe fixes it.

  • How to turn off automatic numbering in Pages

    I recently had a problem getting rid of automatic numbering within Pages.
    I keyed in a numbered heading (eg, "1. H1") and then hit return, when it gave me another numbered heading ("2. H2") on the next line, which I didn't want.
    The easiest way to get round this is to hit the return key on the automatically numbered line (eg, "2. H2"), which removes the "2" and puts you to the start of the line. This seems to tell Pages that you don't want automatic numbering, at least for the time being. Perhaps until you key another numbered heading...
    To turn off automatic numbering on an individual line you can press the "i" button at the top and select "None". That will remove the number.

    The View menu does what it says:
    Menu > View > Hide Invisibles
    Peter
    btw You turned it on when you hit command shift i, do it again and it turns it off.

  • How can i switch my att wifi with time capsule

    how can i switch my att wifi with time capsule

    Sorry I have no idea what you mean.. switch off, switch on, swap over.
    Bridge the TC and use same ssid (wireless name), security but different channels..
    Or just turn it off.
    Please write a question that is a sentence and has sense.

  • How to turn off automaticly zoom-in

    Hi,
    I have the IPhone 5s and whenever I try to take a video it automaticly zoom-in and I'm asking you how to turn it off, and when I'm changing my background to a picture I got from the internet It seems to be too big so the whole picture can't fit in the phone screen. Please help me

    I have the same problem as ma2thempel, is there a solution/work-around since this was raised a year ago? Running gpupdate /force doesnt do anything. I should have stayed with Windows 8.0

  • How to turn off automatically JOptionPane

    Hi all.
    I am making a Swing project with automatical logout function.
    But i met a problem and now i can not solve this.
    When my application are runng and having JOptionPane are showing, This component only turn off when we click on it.
    Now i want to turn off it automatically, how to solve ?
    Thanks in advance
    Diego

    Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class TimeoutDialog {
      JFrame frame;
      JDialog dialog;
      Timer timer = new Timer(2000, new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
          dialog.setVisible(false);
          timer.stop();
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new TimeoutDialog().makeUI();
      public void makeUI() {
        JButton button = new JButton("Click");
        button.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            makeDialog();
        frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.setLocationRelativeTo(null);
        frame.add(button, BorderLayout.SOUTH);
        frame.setVisible(true);
      private void makeDialog() {
        JOptionPane optionPane = new JOptionPane("Eggs are not supposed to be green.",
                JOptionPane.INFORMATION_MESSAGE);
        dialog = optionPane.createDialog("Inane custom dialog");
        timer.start();
        dialog.setVisible(true);
    }db

  • How to turn off automatic photo sorting in camera roll?

    Hi,
    I was wondering if there was a way to turn off the automatic sorting of pictures added to the camera roll? My problem is that I hardly take any pictures of my own using my ipad; instead I like to save funny pictures/memes, screen shots, fan art, etc I find on the internet. I have a ton of those kinds of pictures but the camera roll sorting feature makes it extremely hard to find pics that I JUST added because it sorts them by the date THEY WERE MADE. This is a huge problem because some of those memes are extremely old and I have no idea when they were made, so I end up having to search through hundreds of my pictures by month, years, etc just to find the one I recently added. Is there a way to turn this off so that the photos are just in the order of when YOU YOURSELF added them to your camera roll? For example, in the old version all of my newly added pics would be the very last picture at the bottom of the whole group.   
    I apologize if there is an easy fix to this problem, but I have not been able to locate one if there is.
    I have an iPad 2 and the newest version of ios 7 installed.
    Thanks

    One solution is to take a screen shot of the photo. That should make it last in line.
    Another solution. Make a new album. Transfer the photos to the new album. Then change the photo order, by tapping select, hold your finger on the photo, move it, tap done.

  • Why does the "set automatically" button keep turning off in the my date & time area of my settings? When it is off I can not use facetime or imessages.keep during off on my iPad?

    I wasn't able to use FaceTime or iMessages and found out it was because the "set auomatically" button was off under date & time in the settings area.  Why does tha button turn off?

    I wouldn't suggest going to get it yourself. You could find yourself in a situation you cannot get out of and could get hurt. Second, as stated before, it is more for misplaced or lost devices, not stolen devices. Many police agencies do not feel they have probable cause, just from your statement on a map location to justify attempts to recover the device. There have been many posts from others who have had devices stolen where the police will not confront someone based on that map location. I understand you are impacted by the theft, but this is what we have insurance for. To protect your content, from now on I suggest you put a passcode on the device. I hope you have changed all of the passwords for accounts you had on the device, since all of your content and data was accessible to the thief.

  • Hi, is it possible to turn off wi-fi of my time capsule?

    Hi, I read an article that wifi electro-magnetic emission may be dangerous for children's health. Therefore I would like to use wired connection and turn off the wireless feature of my time capsule. Please let me know if it is possible and how I can do it.
    Still I would like to use the time capsule as a wired router and backup storage facility for my desctop.
    One additional question - if it is not going to be possible to turn off the wi-fi, is there another alternative to turn off the time capsule reather than disconnecting it from the socket? Is there an alternative power cord with turn on/turn off switch? Any ideas?
    Regards,
    aldo7

    Hi, I read an article that wifi electro-magnetic emission may be dangerous for children's health.
    There will always be a silly article about anything... if you read it.
    I can understand your concern, but Pastenague already pretty much summed up most of what I was going to say. BTW, I would not be surprised if that author is the kind of hypocrite who goes out in the sun all day, or hangs out in cigarette smoke filled rooms.
    Electromagnetic waves are everywhere, man-made and environmental. After well over a decade of testing, it's never been proven ... all these 'scare claims' that tend to hit the media. I still remember what started it all, back when someone was diagnosed with cancer after shortly getting a cell phone, and he heard about someone else who had cancer and also had used a cellphone.
    OMG... Therefore, cellphones MUST cause cancer, and the electromagentic waves are carcinogens!
    They're still trying to prove that.
    There are far more things to worry about health wise, than the EMFs.
    BTW, in regards to that author, I have my own article to submit to them. And I can even back mine up with facts:
    A study has shown that given a long-enough time-line, EVERYONE who drinks water in their life, eventually dies.
    Another study has shown, that 100% of people who currently are diagnosed with cancer, have drank at least 1 cup of water in thier life-time.
    Another alarming fact has been raised recently, that the harmful effects of water is not just restricted to humans. For example, a study of deceased adult cows at various farms, has shown that there was water-content in all their carcasses.
    There is a strong lesson to be learned here. Stay way from water or any product bearing H2O at all costs!

  • Toolbox - how to turn off automatic backup warning?

    How can I stop to toolbox from warning me that my automatic backups are not turned on?  I prefer to backup when I need to.
    Thanks.
    Michael
    Moderator Note: Edited subject to match content.

    there should be an "ignore" button you can click on. I had the same issue

Maybe you are looking for

  • Problem with SAP logon by VBA

    Hi, I'm new in the community and I'm also new with SAP, so sorry for any errors. For my work I need to open SAP by excel (VBA); and I have found the code below but it don't work. Sub Work() Set app = CreateObject("Sapgui.ScriptingCtrl.1") Set Connect

  • Associate old keyword tag (name) to a face in PSE 8.0?

    I have been using PSE 5 for a while, and am considering the upgrade to 8 . In the trial version, I saw a nice face recognition engine, with labeling capabilities. My question is, how to associate the names of people, that I have already labeled in th

  • How do you get the disc tray to open when ther is a software boot up problem?

    I just downloaded Motion 5 software and it froze my screen. I panic and pressed the power button for a foced shut down. Now my computer boots up to a blank blue screen. Prior to this I made some system prefrence chages to the desk top.Don't remeber w

  • SLD Track SC's Location in System information doesn't change

    Hi ,All: i have done job according to <NWDI Cookbook for XSS Customers Modification guide for XSS> But when configuring the track with the J2EE Engine fields, the system information isn't updated (SAP_MSS component doesn't has a new Location,eg "SLD_

  • Error Message...No CLue

    when i try to cpmile i have to use the ocmmand java c, as opposed to javac. Then when i actually run the compiler it says "Exception in thread "main" java.lang.NoClassDefFoundError: c" can anyone help?