Can I set up unique wifi settings at a user level?

I have an iMac on a work network that has two users.  In the past, I have been able to log in to the system via LogMeIn.  However, I am now unable.  The problem is that each user uses a different wifi connection (the other user needs to be filtered).  What I find is that when the other user logs in to their SSID, our user account defaults to try to log in to the filtered SSID.
I can think of two scenarios that would work.  First, find a network setting that would utilize only our SSID and make it the default - forgetting other networks.  Second, disabling wifi on the other user account, forcing ethernet and then keeping ours on the unfiltered SSID. 
Are either of these scenarios doable in Mountain Lion - or can anyone help me think of another solution?  We have the computer set to never go to sleep or turn hard disks off, but it will require password after the display turns off.  And, it is set to wake for network access.
Thanks in advance.

Hello,
Are you deploying the Quiz on a LMS? Do ask this, because for the moment Captivate is reporting to the LMS immediately after each interaction (can be a question, or a scored button, click box, Text entry box).
If you deactivate the Complete and Correct captions in the Quiz Properties panel (part Options), the submit button will get the user to the next slide. You'll have the Incorrect caption still showing up with the message (use Yes or...) to go on. Do not know why, but you cannot desactivate this from the Quiz Properties, but you can delete this Incorrect caption on the slide. Now the Submit button will get you always to the next slide.
But then the user will not have a 'clue' about which answers were correct/incorrect, because those captions do not show up. But I think this is what you want?
If the user should be able to go back, be sure to give him more than one attempt for the Quiz (Quiz Preferences). If you give only 1 attempt, he will see the Review area when going back. But this means that if you give him 2 attempts, and he goes back through the quiz twice, he has exhausted his 2 attempts (due to the way CP reports). If he goes back again, he'll see the Review text. If the number of attempts is not important, just set this number to Infinite, and the user will never see the Review text (where he learns which answers were correct/incorrect).
Lilybiri

