Can I set a schedule for use of the internet with this router?

can I set a schedule the internet?

The Airport Express is not a router
The AirPort Express is most certainly a wireless router, capable of 10 wireless connections. See the lit and specifications for more details on this router.
AirPort Express
In addition, using the Timed Access feature on the Express, it is possible to establish daily time limits for all devices that will connect to the network.
This can be done globally for all devices, or individual time limits can be established for each separate device that connects through the AirPort Express.

Similar Messages

  • I want to buy an iPad for my children for Christmas. Will they be able to play games and get on the Internet with this? Also, will they automatically be able to get on the Internet or will I have to purchase some kind of package?

    I want to buy an iPad for my children for Christmas. Will they be able to play games and get on the Internet with this? Also, will they automatically be able to get on the Internet or will I have to purchase some kind of package?

    Yes, they can play games - there are hundreds if not thousands of games available in the iTunes Store. Beware of the "free" games; many are free for the base game but charge for things like additional levels, "coins" etc. and those paid add-ons can add up quickly, to dozens or even in some cases hundreds of dollars. I'd strongly suggest you set up restrictions on the iPad to prevent your children from making unauthorized purchases. See:
    http://ipod.about.com/od/iphonehowtos/ht/Using-Iphone-Content-Restrictions.htm
    You will need an Internet provider of some sort; Apple is not a provider and so the iPad does not include a data service. You can either use a home Internet connection with a WiFi access point (aka "router") or you can get an iPad with WiFi+Cellular and sign up for a data plan with a cell carrier. WiFi through a home Internet service will probably be cheaper.
    Regards.

  • Can I control a network of Macs across the internet with ARD?

    Hi,
    Can I control a network of Macs across the internet with ARD?
    I seem to only be able to control one mac at a time. Am I missing something?
    Thanks
    Matt

    To be able to connect to a workstation from outside it's network, the ports that ARD uses must be open on both ends of the connection. ARD uses ports 3283 and 5900 so those must be open.
    If your workstations get their addresses from an NAT device rather than being "real", the ports also need to be forwarded in the router to the workstation's internal IP address. ARD uses port 3283 for the reporting and updating function, so if your Macs are getting their IP addresses through NAT, since you can only forward a port to a single workstation, you can only get reports, push package/files to etc. for a single workstation.
    ARD uses the VNC protocol for observation and control, though, and there are a range of IP addresses for that protocol, starting with 5900. ARD uses 5900 by default, so that port would be forwarded to the first workstation. You would, I believe, need to install VNC servers on the systems (since the ARD client cannot listen on any port other than 5900 while VNC servers can be set for other ports such as 5901, 5902, etc. You would then forward 5901 to the second workstation (and on to 5902, 5903, etc.). You can then use the following information:
    Remote Desktop: How to specify a port number for a VNC client
    to connect.
    The only other options are: 1) to run the ARD administrator on a workstation on the network, and then take control of that system from outside, either via VNC or another copy of ARD, or 2) set up a virtual private network (VPN) so that when you connect from outside, your admin system is officially part of the local network.
    Hope this helps.

  • How can I set a path for a new AD-User in this Switch example?

    Hi,
    I am nearing the end of my script that creates a new ad user, adds them to a set of groups, and moves them to their correct ou.
    The problem I have is that I cant work out how to move them to the OU.
    eg.
    Step 1. In my function I have completed the part that creates the user, and I have used the -passthru parameter to return the new user object into a variable called $obj.  
    Step 2. I have created a switch that accepts a department variable, and adds the user to the corresponding groups.
    Step 3. Finally I want the user to be created in an OU that is relevant to their job role. If possible in the same switch as above.
    Here is the switch :
    Switch($dept)
    Finance {$FinanceGroups = @("Finance","Users");ForEach($group in $FinanceGroups){Add-ADGroupMember -Identity $group -Members $Obj}}
    Sales {$SalesGroups = @("Sales","Users");ForEach($group in $SalesGroups){Add-ADGroupMember -Identity $group -Members $Obj}}
    Support {$SupportGroups = @("Support","Users");ForEach($group in $SupportGroups){Add-ADGroupMember -Identity $group -Members $Obj}}
    I was trying to do it like this.
    Finance{$FinanceGroups=@("Finance","VPN_Users");ForEach($groupin$FinanceGroups){Add-ADGroupMember-Identity$group-Members$Obj}{$Obj.Path ="OU=Staff,OU=Accounts,OU=Resources,DC=homenet,DC=com"}}
    But it doesn't seem to work, and I think the problem could be that the new user object returned by the -passthru parameter is read only. So I can't set it's parameters.
    Can you think of a way to do it?
    Thanks

    I would re-write this function as follows:
    Function New-User {
    [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact='High')]
    Param(
    [Parameter(Mandatory=$true,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=0)]
    [String]$fname,
    [Parameter(Mandatory=$true,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=1)]
    [String]$sname,
    [Parameter(Mandatory=$true,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=2)]
    [ValidateSet("Milan","London","tokyo")]
    [String]$site,
    [Parameter(Mandatory=$true,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=3)]
    [ValidateSet("Finance","Sales","Support")]
    [String]$dept,
    [Parameter(Mandatory=$false,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=4)]
    [String]$baseOU = "OU=Accounts,OU=Resources,DC=homenet,DC=com",
    [Parameter(Mandatory=$false,
    ValueFromPipeLine=$true,
    ValueFromPipeLineByPropertyName=$true,
    Position=5)]
    [String]$tempPass = "Temp-pass1"
    Write-Verbose "Creating user '$fname $sname' in OU 'OU=$dept,$baseOU'"
    $objUser = New-ADUser -name "$fname $sname" `
    -GivenName $fname `
    -Surname $sname `
    -DisplayName "$fname $sname" `
    -SamAccountName "$fname.$sname" `
    -AccountPassword ($tempPass | ConvertTo-SecureString -AsPlainText -Force ) `
    -ChangePasswordAtLogon:$true `
    -Path "OU=$dept,$baseOU" `
    -PassThru
    $Groups = @("All_$site","Users","$dept")
    Write-Verbose "Adding user '$fname $sname' to groups '$($Groups -join ', ')'"
    $Groups | % { Add-ADGroupMember -Identity $_ -Members $objUser.DistinguishedName }
    Write-Verbose "Enabling user account '$fname $sname'"
    Enable-ADAccount -Identity $objUser.DistinguishedName
    <#
    Examples
    New-User -fname "Sam" -sname "test" -site Milan -dept Finance -Verbose
    #>
    Notice:
    Function name: follows verb-noun format - best practice 
    $obj variable renamed to $objUser - using variable name that reflects its content
    Use of CmdLetBinding[] and confirm impact as high since you're writing to AD 
    Use of ValidationSet to minimize parameter input errors
    Parameterized baseOU, and TempPass
    Added requirement to change password at first logon
    Enabling the account at the end
    You should wrap each of the 3 steps in a try-catch block. Check for things like user already exists or not, group exists r not, OU exists or not..
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • Can i set an allowance for myself in the itunes store?

    i want to set monthly or weekly spending limits. for obvious reasons. can i set an allowance?

    An alternative is to buy prepaid iTunes Store cards. If you remove the credit card information from your iTunes Store account, you'd then be limited to the amount of balance from the cards.

  • Configure SNC for JavaGui to use in the Internet with Saprouter

    Hello,
          we want to configure SNC to use JavaGui in the Internet without SSO. Only use of encryption in communication between the frontend JavaGui and the backend WAS 640(ITS integrated) using saprouter in between.
    We are trying to configure it using SAP cryptographic library.
    Do we need any kind of certificate? Can it be done using only the PSE generated file?
    Does any one have any suggestions?
    Regards,
    Maria Serra

    Either your phone is getting on wifi or you're using the cellular network to access the internet. If it's wifi, then you just need to connect the iPad to the same wifi. If you're using the phone's cellular connection to access the net, then you'll either need to get a tethering plan to use your phone as a mobile hotspot for your iPad, or get a device like the Mifi, which is a portable cellular wifi hotspot

  • Is unlocked iphone 3gs a good choice for use in the UK with PAYG?

    I've never had a smartphone. I'm thinking of buying the unlocked iphone 3gs to use when I'm in the UK 2-3 (months a year). I would be using a pay as you go sim with a little data use included. All I need is the ability to call, text, email, blog, and check facebook. Would this phone be a good choice for me. I'm hearing that there are some problems with battery life on the iphone 4. Does the 3gs have those issues? Also what does the 's' stand for?
    Any helpful info apppreciated.
    Robertson

    This is the deal I'm looking at. As you can see it comes with the upated OS. $375. Is already a bit more than I would normally spend on a phone.
    iPhone 3GS 8GB Black — Unlocked
    Get all the features of iPhone 3GS (8GB1) in a phone that you can activate and use on the supported GSM wireless carrier of your choice.2
    If you don’t want a multiyear service contract or if you prefer to use a local carrier when traveling abroad, the unlocked iPhone 3GS is a great choice. It arrives without a SIM card, so you’ll need an active SIM card from any supported GSM carrier worldwide.
    Get iPhone 3GS for AT&T.
    iPhone 3GS starts at $0 when you sign up for a new two-year plan with AT&T.
    Learn more
    Learn more
    Enlarge images
    $375.00
    In Stock
    Free Shipping
    Add to Cart
    Gift package

  • I can't get my usb 720 to open the internet with windows 8.1 even though it says it's connected.

    I just down loaded my software for the vz usb 720 modem on a new windows 8.1 computer and it says it is connected but the internet won't come on. It says firewall settings my have to be changed (921) Has anyone had this problem and is there a software upgrade for windows 8.1 that I need to use, or is it so out of date it will not work with 8.1 at all?

        Morffun,
    I appreciate you reaching out. I do apologize, but that device is not compatible with Windows 8.1 software. If you wanted to explore other options for wireless broadband devices, we have plenty available. You can view them here: http://vz.to/YuBwCW.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • How can I set up iPad for use as a customer sales tool?

    I want to use my new iPad for personal and business. For my business I want to hand to a customer as a self-driven presentation on my business created In Keynote or some similar program. But I'd like to lock all personal content so the customer can only explore my business content and not access personal contacts, music, etc. Can this be done? Recommendations on apps and set-up are appreciated.

    Can't be done. All the customer has to do is press the home button and they're able to access all your apps.
    You either need different iPads for different purposes, or mount it in a display cabinet that blocks the home button.

  • After the last update my text became very small in all the games, FB and everything else I use via the Internet, is this a known problem or is there something I can do about it

    Everything is in small print and a different text, I have not done anything different to my computer so I assume that after the last update things have changed but it is not very satisfactory as I have to zoom on every page as there is no 'set text size' now available to me, it is virtually impossible to read the FB page or the Zynga games.

    Hi Hoddy,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You might want to look into some of the [[Accessibility]] options. There is lots of good information in that article.
    Hopefully this helps!

  • ICal server set auto schedule for users

    Does anyone know how or if it's possible to set the auto accept state for a user?
    Using calendarservermanageprincipals you can do it for locations for example and you can --get-auto-schedule for a user, but when you try to --set-auto-schedule for a user it says it's not allowed. Anyone know of a workaround or if it's possible?
    --sysdev

    Nevermind, figured it out. you can manually edit the database these values are set in. /CalendarServer/Data/resourceinfo.sqlite

  • Can you set an alert for birthdays in Addressbook and iCal?

    When I migrated from Palm Calendar to iCal, my calendar had my birthdays in it repeating each year and with a 7 day alert so I could send a card or get a present in time.
    I see you can list a birthday in Addressbook and set the iCal pref to show them which is at first glance very cool and green but when I open the birthday event in iCal I don't see any way to set an alert which is a big limitation.
    If I can't set alerts, then the Addressbook/iCal birthday syncing is kind of pointless and limited, unless I'm missing how to set alerts.

    Hi Steven,
    This is one of the reasons why I wrote Dates to iCal.
    As well as automatically syncing birthday dates from Address Book, Dates to iCal can sync anniversary and custom dates. It can set up to five alarms for each date in iCal and can also set different alarms for birthdays and anniversaries.
    Best wishes
    John M
    <hr/>As I sell software on my site and ask for donations, the Apple Discussions Use Agreement requires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • How can I set a password for firefox so that everyone have to enter the password before executing firefox

    My younger sister executed my firefox just at this afternoon(she originally use IE), and she saw something that can't be seen. How can I set a password for firefox so that everyone have to enter the password before executing firefox?

    Also see this for an English version of Profile Password:
    *Profile Password: http://nic-nac-project.de/~kaosmos/profilepassword-en.html#PPF
    It is an extension to protect the profile with a password, but being an extension that protection can easily be bypassed by starting Firefox in [[Safe mode]].<br />
    So do not rely on it.<br />
    If you want to protect content then you have to use methods supported by the OS like a separate user account with a password or an encrypted file system.

  • How can i set a layout for MIGO screen

    Hello all,
    How can i set a layout for MIGO screen. & make that layout default. Like i want to drag Requistioner column next to quantity in MIgo screen. temporarily I can drag but is there a way to save as layout & save it.

    Hi
    First you arrange however you want and then go to table settings which is there in the right corner of the item details and create a variant and save.
    Find a button with blue yellow and white at the top end above the vertical drag bar when put the cursor it will show you as Configuration.
    After creating the variant tick the check box use as standard setting below the variant
    Hope it helps
    Edited by: Girish  Adaviswamy on Mar 3, 2010 1:27 PM

  • Can v set credit limit for a vendor? if so, how?

    can v set credit limit for a vendor? if so, how?

    Hello
    the two replies are correct that the redit limit is always used for customers. but i can give you the scenario as per the request and Amrita please correct me if i am making something wrong.
    as per vendors there are three to four vendors are available for buying a material. we are not using quota arrangement but we just distribute the order based on the situations. the order is given to a vendor who is quoting low price, giving the required quality and quantity and supplying as per our need. there is one more criteria for choosing this vendor. the outstanding balance for this vendor should not cross some limit.
    the limit may be based on negotiations and the some contracts' terms and conditions.
    the solution for this may be that there should be one report where you can see how much we owe to each vendor. this could be possible only when we know the Vendor g/l account and the corresponding balances.
    i think i have cleared the credit idea as well as given the solution. please reward if found it helpful.

Maybe you are looking for

  • Time Capsule (1st Generation) and Airport Express (ver 6.3) issues

    Hi, I am trying to extend the reach of my time capsule with the airport express. I have allowed my Time Capsule Network to be extended, but can not see any option on Airport Express setting for other than "create" or "join" a wireless network. Is it

  • Using 'replace' in Oracle

    Hi All, I am trying to use replace to replace a string with some tags as shown below: replace('ADAFETG3B-D0LA,ADAFETG3B-D0WA ', ',' , '</PartName><PartName>') but in the output it replaces the < with '&ltsemicolon' and > with '&gtsemicolon' Is there

  • Hp dvd-rw 556s not reading

    Hi.I have a dvd-rw 556s usb powerd .I can write discs with it,but i can not read them afther.I used it on 2 pc and a laptop,all of the with win7.What can I do to make it work?10x

  • Grayed out Photoshop CS2 on Creative Suite install disk

    I had to uninstall Creative Suite CS2 because I wanted to try CS5.  Come to find out after a lot of frustration unable to do because I have a G5  that does not have an intell processor.  When I tried to reload the Creative Suite CS2 the Photoshop was

  • What if i removed itunes from my pc, would i delete all my songs??

    What if i removed itunes from my pc, would i delete all my songs??