ISE Guest-Account Single-User Multiple Logins

Hello,
How to make ISE to only allow  one guest-user account login at a time.    the actual issue I have is- when I give one Guest user-id to someone, he can circulate that user-id with others and multiple unauthorized guests can use that single user-id to connect to Guest-portal
Anyway to restrict that ?

Restricting Guests to One Active Network Session
You can restrict guests to having only one device connected to the network at a time. When guests attempt to connect with a second device, the currently-connected device is automatically disconnected from the network.
This is a global setting affecting all Guest portals.
 Step 1 Choose Administration > Web Portal Management > Settings > Guest > Portal Policy.
Step 2 Check the Allow only one guest session per user option.
Step 3 Click Save .

Similar Messages

  • ISE Guest Account Lockout

    Hi,
    I would like to disable account lockout for ISE Guest accounts resulting from login failures. In the ISE, there is a setting for Maximum Number of Login Attempts (with values from 1-9) in:
            Administration>Guest Management>Settings>Guest>Portal Policy
    Can someone tell me where or how account lockout can be turned off  for Guest accounts in the local database of the ISE/WLC.
    Many thanks.
    Sankung                 

    Answer: No, yet there is not way to completely desable this feature in Cisco ISE   
    ref: http://www.cisco.com/en/US/docs/security/ise/1.1/user_guide/ise_guest_pol.html#wp1070066

  • Start vm linux Guests in single-user mode

    Hi -
    I have OBIEE vm template installed and everything is OK, I forgot the roor password for this guest, (ovsroot) is not working I think I've changed it. One option is to start this guest in single-user mode, I tried but you can't see the console until the system is starting services which is a late phase to run linux single command on boot prompt. Please advice how can change my root password using single-user mode.
    thanks in advance
    Omar

    Omar M Sawalhah wrote:
    Sorry, but I am not sure I am getting this right, where should I add 'single console=xvc0', if you mean the guest, as I mentioned in my post I don't know the root password and I can't logon. please kindly if you can add more detailed steps.When you boot your guest using xm create -c vm.cfg, it will immediately connect you to the console of the guest. That will show you the GRUB boot menu. You then need to edit the kernel boot line exactly the same way you would a physical server. In order to boot into single-user mode, you need to add the parameter single to the boot line. Along with that parameter, you also need console=xvc0 so that the guest uses the connected console to show you the boot process and allows you access to the single-user shell. If you do not use this parameter, you'll need to determine the VNC port used by the guest and used VNC to connect to the console instead.

  • Multiple Guest Accounts / Behind-the-scenes Login

    How would we go about logging a visitor in as a specific user behind-the-scenes (without them even seeing the Login Screen)? This question is driven from a requirement where we need to display a replica of the subportal branding at the guest view level. (Needs to go on the wish list for sure: Redirecting to a subportal and/or subportal guest accounts.) For example, if I created a [subportalname] Guest user for a subportal and wanted to automatically log a visitor in as that user, how would I trigger that process? Login PEI doesn't help me - none of those events seem to fire until the user is presented with the Login screen and manually clicks Log In - Looking at the Interpreter class right now, where we see the Guest login functionality (DoGuestLogin, etc.). How might we pass around a username and password and trigger an automatic login attempt with that data? We're basically looking for a work-around for multiple guest accounts - 1 per subportal - so that branding can appear right up front before a user actually logs in. We will have a parameter somewhere to branch out which subportal guest user to log the visitor in as. We've gone down a couple of different routes with no luck.
    Again, due to a tight timeframe, we need details - like, "Create a custom activity space replacing the Interpreter class, edit [blah] function and use [blah] function to pass in your hardcoded username and password. Rebuild [blah] and deploy [blah] dlls to [blah] directories."
    Regards,
    Sarah WheelerCox Enterprises, Inc.

    It turns out this is pretty complicated due to the internals of how user sessions get initialized. I've managed to get a test working where it logs you in as a guest in a different sub-portal. I can give you some rough information now.
    You will need a Login PEI, and a custom Space and IloginControl/IHTTPControl. Obviously, you will need to edit the Login PEI xml file and the CustomActivitySpaces.xml file to get your customizations deployed.
    The OnAfterLogin() method of the ILoginActions PEI should look something like this:
    publicRedirect OnAfterLogin(Object _oUserSession, ApplicationData arg1)
    IPTSession ptSession = (IPTSession) _oUserSession;
    if(ptSession.GetSessionInfo().GetCurrentUserID() == PT_INTRINSICS.PT_USER_GUEST)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_Browsing))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "Guest user login redirecting to guestloginspace to go to non-standard guest user.");
    Redirect guestRedirect = newRedirect();
    guestRedirect.SetLinkCreateNewSpace(GuestLoginSpace.STR_MVC_CLASS_NAME, null);
    guestRedirect.SetControl(GuestLoginSpace.STR_MVC_CLASS_NAME);
    returnguestRedirect;
    returnnull;
    and the LoginControl that I mentioned earlier is a bit more complicated than I implied. It also needs to be an IHTTPControl for login purposes. The custom space is very simple, so I will skip it. Here's the full class code for the custom guest login control:
    publicclassGuestLoginControl implementsILoginControl, IHTTPControl
    publicstaticfinalString STR_MVC_CLASS_NAME = "GuestLogin";
    privateAActivitySpace m_asOwner;
    privateIPTSession m_UserSession;
    /**theseneedtobenulledoutafterexecution.*/
    privateIWebData m_WebData = null;
    privateIXPRequest m_xpRequest = null;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#DoGetSession()
    publicbooleanDoGetSession()
    returntrue;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#GetSession()
    publicObject GetSession()
    // We need to set this manually before the Interpreter does because
    // DoTasksAfterLogout depends on it.
    // m_asOwner.SetUserSession(subportalGuestUser);
    LoginResult rReturn = null;
    try
    rReturn = LoginHelper.INSTANCE.AttemptLogin(m_UserSession, m_asOwner,
    m_xpRequest, m_WebData);
    catch(Exception e)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "AttemptLogin() failed.", e);
    if(!rReturn.m_bSuccess)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() failed: "+
    rReturn.m_strError);
    if(null!= rReturn.m_Redirect)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() return redirect ignored.");
    m_xpRequest = null;
    m_WebData = null;
    returnm_UserSession;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#CheckActionSecurityAndExecute(XPHashtable)
    publicRedirect CheckActionSecurityAndExecute(XPHashtable arg0)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() creating redirect to login space for dljr.");
    m_UserSession = PortalObjectsFactory.CreateSession();
    m_UserSession.Connect("non-standard guest", "", null);
    ILink rReturn = LoginHelper.INSTANCE.GetDefaultPageRedirect(newRedirect(), m_UserSession, m_asOwner);
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() finished.");
    return(Redirect) rReturn;
    *@seeIHTTPControl
    *@paramr
    *@parampageData
    publicvoidSetHTTPItems(IXPRequest r, IWebData pageData)
    m_xpRequest = r;
    m_WebData = pageData;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#Init(IModel,AActivitySpace)
    publicvoidInit(IModel arg0, AActivitySpace _asOwner)
    m_asOwner = _asOwner;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#SetRedirectForUseAfterLogin(Redirect)
    publicvoidSetRedirectForUseAfterLogin(Redirect arg0)
    *@seecom.plumtree.uiinfrastructure.activityspace.IMVCObject#GetName()
    publicString GetName()
    returnSTR_MVC_CLASS_NAME;
    *@seecom.plumtree.uiinfrastructure.activityspace.IManagedObject#Create()
    publicObject Create()
    returnnewGuestLoginControl();

  • HT4798 Why did a guest account appear in my login window.  I normally only have two authorized users.

    My log in window today showed two authorized login choices and a guest choice.  When logged in yesterday,  it only showed the two authorized login choices.  The only changes I have made were done on iPhone and iPods setting up iCloud access and accounts.  Did this cause the guest user to appear on my MBP?
    thnaks

    If you set up Find My Mac in iCloud, then it creates a Guest account.

  • ISE Guest account expired but user still authenticated

    I am testing the CWA and noticed that even though the guest account has expired the connection is still up and the switchport shows:
    ISEtest3560#show authentication sessions interface fastEthernet 0/2
                Interface:  FastEthernet0/2
              MAC Address:  001d.09cb.78bd
               IP Address:  10.2.8.31
                User-Name:  [email protected]
                   Status:  Authz Success
                   Domain:  DATA
          Security Policy:  Should Secure
          Security Status:  Unsecure
           Oper host mode:  multi-auth
         Oper control dir:  both
            Authorized By:  Authentication Server
               Vlan Group:  N/A
                  ACS ACL:  xACSACLx-IP-GUEST-524448ff
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  0A0003E60000004009EEE336
          Acct Session ID:  0x00000380
                   Handle:  0xC2000040
    Runnable methods list:
           Method   State
           dot1x    Failed over
           mab      Authc Success
    I would have thought that when the account was no longer valid the switch would have gone back to its default state.  Also on the legacy NAC you could see the guest accounts as a local account, when we create a guest account throught the sponsor portal we don't see it in the Guest Identity group.  We are looking @ that group for within one of our authorizational profiles.
    Thanks,
    Joe

    I put the command authentication timer reauthenticate 60 on interface fa0/2, setup a guest account that was restricted to 1 hour.  The guest account has now expired but the interface still shows authenticated:
    ISEtest3560#show authentication sessions interface fastEthernet 0/2
                Interface:  FastEthernet0/2
              MAC Address:  001d.09cb.78bd
               IP Address:  10.2.8.31
                User-Name:  [email protected]
                   Status:  Authz Success
                   Domain:  DATA
          Security Policy:  Should Secure
          Security Status:  Unsecure
           Oper host mode:  multi-auth
         Oper control dir:  both
            Authorized By:  Authentication Server
               Vlan Group:  N/A
                  ACS ACL:  xACSACLx-IP-GUEST-524448ff
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  0A0003E60000004F1EAC0F55
          Acct Session ID:  0x000004B4
                   Handle:  0x0D00004F
    Runnable methods list:
           Method   State
           dot1x    Failed over
           mab      Authc Success
    I assume that the value for the command is in seconds, correct?
    Thanks,
    Joe

  • ISE Guest Accounting Identity

    Hello Guys,
    i have an ISE 1.2 with Patch 9 installed.
    Now i want to have a correlated View of Guest User Name <-> IP Address
    When i go under Operations -> Reports -> Guest Accouting i just get the MAC Adress as Identity Value. Is there any configuration i can made to show the GuestUser as Identity ?
    I added a picture of my corrent output
    Thanks
    Philip

    Guest user Identity is getting updated with Mac addr. instead identity
    CSCuh14138
    Description
    Symptom:
    Guest user Identity is getting updated with Mac. address instead of identity in Guest accounting reports.
    Conditions:
    issue is seen in Guest accounting reports
    Workaround:
    no work around
    Known Affected Releases:
    (4)
    1.2(0.852)
    1.3(0.566)
    1.3(0.620)
    1.2(0.899)

  • How can i completely remove a guest account? from the login screen too?

    Having difficulty removing my guest account. I've gone to system preferences and unchecked the guest account but it still appears upon computer boot up as an option. I want it completely off and not showing on the screen when turned on.

    On your login screen, that's not a true "Guest" account. It's actually a security feature..your Mac will restart to a secured Safari-only version of the OS with access to the Internet...this enables you to find your Mac using iCloud. Thus, this should NOT be disabled.

  • ISE guest accounts

    Hello,
    is it possible to print more than one guest account data at one time?
    Best regards,
    Markus

    Markus,
    The best way to accomplish this is to do it when you create the guest accounts.  Once you create the Random Guest accounts in the Sponsor Portal, you are given a "Success" screen as shown here:
    Click the Print option highlighted in the picture above and you will get this:
    Which you can then print out.
    I hope this helps.
    Please Rate Helpful posts and mark this question as answered if, in fact, this does answer your question.  Otherwise, feel free to post follow-up questions.
    Charles Moreton

  • ISE Guest Wifi Portal Users restricted to 5 day account

    Hi,
    I have a custom Guest wifi portal configured in Mulit-Portal Configuration to do self service, Portal Type is default Portal.
    I have the Guest Portal Policy configured to a time profile of 6 months which works ok for my other wifi profiles.
    My users however are only getting a 5 day account to expiry.
    I suspect the Guest Portal I have configured is not using the Default Guest Portal Policy as configured in "Web Portal Management\Settings\Guest\Portal Policy but I can't find any other option or settings
    Please Any help gratefully recieved.
    Thanks

    There was a bug that caused a failure like this, think it was solved in 1.2 patch 8...  could be worth a try to patch if you haven't done so....

  • Single user, multiple log-ins?

    I was shutting down my system the other day when I got a message from the system asking for my password because multiple users were logged in. I found this interesting because I am the only user on my computer, so I popped open a terminal and ran "users" and it showed that I was logged in twice. It currently shows that I am logged in twice. I recently started switching to systemd and I also upgraded to gnome 3.4. Does anybody have any insights into this?

    Here is the output of systemd-cgls. I'm not exactly sure where the second login is coming into play.
    [lobo@HP /]$ systemd-cgls
    ├ user
    │ ├ lobo
    │ │ └ 2
    │ │ ├ 571 gdm-session-worker [pam/gdm-password]
    │ │ ├ 608 /usr/bin/gnome-keyring-daemon --daemonize --login
    │ │ ├ 627 gnome-session
    │ │ ├ 644 /usr/bin/dbus-launch --sh-syntax --exit-with-session
    │ │ ├ 645 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --...
    │ │ ├ 656 /usr/lib/gnome-settings-daemon/gnome-settings-daemon
    │ │ ├ 665 /usr/lib/gvfs/gvfsd
    │ │ ├ 667 /usr/lib/gvfs//gvfs-fuse-daemon -f /run/user/lobo/gvfs
    │ │ ├ 676 /usr/bin/pulseaudio --start --log-target=syslog
    │ │ ├ 680 /usr/lib/pulse/gconf-helper
    │ │ ├ 682 /usr/lib/GConf/gconfd-2
    │ │ ├ 685 /usr/lib/gnome-settings-daemon/gsd-printer
    │ │ ├ 689 /usr/bin/gnome-shell
    │ │ ├ 697 python2 /usr/bin/gtk-redshift -l 44.6:-84.8 -t 6500:3800
    │ │ ├ 699 python2 /usr/bin/mpDris2
    │ │ ├ 716 /usr/lib/gvfs/gvfs-udisks2-volume-monitor
    │ │ ├ 732 /usr/bin/redshift -l 44.6 -84.8 -t 6500 3800
    │ │ ├ 735 /usr/lib/telepathy/mission-control-5
    │ │ ├ 752 /usr/lib/libsocialweb/libsocialweb-core
    │ │ ├ 759 /usr/lib/chromium/chromium
    │ │ ├ 762 /usr/lib/chromium/chromium
    │ │ ├ 764 /usr/lib/chromium/chromium-sandbox /usr/lib/chromium/chromium ...
    │ │ ├ 765 /usr/lib/chromium/chromium --type=zygote
    │ │ ├ 768 /usr/lib/chromium/nacl_helper_bootstrap /usr/lib/chromium/nacl...
    │ │ ├ 798 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 805 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 815 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 821 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 831 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 837 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 846 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 853 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 859 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 865 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 947 /usr/lib/chromium/chromium --type=gpu-process --channel=759.13...
    │ │ ├ 1173 gnome-terminal
    │ │ ├ 1177 gnome-pty-helper
    │ │ ├ 1197 gedit
    │ │ ├ 1204 /usr/lib/dconf/dconf-service
    │ │ ├ 2070 /usr/lib/chromium/chromium --type=plugin --plugin-path=/usr/li...
    │ │ ├ 2145 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 2219 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 2260 bash
    │ │ ├ 2278 /usr/lib/chromium/chromium --type=renderer --lang=en-US --forc...
    │ │ ├ 2312 man systemd-cgls
    │ │ ├ 2322 less -s
    │ │ ├ 2333 bash
    │ │ ├ 2334 systemd-cgls
    │ │ └ 2335 less
    │ └ gdm
    │ └ 1
    └ system
    ├ 1 /bin/systemd
    ├ udisks2.service
    │ └ 719 /usr/lib/udisks2/udisksd --no-debug
    ├ colord-sane.service
    │ └ 708 /usr/lib/colord/colord-sane
    ├ colord.service
    │ └ 690 /usr/lib/colord/colord
    ├ rtkit-daemon.service
    │ └ 538 /usr/lib/rtkit-daemon
    ├ upower.service
    │ └ 484 /usr/lib/upower/upowerd
    ├ console-kit-daemon.service
    │ └ 391 /usr/sbin/console-kit-daemon --no-daemon
    ├ accounts-daemon.service
    │ └ 383 /usr/lib/accountsservice/accounts-daemon
    ├ gdm.service
    │ ├ 359 /usr/sbin/gdm-binary -nodaemon
    │ ├ 362 /usr/lib/gdm/gdm-simple-slave --display-id /org/gnome/DisplayMan...
    │ ├ 364 /usr/bin/Xorg :0 -br -verbose -auth /var/run/gdm/auth-for-gdm-9V...
    │ └ 571 gdm-session-worker [pam/gdm-password]
    [email protected]
    │ └ tty1
    │ └ 358 /sbin/agetty tty1 38400
    ├ dbus.service
    │ ├ 357 /usr/bin/dbus-daemon --system --address=systemd: --nofork --syst...
    │ ├ 386 /usr/lib/polkit-1/polkitd --no-debug
    │ └ 460 /usr/sbin/wpa_supplicant -u
    ├ systemd-logind.service
    │ └ 349 /usr/lib/systemd/systemd-logind
    ├ NetworkManager.service
    │ ├ 348 /usr/sbin/NetworkManager --no-daemon
    │ └ 1991 /sbin/dhcpcd -B -K -L -G -c /usr/lib/networkmanager/nm-dhcp-clie...
    ├ media-win.mount
    │ └ 340 /sbin/mount.ntfs-3g /dev/sda2 /media/win -o rw,locale=en_US.UTF-...
    ├ media-Storage.mount
    │ └ 338 /sbin/mount.ntfs-3g /dev/sda7 /media/Storage -o rw,nosuid,nodev,...
    ├ systemd-journald.service
    │ └ 121 /usr/lib/systemd/systemd-journald
    └ udev.service
    ├ 120 /usr/lib/udev/udevd
    ├ 1906 /usr/lib/udev/udevd
    └ 1907 /usr/lib/udev/udevd

  • Is there any plan to update the Creative Cloud EULA for single user, multiple computer use?

    I have a Mac and a PC at work and 5 machines at home (Macs and PCs) in different rooms. I would like to be able to use the software whenever creativity strikes. Otherwise I am forced to keep using Gimp and other solutions at home.

    At the moment if you want to have the Adobe Creative offerings available on 5 different computers then you would want to look at the Creative Cloud for Teams offering.  You can find more details at http://www.adobe.com/products/creativecloud/teams.html.
    You may also want to review http://forums.adobe.com/message/4379859#4379859?tstart=0http: which discusses this topic in some detail.

  • Guest User from Login Screen

    Hello,
    Under Snow Leopard, I was able to have a guest account show on the login screen and anyone could log into this account which would delete all data upon logout.
    In have enabled the guest user in Lion and it does show up at the login screen. When the guest user is selected at the login screen it gives a notice that the computer must be restarted into safari only mode rather than loging into the guest account as before. If a regular user is already logged into the system and the guest account is selected from the fast user switching menu it logs in to the account just as it did on snow leopard.
    I would like to know if there is a way to revert the login screen functionality of the guest user so that users can actually login rather than having to restart into safaro-only mode.
    Thanks

    I erased my HD and installed Lion again. First thing I did was run all software updates. Once I got around to enabling the guest account it now functions as it should and how it did under snow lerpard.
    My previous install of Lion was also a clean install on a blank drive so I don't know why it was a problem but it's working now.

  • ISE Guest Access- Redirect to URL after successful logon

    Currently, when guest users attempt to browse they get redirected to the guest portal.  After login, they get a message that they can now access the original URL.  Is there a way to automatically redirect to the URL they were trying to access, or remember the URL after they login?

    ISE guest flow :
    The user associates to the web authentication Service Set Identifier (SSID).
    The user opens the browser.
    The WLC redirects to the guest portal (such as ISE or NGS) as soon as a URL is entered.
    The user authenticates on the portal.
    The guest portal redirects back to the WLC with the credentials entered.
    The WLC authenticates the guest user via RADIUS.
    The WLC redirects back to the original URL

  • FMM & Guest Account

    Hi All,
    Albeit loads of people have complained about the appearance of the Guest Account on log in with the FMM app running, I have the opposite. Even with FMM running there is no Guest Account availble on login.
    And, when checking Users to enable "restarting to safari when screen is locked", the option is not available...?
    I have all the latest patches etc, having recently clean installed and tidying up my system.
    I have disabled, then enabled and then disabled the Guest Account in Users, to se if that made any changes. But still no joy.
    So, what do I need to do to enable this feature and get the guest account back? It does appear to be an integral security feature and without it, FMM is pretty useless.
    Any suggestioins would be appreciated. Thanks in advance.

    I resolved it.
    I turned on my Guest Account in Users.
    Signed out of iCloud.
    Restarted the machine.
    I then turned on iCloud, allowing it to use my location and then logged out.
    Ta-dah, the option is now back... And the setting in Security is now present.

Maybe you are looking for

  • Reference partition with Trigger

    This post is an extended version if my previous post -Dynamic Reference partition by Trigger on Feb 24 I need to create a Dynamic Reference partition with Trigger. Requirement:- 1. It should be a list partition 2. It should be a referencing Partition

  • How to request a refund?

    Hello, This is fifth time that I have applied to have a refund due to the skype overcharged. Your immediate attention and help will be greatly appreciate. Thank you so much. Please do check the following list: May 18, 2013 [removed for privacy] Payme

  • Upgrade Plan - Web Shop - NWDI

    Hi Experts, My customer has planned to upgrade their portal from version 7.01 to 7.02 SPS4. They have four environments namely Dev, Quality, Acceptance & Production. They plan to upgrade Dev first, followed by Acceptance & then Production. (Quality i

  • Play pre-recorded message

    Hello, I'm trying to set up a number such that when a caller calls the number, a pre-recorded message gets played.  The caller will not be able to leave a message/voicemail on this number though.  Here are the steps: 1. Caller dials number 2. Caller

  • Completely disable or remove the Mac App Store

    Hello, I have several Macintosh computers which are on an unmanaged network, however I need to control what applications are installed on these machines without having to dig through Parental Controls on each machine. My question is simple: *how do I