Similar Messages

  • How to set the same General settings for all users

    Hi Experts,
    How can i set the same general settings for all users e.g. marking the checkbox "Display header" to true for all users? General settings are possible under User Settings Button.
    Regards,
    Arti.

    Hi Arti!
    You can default user settings in a PFCG role, in the "personalization" tab.
    If you have a PFCG role that is common to all your users, you can set the default values here.
    However it does not prevent them to change these settings later, except if you modify the "user settings" fields properties in cProjects application.
    Matthias

  • HT4759 I now have my daughters iPad can you please tell me why I can't set up iCloud.in settings the iCloud is greyed out also how do I change her mail account to mine?

    I now have my daughters iPad can you please tell me why I can't set up iCloud.in settings the iCloud is greyed out also how do I change her mail account to mine?

    To change your iCloud ID or password you have to go to Settings>iCloud, tap Delete Account, then sign back in with your other ID.  If you need to migrate any of your daughter's iCloud data to your account, choose Keep on My iPad when prompted, then choose Merge to upload it to the new account.  If not, choose Delete from My iPad.

  • How can I set the default print settings of my document as color.  I want the default print setting to be color when someone opens a document.  similar to duplex print preset is there a color print preset?

    How can I set the default print settings of my document as color.  I want the default print setting to be color when someone opens a document.  similar to duplex print preset is there a color print preset?

    Hi,
    Try saving your settings as a Preset by clicking the Preset drop down and then select Save Current Settings as a Preset.
    Next try changing the settings by selecting the saved preset.
    That allow saving the settings for a specific printer, I assume it may also allow selecting these settings for another printer.

  • Can I set up a wifi router to receive an internet signal by connecting it to a computer?

    Can I set up a wifi router to recieve an internet signal by connecting it to a computer?
    It seems to me that routers are designed to connect directly to the internet by programming their firmware with connection info.
    I'd like to connect a computer to the internet, then connect a router to that computer.
    Essentially, I want a internet signal that comes through a computer before being made wireless. Is that possible?

    To connect the computer to the Internet you still need some physical component, for example a wireless USB dongle. So if you want to have the Mac connecting to the Internet and then share this connection to other devices using wireless, then you can enable Internet Sharing on the Mac and select to share its Airport (wireless) connection to the other devices (which turns the Mac into a form of access point). Then the other wireless devices can connect to the Mac and use the Mac's Internet connection, which could be a wireless USB dongle or an Ethernet connection to a cable modem.

  • How can I set a unique macro for the function keys on my wireless keyboard?

    I'd like to use the F5 key as a quick stroke key for a sentence I use commonly - how can I set that up?

    <http://www.keyboardmaestro.com>

  • 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 we set List View Lookup Threshold at site collection level ?

    Hello,
    Presently, we have requirement to set the List View Lookup Threshold  at Site Collection/Sub-Site level instead of web application level.
    Could you please let me know, are there any ways to set
    List View Lookup Threshold setting at Site Collection/Sub-Site level
    in SharePoint 2010 using Powershell/Object Model
    Also, it would be helpful if you colud let me know, upto what extent , we can drill down List View Lookup Threshold setting i.e. SubSite/List/Library-Folder.
    Thanks in advance !
    Regards,
    Sagar Acharya
    Email -  [email protected]

    Hi Sagar,
    We cannot set list view threshold value at sitecollection/subsite level. It can only be set at web application level.
    However we can bypass the 5000 limit using PowerShell command by setting “Enable Throttling”= false for particular list.
    Reference link:
    http://pravahaminfo.blogspot.in/2012/10/how-to-increase-list-view-threshold.html
    Thanks,
    Somnath Matere

  • How do I set the about:config settings for all users? iprism keeps prompting from authentication for users.

    When users log on and try to open Firefox 23.0.1, users are prompted with Iprism Authentication. We made changes to the firefox about:config values "network.automatic-ntlm-auth.allow.-non-fqdn" and "Network.negotiate-auth.allow-non-fqdn" to true and it works, but only works on a per user basis. How can we set this up for all users?

    I would think the about:config entries discussed are ex-factory set to values each user has to change individually, after the installation has run its course. The solution could be to have patched files ready to install post factum:
    [https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences A Brief Guide to Mozilla Preferences - MDN]

  • Can I set up my wife's new iPhone 5 w/o activating it?

    i would like to set my wife's Christmas present, a new iPhone 5s before we leave for Mexico.  Then on Christmas I want to be able to activate it when I give it to her. I can't exactly activate it now as I would have to turn off her iPhone 4 now and end up blowing the surprise.  So, can i download all her settings and so forth now while NOT activating it?  And then can I activate it from Mexico?  Note: I have the Mexico share everything plan tacked on to my current share everything plan.  Thanks in advance.
    Mit

        Mit,
    Great question.  What an awesome Christmas gift for your wife.  You can download everything on the phone by using her iCloud information on the phone.  You would not be able to activate the phone in Mexico as you will not be on Verizon Wireless coverage.  You can activate either before you after you get home from a wonderful vacation.
    Thank you,
    RobinD_VZWSupport
    Follow us on twitter @VZWSupport

  • Can I set up my wife's iPhone C with her own iCloud but share my Apple ID account?

    I have had my Apple Id for quite sometime now and have lots of music and apps for my Apple devices. I FINALLY convinced my wife to get an Apple phone as well when we just upgraded our services.
    Is it possible for me to set her phone up with her own iCloud account (so we don't get each others texts, photos, ect) but still share my Apple ID so she can have access to our apps and music? Also I need to set her up on a PC of her own for backups and syncing.
    If this is possible, what is the best way to proceed?
    Thanks for any help at all
    Wolf

    If you still have this question, the answer is yes.  You can set up a separate iCloud account for her by going to Settings>iCloud on her phone and signing in with a separate Apple ID.  You can do this and still share the same ID for your iTunes account (in Settings>iTunes & App Store).  The ID you use for iCloud does not need to be the same as the ID you use for other services.  Also, to avoid getting each other's text messages and FaceTime calls, make sure she signs into these services with her new iCloud ID (in Settings>Messages>Send & Receive and Settings>FaceTime).
    In iTunes on her PC, authorize her computer for your shared iTunes account by opening iTunes and going to Store>Authorize This Computer and signing in with the ID.  Then you should be all set.

  • How can I set Illustrator CS5 color settings using Javascript?

    I can set Photoshop color settings with the app.colorsettings ('File') in javascript, but I cannot locate an object in Illustrator that would perform the same task. I can only find readonly objects for illustrator. I would like to have illustrator read a script file to set the color setting
    upon startup.
    Thanks

    Hi imagecollection, that was kind of true in 2010, color mode was possible to be changed via Actions and vbs or as
    Re: Change color space
    with CS6 or newer it is more straight forward since js can play actions, and even easier using executeMenuCommand...however I'm not sure if the OP needs to change color mode or if he wants to load color profiles.

  • Can I set-up multiple WiFi accounts on a single time capsule?

    I operate a vacation rental and would like to allow guests access to my WiFi without giving them access to the secure files on my Time Capsule.  Can & how might I do this?

    The info in your post suggests that you have a 1st Generation Time Capsule. Unfortunately, that version does not have a Guest Network option.
    Guests will not have access to the files on your Time Capsule with your current Time Capsule unless you provide them with the Time Capsule device password.
    Here, I am assuming that your device password is different than the wireless network password.

  • HT204051 Can you set a default WiFi network?  Or is it possible to remove a near field WiFi network?

    I want to set a default a default network to connect via wifi .  Is it possible to automatically connect when in range?

    Hi GymJockey67,
    Thanks for your question.  The resource below explains how to set your preferred Wi-Fi network as the default connection.
    OS X Yosemite: Choose preferred wireless networks
    https://support.apple.com/kb/PH18525?locale=en_US
    Cheers,
    Judy

  • Can I set a default Playback preference for multiple users on same PC?

    I am setting up an editing suite for our University which has a "per machine" Creative Cloud licence. It is a PC installation. This machine will be used by a class of students who will log in with their own credentials. I need to set the preferences for Premiere (video output, workspace layout, default drives etc) so that it will be the same for all users logging in since we want a consistent setup for teaching purposes and dont want to have to help each student set up so that it shows correctly on the monitors. Is there a way of saving this setting as the default for every user?  In particular, as we have dual monitors, we want to save the preferences - Playback to always appear on the second monitor. This is really important for us - I need an answer before building more suites.
    (Adobe won't let me ask them directly, so I have to wait for someone to provide an anwser on the forums... not great customer support in my book)

    Firstly...is  this editing suite for the purpose of teaching editing or something else?
    Next ...what is your experience with PPRo?
    You can set up the machine(s) initially exactly how you want them  in regards to hardware and screen layouts etc.  Thats easy and can be called..'University of Waikato Default Edit Workspace' for example. That is  only part of it though.
    You can set up and share a common Key Board Short cut Preference File.  Same as Export Presets.
    There is no way you can "Default" all the USERS stuff for individual unique projects  though without creating a massive potential for disaster and confusion.
    Each will need to have access to many separate drive locations for their media (audio, graphics, footage) and the knowledge to create, access and locate it.
    THey will each need a separate Location for their Projects as well as their media.
    If they are editing students...they should be taught how to set up everything for themselves so they have an understanding of the fundamentals and basic s of NLEs

Maybe you are looking for