How to find users who are running IE with different credentials ?

How to find users who are running IE with different credentials ? 
Is there any tool or a solution in the market will help or a i can use GPO or even Power Shell ?
thnx & Regards ,,

Hi Salman,
Based on your description, we can use Windows Credential Manager to check this. Windows Credential Manager stores credentials, such as user names and passwords  that we use to log on to websites or other computers on a network.
Regarding Credential Manager, the following article can be referred to for more information.
Credential Manager
http://windows.microsoft.com/en-in/windows7/what-is-credential-manager
Manage passwords in Internet Explorer using Credential Manager
http://www.thewindowsclub.com/manage-passwords-internet-explorer-10
Please Note: Since the above website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
Best regards,
Frank Shen

Similar Messages

  • How to find users who are inactive.

    Hi I want to find users who left the company. I ran program rsusr200 in se38 but not understanding which option will clearly give me the invalid users. Also i had a doubt. Does users with password deactivated that the user left the company.
    Thanks in Advance for your help

    The "password" field in this report will not necessarily show you users who have left the company. The password may be be "active" since this is a new user and they have not yet logged on. You would need to compare as well the field "Created On". I would use the last logon field as an indicator of who may have left - if someone has not logged on in 90 days, that could be an indicator.

  • How to find user who loaded the procs in DB

    Hi guys how to find user who loaded procs in database ..and the date...
    is there anyway..
    i tried to look at all_objects..but it didnot workout..
    thanks

    That is correct. You will only have audit rows for item that you are auditing. I am suggesting you audit all DDL in a production database since production jobs should not perform DDL with the probable exception of truncate. This will provide this type of information going forward. It will not help you answer the question of who created the procedure last week?
    Auditing is explained in the Security manual and the full comand syntax is available in the SQL manual.
    You can easily write a purge the audit data to remove data once it is no longer of interest based on the date the audit row was created.
    HTH -- Mark D Powell --

  • How to find employees who are missing a particular infotype?

    I am trying to find people who are missing IT 0023 (Previous employer) and IT 0094 (Residence status). How do I find the employees who are missing infotypes. I can easily find people with those infotypes.
    Thanks
    Manish

    Hi
    will give you a hint using data analysis perspective, hope it might be useful for you.
    in data analysis you can get total number of employees (personnel numbers) who have certain characteristics (active employee for example) from PA0000 and then you can compare vs number of employees (personnel numbers) in the record infotypes you want to check.
    download records from PA0023 an PA0094. you may process the data using pivot table. then you can compare which personnel number does not have record in related infotypes.
    use tcode SE16 Data Browser or use sap query
    Edited by: dhenny  muliawaty on Mar 15, 2011 4:52 PM

  • How to find dependents who are currently enrolled in a health plan

    How do you programmatically find which dependents are currently enrolled in a health plan?
    I have tried function: HR_BEN_GET_POSS_DEPENDENTS. This never returns which dependents are SELECTED.
    I have tried BAPI_BEN_BUS302901_GET_DEP, but this does not get me any data.
    Please advice.
    Thanks
    Agina

    Hi M_agina,
    I have a similar requirement, can you please help me resolve this,
    Regards
    Manu

  • How to find which backups are running  - whether RMAN or EXPORT or EXPDP ?

    I need to find using SQL which backups are running at a particular time . I want to use SQL for this.

    Hi,
    Check the V$session view to get it.
    SELECT SID,PROGRAM FROM V$SESSIONThe program will give you the
    In case of export it will give you - exp.exe under the PROGRAM
    In case of expdp it will give you - expdp.exe under the PROGRAM
    In case of RMAN session it will give you -
           SID PROGRAM
           140 exp.exe
           158 expdp.exe
           138 rman.exe
           149 rman.exeRegards,
    Vijayaraghavan K

  • How to find user who released a PO

    Hi all,
    I need a table-field (if exists) to determine the user that has released a purchase order.
    I can find which release strategy and respective status, but not the users that has released it.
    Can any help?
    thanks in advance
    FT

    Hello
    OBJECTCLAS = 'EINKBELEG'

  • How to find which applications are running

    I cannot figure out where on the HD to look to see which apps on my iMac are open.
    Other than the ones highlighted in the dock, can there be others open?
    I was ejecting my external HD and a message reads 'it is in use, try quitting applications'.
    As far as I can see, I have quit them.

    Every application that is open goes into the dock and has a blue light under it until the application is closed.... if that application is not added to the dock, then the icon just disappears...
    If application is added to the dock, then when you end the program the little blue light under the icon disappears.
    Cheers

  • How to find which songs are not synchronized with iPod?

    I have about 5,000 songs in iTunes and the same minus 7 in the iPod.
    How do I find the songs that were not synchronized?
    Thanks,

    Hi, the instruction are difficult to follow, I am not a programmer. Secondly I understand that it finds duplicate songs. My problem that some tongs were not transfered to iPod for some reason. I checked the duplicate songs from the menu and it showed hundreds, because some of them in the Best of or live Albums.
    I think iTunes should have an option finding non synced songs.
    Thank you,

  • Deactivate users who are no longer exist in AD but were added into resource pool

    Hello forum members,
    does anyone know how to deactivate users who are no longer exist in AD , but were added into resource pool?
    I an trying to write some code that would update a custom value for each resource, but my code breaks whenever it encounters a resource that is not longer exists in AD. Any suggestions are appreciated.
      // Modify the resources, code was taken from http://msdn.microsoft.com/en-us/library/websvcresource.resource.updateresources(v=office.12).ASPX
                    foreach (SvcResource.ResourceDataSet.ResourcesRow resourceRow in resourceDs.Resources)
                        Console.WriteLine("Check out " + resourceRow.RES_NAME);
                        if (resourceRow.IsRES_CHECKOUTBYNull())
                            resourceSvc.CheckOutResources(new Guid[] { resourceRow.RES_UID });
                            checkedOut = true;
                        else
                            if (resourceRow.RES_CHECKOUTBY == me)
                                checkedOut = true;
                            else
                                checkedOut = false;
                                Console.WriteLine("\tCan't check out this resource, skip updating this one.");
                        if (checkedOut)
                            SvcResource.ResourceDataSet updateDs = resourceSvc.ReadResource(resourceRow.RES_UID);
                                if (resourceRow.RES_TYPE <= (int)PSLibrary.Resource.Type.INACTIVATED_OFFSET)
                                    updateDs.Resources[0].RES_CODE = "A" + rand.Next(1000, 9999);
                                    Console.WriteLine("Update RES_CODE to " + updateDs.Resources[0].RES_CODE);
                                    resourceSvc.UpdateResources(updateDs, false, false);
                                    Console.WriteLine("Check in " + resourceRow.RES_NAME);
                                    resourceSvc.CheckInResources(new Guid[] { resourceRow.RES_UID }, false);
                        Console.ForegroundColor = ConsoleColor.Yellow;
                        Console.WriteLine("".PadRight(30, '-'));
                        Console.ResetColor();
    tatiana

    This is the logic I used:
    1) Try to inactivate the user
    2) If it fails with "AdminNTAccountNotFound" then delete
    try {
    using( OperationContextScope ocs = new OperationContextScope( resourceClient.InnerChannel ) ) {
    resourceClient.CheckOutResources( new Guid[] { resourceUID } );
    // Perform the update
    rsDS = ( SvcResource.ResourceDataSet ) rsDS.GetChanges();
    resourceClient.UpdateResources( rsDS, false, true );
    catch( Exception ex ) {
    if( ex.Message.Contains( "AdminNTAccountNotFound" ) ) {
    try {
    resourceClient.CheckInResources( new Guid[] { resourceUID }, true );
    catch {
    //The resource does not have a valid account, deleting...
    using( OperationContextScope ocs = new OperationContextScope( resourceClient.InnerChannel ) ) {
    resourceClient.CheckOutResources( new Guid[] { resourceUID } );
    resourceClient.DeleteResources( new Guid[] { resourceUID }, "No longer in RBS structure and/or AD" );
    120811049008

  • How to find user details o who are using bw reports

    Hi BW Experts,
    I want to know the details of users who are using bw reports.Your help is greatly appreciated.
    Thanks & Regards
    Pakki

    Hi,
        You can see it BW statistical reports. Once check 0BWTC* (3.5)  or 0TCT* (7.0) cubes are availble in your system or not ?
    Please check these links.
    http://help.sap.com/saphelp_nw04/helpdata/en/8c/131e3b9f10b904e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f0/3c8c3bc6b84239e10000000a114084/plain.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5401ab90-0201-0010-b394-99ffdb15235b
    Or else you can only get this information if the query/ workbook is enabled for statistics logging in transaction RSDDSTAT.
    If it is enabled you can goto table RSDDSTAT ( 3.5) or RSDDSTAT_OLAP( 7.0 ) to see the users who executed the query . These tables store all the information per query session and you will find more than one rows per session but you can find the information you want i.e. users executing a particular query.
    Also Tcode: SU01 will give you all the user lists in the server.
    Regards
    Pcrao.

  • How to keep track of the users who are all currently logged in

    Hi All,
    I have basic knowledge of Session and Servlets. I am wondering how to keep track of the users who are all currently logged in. There should be some way of achieving it.
    I thought of it and come up with having an Application variable that hold it when ever a user successfully logged in.
    Thanks in advance for any reply.

    You can do this by keeping data in a static veriable in a some class of yours. The variable will need to be a collection.
    Whenever a user loogs in to the site a servlet/jsp should put the users information in to the collection and when logs off or when the session expires the entry should be take off.
    You can achive this by storing the velues in a some sort of a week collection where the entries are automaticaly removed when all the other refferences to the entry goes out of scope.
    You might need to read bit about java.lang.ref package and WeekReference
    Or you can make the entry in the collection contain the last time that the user visited any of the pages and a thread can run time to time and clean up the older entries which have timed out

  • How to list of Users who are using Crystal XI application?

    Hi all,
    Thanks for your support provided so far.
    I need to get the list of users who are all using the Crystal XI application. I tried to get this info from the Business Objects Enterprise Applications in CMC but it was not there. Where can I find this information?
    kindly help me.
    Thanks,
    Bhuvan R

    There is not such a portlet available out of the box...
    Have you looked at the code share section?
    If you want to develop yourself, I don't think this is achievable using the IDK (remote interface)
    But It is definitely possible to create such a portlet using the server API (drawback: the portlet has to live where a portal component is installed - WS, automation or Portal)

  • How to see all users who are allowed permissions for the specified entity ?

    How to see all users who are allowed permissions for the specified entity ? 
    And change user permissions for the current entity
    from Moscow with money

    Vincent,
    ... and how to change entity permissions for some users?
    from Moscow with money

  • Find the Users who are Currently logged in

    Hi SDNers,
    I have Admin rights. Is there any way to find the Users who are Currently logged in?
    Please suggest.
    Thanks & Regards,
    Priti Rani Patnaik

    Hi Priti,
    Check the Connections table under Admin node which shows the users who are currently logged in along with the application users are accessing.
    Regards,
    Jitesh Talreja

Maybe you are looking for