Query to see what applications a user launched

We have setup a RDS farm and are wanting to check to see which users are using it.  I have been able to confirm user logons through the event logs.  Another thing we would like to check, is to see what applications that the user launched. 
Is there any logs that can supply that information to see what applications a user launched during their RDS session?

Hi,
Thank you for your posting in Windows Server Forum.
You can use command prompt with admin permission to check which user uses which application during remote session.
Query process {Username} {/Server:servername}
More information:
Query process 
http://technet.microsoft.com/en-us/library/bb490798.aspx
Hope it helps!
Thanks.
Dharmesh Solanki

Similar Messages

  • Is there a way to see what applications is using my mobile account for internet instead of using BIS?

    HI
    Is there a way or a app to download to see what applications is using my mobile account/airtime instead of using the BIS service? The reason for asking is that my airtime is being used on its own, without my knowledge. Please assist.

    so if we do have the same apple id is it possible to delete if from any of the other devices or any where I can just unactivate them from my apple id account to where it would delete the message if they happened to get it?

  • How do i see what applications are running in the background

    My iMac is running very slow my operating system is OS X Yosemite Version 10.10.2 with a 2.5 GHz Intel Core i5 Processor. How do I see what applications are running in the background?

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Any report to see what are the users assigned to an org-unit ?

    Hi All,
    Is there any standard report available to see what are the users assigned to a particular org-unit?
    I'm looking for complete list of users assigned to a particular org-unit both directly and indirectly/
    Thank you so much in advance !!
    Cheers,
    Gyan.

    Hi,
    None of them actually helped.
    Trx PC00 is not available in 4.0 sytem. And from the table mentioned i don't see the org-unit value. Could you please elaborate on this.
    Thanks,
    Gyan.

  • What is a query to know what Privileges a user is having?

    what is a query to know what Privileges a user is having?
    for both DBA and System....
    Thanks in advance.

    This is a complicated question. Because roles have privileges. And those privileges can be roles. So the level of nesting can get quite complex quite quickly.
    So the best thing for you to do would be to check out Pete Finnegan's find_all_privs.sql script, which does the whole thing for you.
    Cheers, APC

  • SCCM Application Catalog Query / Report - List of Applications a User Can Install

    Hello,
    In SCCM, if a user launches the application catalog, they are presented with a list of application that they have access to install. We don't use the approval request feature.   I was wondering if anyone knows of a report or SQL query that would
    return the same results as if I launching the application catalog as that user.   I just want the name of the application.
    E.g.  List all applications ADDOMAIN\JOHNDOE has access to install.
    ADOBE Reader
    Visio 2010
    Access 2010 etc.
    Thanks.
    Yves

    Find the collections were the user is member of (v_R_User -> v_FullCollectionMembership) and see which available deployments are available (v_DeploymentSummary).
    Torsten Meringer | http://www.mssccmfaq.de

  • SQL query to see what the db/schema is doing

    My apologies in advance as I am sure this has been covered. However, my google foo is failing me. :(
    Oracle 11g on Centos 5
    I am running a script against the database from my local pc through command prompt. I am wanting to run a query against the db to see what part of the script it is running and if it's possible I would like to be able to see if it is doing read / writes. Similar to an onstat on informix.

    Welcome to the forum!
    >
    I am running a script against the database from my local pc through command prompt. I am wanting to run a query against the db to see what part of the script it is running and if it's possible I would like to be able to see if it is doing read / writes. Similar to an onstat on informix.
    >
    Oracle has no equivalent to onstat - http://www.oninit.com/onstat/
    Oracle also has no knowledge of your 'script' contents.
    As SB mentioned you can get a list of sessions and their identifiers. Then you can query the V$SESSION_LONGOPS system view to get information about long running operations.
    See V$SESSION_LONGOPS in the Database Reference. The same doc (see index) has information about V$SESSION and V$SQL
    http://docs.oracle.com/cd/B19306_01/server.102/b14237/dynviews_2092.htm#REFRN30227
    >
    V$SESSION_LONGOPS
    This view displays the status of various operations that run for longer than 6 seconds (in absolute time). These operations currently include many backup and recovery functions, statistics gathering, and query execution, and more operations are added for every Oracle release.
    To monitor query execution progress, you must be using the cost-based optimizer and you must:
    •Set the TIMED_STATISTICS or SQL_TRACE parameter to true
    •Gather statistics for your objects with the ANALYZE statement or the DBMS_STATS package
    You can add information to this view about application-specific long-running operations by using the DBMS_APPLICATION_INFO.SET_SESSION_LONGOPS procedure.
    >
    If you provide more information about what commands are in your script, what the script does and what information you are trying to obtain maybe we can be of more help.

  • Reader SDK: any way to see what text the user has selected?

    I'm using the Adobe Reader SDK with C#, looking at the interapplication communication features.
    I can open a document in Reader and allow the user to user the reader tools like select text, etc.
    Here's the problem: I want to have my application know what text the user currently has selected.  And I'd like it to know the name of the field that the user has selected, not just the text of the field.
    Microsoft Office's Interop has something like this:
    currentDocument.GetSelectedText();
    Is there any way to do this with IAC or the javascript or plug-in features of the Reader SDK?
    If not, can it be done with the Acrobat API?  I've looked through both sets of documentation, and haven't found what i needed.
    Thanks for any help!

    To write a plug-in for the Adobe Reader you need to go through 2 separate steps.
    Step one - Download the Adobe Acrobat SDK (from here http://www.adobe.com/devnet/acrobat)
    and build your plug-in against the Acrobat product, following the documentation to make sure you only use API's that are available in the Reader program. The documentation tells you what version of the Adobe ACrobat or Reader program is needed for the function and whether the function can be called in Reader.
    Step two - Apply for a Reader certificate to allow your plug-in to be loaded by the Reader, the link is on the same web page as the above link. This step can be initiated before you have created your plug-in, and I would recommend that you do start this process before you develop your plug-in as Adobe can refuse to give you the certificate in which case all your development would be wasted.
    Only once you have permission form Adobe can you make your plug-in work with the reader application.
    Once you have done both these steps there are plenty of people on this forum that can help you with specific problems you may encounter.
    If you are not sure you have the knowledge to build the plug-in, there are plenty of people that you can hire to create the solution for you.
    HTH
    Malcolm

  • Can i see what questions a user has answered incorrectly??

    Hi
    We have various Captivate training modules that are placed on a GeoLearning LMS.
    All the modules have 5 Questions at the end. The quiz preferances are set up in such away that the user is required to get 100% to pass and is allowed to retake the quiz one more time if they fail first time round.
    My issue is that some of our users in Malaysia are failing the course even after the second attempt.... yes its fine and simpl enough to re-asign them the course but ideally i would like to see what question they are failing on.... if there is a trend then maybe there is a gap in the actual training material.
    Is it possible for me to review the quid the user has taken and understand where thay are answering incorrectly?
    Any help appreciated
    Darren

    All
    i have been using this Wodget now and the data is appearing on the adobe dashboard .. Brilliant
    1 question... if i have a course set so the user can retake the quiz another time if they get it wrong will there quiz results be sent to the dashboard twice, or will only the second attempt be logged?
    For example i have a module with 5 questions and a pass rate of 100%
    If the user gets 2 questions wrong they then have the option to retake... hopefully then getting them all correct... if not they then Fail the course and need to be re assigned it.
    If they pass on the second attempt will the dashboard show that the 5 questions have been taken twice and 2 were answered incorrectly the forst time... or will just the second attempt here they got them all correct be logged?
    Thanks

  • Checking to see what button the user pressed.

    Hello to All,
    I have a web page I am trying to create Its a form that
    allows users to enter in career information . The problem is that I
    have 1 row shown to the user at a time and when the user presses
    the (Add new) button, I want another row to appear to let the user
    enter more career information. I have figured out a way to do this
    using <cfif IsDefined("FORM.Add")> , But I don't want to send
    the form to the server, I just want to check the button and then
    add a new line without a form.submit, because right now I have 2
    forms on the page. Is there anyway to check the button pressed
    without a form submit. Like is there a coldfusion check to see what
    button has been pressed.
    sample code:
    Thank you.

    Hi,
    You can add additional rows already on the server in CF, but
    hide them with CSS, and have the add button just switch them to
    visible (with a little java script), like in the sample below.
    cheers,
    fober
    <cfset number_of_fields= 15>
    <cfoutput>
    <cfloop index="x" from="1" to="#number_of_fields#">
    <cfif x IS 1>
    <cfset style= "display:block;">
    <cfelse>
    <cfset style= "display:none;">
    </cfif>
    <div id="field#x#" style="#style#">
    <input type="File" name="field#x#"><br>
    </div>
    </cfloop>
    </cfoutput>
    <input type="Button" id="btn_add"
    onclick="visible_add('field')" value="Add File">
    <script language="JavaScript">
    function visible_add(id){
    var counter= 1;
    do{
    obj= document.getElementById(id + counter);
    if ( obj.style.display == 'none') {
    obj.style.display= 'inline';
    return;
    counter++;
    }while ( document.getElementById(id + counter) != null )
    document.getElementById('btn_add').style.display = 'none';
    </script>

  • Uable to see link 'Managing Application Express Users'

    When I login to admin page for the workspace, I can only see 'Monitor Activity ' 'Change Password ' and 'About Application Express ' links not other two mentioned below. Am I missing something here. Please help
    About Administration
    An Administration list appears on the right side of the Workspace home page. Use the following links to administer your application development environment:
    Administration links to the Application Administration page. Use this page to perform administrative tasks. See "About the Application Administration Page" in Oracle Application Express Administration Guide.
    Manage Services links to the Manage Services page. Use this page to manage session state, log files, preferences, and application models. See "About the Manage Services Page" in Oracle Application Express Administration Guide.
    Manage Application Express Users links to the Existing Users page. Use this page to manage existing Application Express users and user groups. See "Managing Application Express Users" and "Using Groups to Manage Application Express Users" in Oracle Application Express Administration Guide.
    Monitor Activity links to the Monitor Activity page. Use this page to monitor page views and view application changes. See "Monitoring Activity within a Workspace" in "Oracle Application Express Administration Guide.
    Change Password links to the Change Password page. Use this page to change your workspace password. See "Resetting Your Password" in Oracle Application Express Administration Guide.
    About Application Express links to the About Application Express page. This page displays version and configuration information for both Application Express and the Oracle database. See "Viewing the Application Express Product Information Page" in Oracle Application Express Administration Guide.
    About Migrations

    User,
    What is your name?
    It sounds like you've been configured as a developer, not a workspace administrator. You'll need to talk to the person that created your account.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Application Builder: Application closes after launcher

    I'm trying to run the executable of my application that was built with the Application Builder. I am using actor framework and have a Launcher.vi that is set as the Startup VI and launches the parent actor. When I run the executable, I can see the Launcher.vi front panel open and close quickly, but the main front panel never opens. Where do I begin to debug my executable? Is there something obvious that I am forgetting to do? I have compared my application configuration to the Actor Framework example (which does produce a working executable) and can't find anything that is different.
    Solved!
    Go to Solution.

    OK, I figured out it. I went back and looked closer at the launcher for the Actor Framework example and noticed that the Launch Actor VI block does not have "Open Actor Core front panel" set to true which I thought was strange because the front panel opens correctly for that application. I poked around in the VI properties for the example projects parent Actor Core.vi and saw that Window Appearance has a custom configuration. The options for Show front panel when called and Close afterwards if originally closed were checked in the example project but un-checked for my project. I also looked at the Execution settings and saw that the example is configured for Shared clone reentrant execution while my project is configured for Non-reentrant execution.  
    The Window Appearance change correctly launches my main front panel. I played with the Execution settings to see what those did and noticed that when my VI is configured for Non-reentrant execution, child actors don't seem to be getting launched. Additionally, the stop button on my front panel will close the front panel but the application is still running. Changing the mode to Shared clone launches child actors properly and completely closes the application when the stop button is pressed. I also tried Pre-allocated clone reentrancy to see what would happen; the launcher just errors out immediately saying the Call by Reference VI is not exectuable. 
    I guess that makes sense. Actor Framework expects that state is not maintained when an actor is destroyed, so shared clone ensures that each instance of a child actor is given its own memory pool to be cleared when the actor is stopped. http://zone.ni.com/reference/en-XX/help/371361J-01/lvconcepts/reentrancy/

  • Where does it say what applications are open?

    Just updated to os x maverick. before I was able to swipe and see what applications i had running even if I closed the window. How do i do that now?
    If I close safari but it's still running in the background how can I tell?
    thanks!

    It is possible to see what apps are running from the little white light in the Dock, or by using Command Tab, which will show you what apps are open and allow you to switch to them. Mission Control will also show you what is open.
    However, with increasingly fast SSDs and improved memory management, it shouldn't really matter whether you access an app by launching it or by switching to it.

  • Query to see registered objects

    Is there a query to see what PL/SQL procedures are registered as a callback to a specific queue? I would like to verify that the call to dbms_aq.register was successful.
    _mike                                                                                                                                                                                                                                                                                                                                                                           

    Hi _mike,
    I needed this information as well, I found somthing in reg$ table when logging on as sys-user, found it via sql-trace
    regards
    Markus

  • How do you see SubRoles for a user

    I am in a workflow with a user variable, I can access
    :variables.user.waveset.roles
    to see what roles the user has, but what about the SubRoles that are assigned as part of the Roles?
    i.e. I have a multi select box with all Roles...
    I want to remove the SubRoles from the box should you select the Role that contains them.

    Hi Mark,
    You'd have to do something like this;
    - Create a Rule in XPRESS that iterated over each of the Roles assigned to the user and invoke the java method available on the com.waveset.object.Role object
    java.util.List      getSubRoleList()
              Return the current list of roles assigned to this role
    <dolist name='currentRole'>
              <ref>user.waveset.roles</ref>
              <set name='roleObj'>
                <invoke name='getObject'>
                  <ref>theSession</ref>
                  <invoke name='findType' class='com.waveset.object.Type'>
                    <s>Role</s>
                  </invoke>
                  <ref>currentRole</ref>
                </invoke>
              </set>
    <block trace='true'>
              <set name='subRoles'>
                <invoke name='getSubRoleList'>
                  <ref>roleObj</ref>
                </invoke>
              </set>
             <ref>subRoles</ref>
    </block>
       </dolist>HTH,
    Paul

Maybe you are looking for