A way to display status all users in a LYNC group

Lync Group Users status;
Is there a way to create an easy to view folder  or window that would show all my Lync contacts in a group along with their current status as well as the green red etc. dot that indicates the same.
I am currently doing this by starting an email using the group name m, then clicking the + to show all the people in it , then saving the blank email to desktop. 
This is tedious and “sloppy” but it does show what I am trying to achieve.
I cannot find anything like a Group Control View or other like it anywhere.
Does such exist?

Hi Questorfla,
Thamaraw has told you the answer, and there’s a screenshot for your reference.
Best regards,
Eric

Similar Messages

  • What is the best way to display errors to users when using JSPs?

              Hello,
              Could someone suggest me the best way to display errors to users when using JSPs?
              Many thanks in advance.
              Rino
              

              Thanks for the code snippet!
              Rino
              "Deepak Vohra" <[email protected]> wrote:
              >
              >
              >The 'errorPage' attribute of the 'page' directive forwards uncaught run-time
              >exceptions
              >to an error processing page. For example:
              >
              ><%@ page errorPage="error.jsp" %>
              >
              >redirects the browser to the JSP page error.jsp if an uncaught exception
              >is encountered.
              >
              >
              >Within error.jsp, indicate that it is an error-processing page, via the
              >directive:
              >
              >
              >
              ><%@ page isErrorPage="true" %>
              >
              >The Throwable object describing the exception may be accessed within
              >the error
              >page via the 'exception' implicit object.
              >
              >
              ><% if (exception != null) { %>
              ><p> An exception was thrown: <b> <%= exception %>
              >
              ><p> With the following stack trace:
              ><pre>
              >
              ><%
              > ByteArrayOutputStream ostr = new ByteArrayOutputStream();
              > exception.printStackTrace(new PrintStream(ostr));
              > out.print(ostr);
              >%>
              ></pre>
              >
              >
              >
              >"Rino Srivastava" <[email protected]> wrote:
              >>
              >>Hello,
              >>
              >>Could someone suggest me the best way to display errors to users when
              >>using JSPs?
              >>
              >>Many thanks in advance.
              >>
              >>Rino
              >
              

  • Disable right click for all users in a certain group

    I would like to disable the right click function for all users in a particular group, regardless of which computer is the domain they log in to. Is there any way to do this? Thanks.

    1. Create a new group policy and link it to the OU with the users you want to be affected.
    2. Edit the new policy - In the left pane navigate to:
    User Configuration \ Administrative Templates \ Windows Components \ Windows Explorer
    3. Enable the setting Remove Windows Explorer's Default Context Menu.
    Please let me know if you succeeded.
    Regards, Liran.

  • How to deploy a file on all users C drive via group policy

    I'm trying to deploy a file on all users C drive via group policy but its not working. logon script is already kept in place but nothing is happening. If I run the same command from my pc it's working fine. Does any one have good script to copy & deploy
    the file. Pls help

    Hi,
    You can use Group Policy Preferences to deploy this and Item-level-Targetting to filter by OUs/groups, wmi filters ,etc.
    Computer Configuration / User Configuration - Preferences - Windows Settings - Files
    More on this here.
    http://technet.microsoft.com/en-us/library/cc772536.aspx
    Hope this helps.
    Regards,
    Calin

  • PO delivery date field to be made display for all users except one user

    Hi All,
    I have a specific requirement:
    The delivery date field in PO should be made display only at the time of changing the PO. I know pretty well that this can be achieved thru Define Screen Layout at document level, which inturn will make this field disaply mode to all users.
    But it should be in changeable mode only for one user. how can we achieve this.
    Any ideas, please
    /R
    Antony

    Hi ,
    You can create a authorization object(Z one) which can be assigned to the user id who need authorization of change .
    In the exit , you can specify the logic that if SY-USER (current user) has the authorization id , the system will allow to change . If the user doesn't have the object in his roles , the system would not allow to change .
    This will help in providing / removing access to any user id .
    Regards,
    Hari.

  • Administrator Check work item displayed to all users.

    Dear All,
    Following Workitem which is created from Leave workflow is appearing commonly to all users.
    there approx. 200 Workitems as HR Administrator: Check Request Data with R/3 Data
    As SAP suggested , we have removed the binding in Administrator Check Task. wast that  the problem ?
    When I check the table SWWUSERWI, all these workitems are not there.
    From where system picking up these administrator Check workitems and what will be the solution ?
    Thanks in advance.
    Regards,
    Kamal Rawal

    Hi Surjit,
    SAP is suggesting to apply the Note - 779075.
    Note says-
    The application "LeaveRequestAdmin" is not released. Use transaction
    SWFVISU to delete the following entry:
    TS12300104 WebDynpro Java
    APPLICATION LeaveRequestAdmin
    PACKAGE sap.com/ess~lea
    You must then register the work items again. For more information about
    registering work items, see the UWL documentation.
    Rule binding for 60100010   HRA dmin is removed. But Terminate if RUle Resolution wiout result is ticked.
    How to Register the workitem again ?
    Regards,
    Kamal  Rawal
    Edited by: Kamal Rawal on May 11, 2009 6:33 PM

  • How to retrieve all users in a specific group

    Hi,
    I am using SunOne directory server. Can someone please post a sample code that illustrates how to fetch all the list of users in a particular group.
    1) Let's say I want to find all the users in a group called "marketing". The root context is dc=mycompany,dc=com This group can be anywhere below this root context. Only information I am told is the name of the group - "marketing". How will I get all the users in this group?
    2) For each user that is retrieved from the group marketing, how will I find out the user's DN?
    Thanks for the help,
    - Satish

    Do it like this...
    String searchBase = "ou=marketing";
    StringBuffer filter = new StringBuffer();
    filter.append("(|");
    if (organizationName != null && !organizationName.trim().equals("")) {
         filter.append("(");
         filter.append(ou);
         filter.append("=");
         filter.append("marketing");
         filter.append(")");
    SearchControls constraints = new SearchControls();
    constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
    constraints.setCountLimit(200); // How many users should be found
    constraints.setTimeLimit(100000); // how much time should this search wait
    // Get a initial context and set it to the ctx object
    ctx.search(searchBase, filter.toString(), constraints);

  • Select all users of specific APEX Group

    Hello,
    do you know how I can find all users assigned to specific User Group?
    I know there is User Groups Assignments page in APEX Administration panel, but it's very weak. It shows only 500 records, and there is no search option. I also can't find APEX group view in APEX DB.
    I can check all groups of any user, I don't believe I can't check all users of any group.
    Regards,
    Przemek

    Hi Martin,
    thanks a lot! I needed sth similar, but I couldn't have found right views. Thanks to you now I can:
    Select GROUP_NAME, USER_NAME, FIRST_NAME, LAST_NAME from WWV_FLOW_USERS u, WWV_FLOW_GROUP_USERS g where g.USER_ID=u.USER_ID and UPPER(GROUP_NAME) like '%some_name%' order by USER_NAME
    Regards,
    Przemek

  • Folders under a role displayed for all users

    Hi
    I had created a role called Role A and this had two folders unders that named Folder A, Folder B. I assigned this role to User A only.
    I logged into the portal as User A, and saw that these two folders were visible, and as I had wanted it.
    But when I logged in with the administrator's account too, I noticed that along with Content Administration, User Administration, System Administration, I also had Folder A and Folder B.
    I checked the roles for Administrator and Role A has not been assigned.
    I dont want this Folder A and Folder B to appear in the admin's account.
    Please help.
    Thanks
    Manoj

    Hi
    Thanks for your help. Its not a permission issue for that folder, and no other groups are added in Role A.
    I guess, like Venkatesh says, it could be the content admin role or super admin role. But surprises me as to what would happen if there were more than 100 folders.
    There must be something else to it. I suspect this to be a cache problem, as I had added Role A to Administrator's group and then removed it from there. I will check this and confirm.
    Thanks for all help
    Regards,
    Manoj

  • Saved Interactive reports options display for all users

    Hello,
    For now I build once again my apex apllications in Apex 4.0
    I created a user. In the apex administration this user is not an administrator and not a developper either.
    However the saved interactive report options display for him too, so he can choose the look of the default report, etc...
    Is that a bug ?? Or did I forget something ?
    Thanks !
    Fanny

    Fanny, as long as you are logged in as a developer in apex you will be able to save the report as the standard report, no matter with what user you are logged into your application.
    Paul

  • Is there a way to display the size of a folder or group of folders in Bridge?

    In windows it is easy to click on any folder and see the size of it's contents, whether it is a single folder or contains subfolders.  This doesn't seem possible as far as I can see in Bridge.  The only way I can see to see the size of a folder is to select all files in the folder and then it will display the size. Seems quite a clunky way or working and is frustrating when you want to see the size of a folder containing sub folders.  Strange for a program which is supposed to make managing files easier.  However, I'm hoping that there is a way to do this and I've not discovered it yet.
    If anyone knows of a way to click on any folder and display it's contents (with or without subfolders) without having to select all files, I would greatly appreciate them sharing it.
    Many thanks,
    Julie

    In the Folders Tab, right click on  folder  then click Reveal in Explorer. This will open an Explorer window with the folder selected.  In Explorer you can right click > Properties or navigate to whatever you want to measure.

  • How do I make firefox available to all users in Windows 7?

    I've installed Firefox on a Windows 7 computer. It is only available for the user who was logged in at the time. Is there a way to make it available to all users on that computer, or do I have to run the installer under each login?

    ''ricmcdav [[#question-1045158|said]]''
    <blockquote>
    I have already installed firefox on about 15 pc's. Just realized it is user specific. Any way change it to all users or do I have to reinstall using "run as admin".
    </blockquote>
    ''forgottengods [[#answer-686397|said]]''
    <blockquote>
    I believe you just use Firefox sync, to have the profiles mimic each other. Here is a link (https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync).
    </blockquote>
    Thanks but The link returns a page not found,

  • Automatically suspend when all users are idle

    Hello,
    I have not been able to find a way of checking if *all* users on the system are idle, and then suspending if they've been idle for a certain amount of time.  Of course individual users might have the ability to set up sleep if they want, but I was looking for a way to set this up as the root user on the machine.
    Can anyone recommend a way to do this?
    Thank you very much

    Welcome to the forums.
    It all depends on your definition of idle.
    For me it means that there is no user input from the keyboard and no movement of the mouse for a certain time. Therefore i use xautolock for suspending the system when it is idle using this command:
    xautolock -time 20 -corners -000 -detectsleep -locker "systemctl suspend"
    The corners argument provides a quick way to inhibit the automatic suspend by moving the mouse into the left upper corner. Time is in minutes.
    On a home server a script checking for connected users is suited better:
    http://wiki.ubuntuusers.de/Skripte/Auto … Das-Skript
    (This link leads to a page written in german, however the script is written in bash and commented in english.)

  • How to move IDCS3 prefs to "All Users" ??

    Hello,
    I have a querstion about InDesign prefs. and moving them so that all users that log into a computer get them when they launch Indesign CS3.
    asically I am using Norton Ghost to create 20 identical PC's, I want all users to log in with a standard set of prefs. set for indesign. So I created all changes in indesign and closed ID. I open it up my changes stick and all is good.
    When I log in as a differant user though, none of the prefs are there?....I even moved the user profile that I used to create the prefs and save them to the Default User profile of the computer.
    Right now I assume the prefs are here:
    C:\Documents and Settings\%user%\Application Data\Adobe\InDesign\Version 5.0
    Adobe does not recomend just copying the InDesign folder in this path to another computer.
    Anyone know where / how to get everyone that logs into the computer to use the prefs I have created?
    thanks

    >Adobe does not recomend just copying the InDesign folder in this path to another computer.
    Really?
    But in answer to your question, there really is no way to insure that all users are using the same set of preferences other than locking down the computers using something like Altiris Deep Freeze.
    Preferences are user-specific, and they are written to the user profile every time the application closes. You can start all users with a common set of preferences by copying the InDesign Defaults file in the folder you mentioned, along with the InDesign SavedData file you'll find in C:\Documents and Settings\[username]\Local Settings\Application Data\Adobe\InDesign\Version 5.0\Caches, but you can't prevent anyone from making changes.
    If you want everyone to have access to a particular custom workspace, copy it to C:\Program Files\...\Adobe InDesign CS3\Presets\InDesign Workspaces.
    Peter

  • Apply password policy to all users

    Hi,
    I have been poking around with setting up a password policy on Sun DS 6.3.1. Everything works ok but I only have seen examples of how to apply the password policy to a single user, with an ldif something like:
    dn: uid=pepe,ou=People,dc=mycompany,dc=com
    changetype: modify
    replace: pwdPolicySubentry
    passwordPolicySubentry:
    cn=MyPolicy,dc=mycompany,dc=com
    but I haven't figured out how to apply it to all users or to a group of users. What I would like to do is to apply the policy to all users under ou=People,dc=mycompany,dc=com.
    Any tips ?
    Thanks in advance.

    For all users, simply modify the global password policy.
    For specific group of users, create a password policy and a Class of Service which links the users to the policy. Just search the directory server docs on how to do that in details.

Maybe you are looking for

  • Something I Would Like to see in Flash

    When creating animations I start with the final image and then animate the elements into position e.g. If I am animating the word FRY onto the screen then I would place the artwork for the word on screen and then create 3 seperate movies to animate t

  • RE: Short dump after activation of BADI

    Hi all, We are getting short dumps in all the transactions after activating the BADI  'BADI_LAYER' We are not able to execute any of the transactions. The details of runtimeerror Runtime Errors         RAISE_EXCEPTION Date and Time          30.07.200

  • Time Machine backup error message

    I am making a second backup with a new HD. It made the first Time Machine backup, but ever since, I get the error message "unable to complete backup". The Time Machine buddy gives me this message: Starting standard backup Backing up to: /Volumes/DIAN

  • Photoshop Cs6 Install fail

    I have downloaded Photoshop cs6 and recieved my serial from adobe this morning , the download completes but when i try to install in Frensh language mode , but the install fails and a message sais (in Frensh) : Echec de l'installation Il existe une v

  • Non English Fonts - Croatian Fonts

    Hi everzone, I am working on a document that is in Croatian language and forthat reason need to use some special Croatian letters (for example ć,č,đ,š,ž). However, fonts I have installed on my PC do not support these fonts and I am looking to find wh