How to use current windows login credientials to login other machines

Is there any way that i might use to RDP the serves using currently windows login credentials automatically ? Currently i am using smartcard for logging windows in the environment.

Hi,
After referring your comment, I can understand that you want to use same RDP credential which you are using with smartcard credential. 
As per my research, here I am sorry to inform you that if you are using Remote Desktop Services with smart card logon, you cannot delegate default and saved credentials. Other than that if you don’t use smartcard then you can able to save credential and can
enable SSO for terminal server connection.
More information:
1.  How to enable Single Sign-On for my Terminal Server connections
2.  Smart Card Group Policy and Registry Settings
Hope it helps!
Thanks,
Dharmesh

Similar Messages

  • How to use a Windows Help File (.hlp) - URGENT

    Hello!
    Can anybody tell me how to use a windows help file (.hlp) in my Java application? Is there any possiblity to reference a specific topic (by Help Context-ID)?
    Thanks in advance,
    Phil

    try calling the Runtime.exec() method
    pass the paramter String as <filename>.hlp
    i donno about the context
    regards
    rohan

  • How to close current window  of webdynpro application using webdynpro java

    Hi All,
    u201CTo close the current  window  of webdynpro application"
    if i using exit plug its giving the following error in portal runtime.
    u201Ccom.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Exit-Plug must no be triggered with an URL when running in portal. Use portal navigation instead to navigate to another application! u201C .
    could you send me the  process how to use  portal navigation for the above scenariou2026u2026instead of exitplug.
    Thanks& Regards,
    Srinivas.

    Hi,
    Follow the steps below:
    1. Create a new Window and embed a View which needs to be opened from the main view.
    2. Create a context attribute of type IWDWindow (Java Native Type Option)
    3. Write the following code in the controller for opening the new window:
    IWDWindowInfo windowInfo = (IWDWindowInfo)  
                                                     wdComponentAPI.getComponentInfo().findInWindows("<windowname>");
    IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    wdContext.currentContextElement().set<contextattributename>(window);
    window.show();
    4. In the new window, create a contextattribute and bind it to the attribute created in controller and on action of the close button write the following code:
    IWDWindow window = wdContext.currentContextElement().get<attributename>();
    window.destroyInstance();
    Hope this helps you.
    Regards,
    Poojith MV

  • How to use the windows phone default media player from my app

    hello every one,
    I build a windows phone 8 app , and i used this code, to play a video in the phone media player (didn't want to use MediaElement)
    using Microsoft.Phone.Tasks;MediaPlayerLauncher mediaPlayerLauncher = new MediaPlayerLauncher();
    i just see that in windows phone 8.1 i can't use this namespace and a lot of others, (I didn't understand why...)
    and i want to lunch a video in the phone media player instead using a MediaElment
    how can i do it?
    thanks,
    Or

    Hi Or,
    Using
    Launcher class is fine (not sure if you are playing with 8.1 Silverlight or runtime), you can launcher default system app by following code:
    var success = await Windows.System.Launcher.LaunchFileAsync(file);
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to use the windows API GetCaretPos with FireFox? It works with IE

    I want to get caret position from a windows desktop application using the Windows API GetCaretPos. It works in any windows Application and in IE. It worked also in FireFox for some minutes in version 3.6.8 but than it stopped working. Can anyone tell me how to make it work?
    == This happened ==
    Every time Firefox opened

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Did this fix your problems? Please report back to us!

  • Using Current Windows-based External Hard drive on Mac

    Hello,
    I have a MacBook Pro now. I have BootCamp installed with Windows Vista. Working fine. I also have a Western Digital 160 GB external harddrive with data on it from my old Windows only computer. In other words, it is formatted with NFTS.
    I want to be able to do one of the following things:
    1. Partition the external drive in half so I can use half of it for new Mac data while keeping my old Windows data
    2. Seamlessly use the external drive as is between Mac OS X and Windows being able to transfer data. Right now, if I boot into Mac OSX, I can see the drive on the desktop and actually see the files and folders. But if I try to drag anything to the drive, I get permission denied.
    Any hints here? Basically, in a nutshell, I am going to have data from both Windows and Mac OSX that I would like to save on the same external hard drive
    Thanks.

    You won't likely be able to make one hard drive with two different partition types if it is already partitioned (partly anyway) in Windows in NTFS. Mac Disk Utility won't deal with the unpartitioned space AFAIK.
    It cannot hurt to try in Disk Utility and see if it shows the 60GB only or refuses to mount at all which I suspect will be what happens.
    Anything but My Book is the answer (I have seen at least a dozen My Book complaints here) - normally with macs there are a few trusted makers and one interface - firewire (NOT USB). I use LaCie drives - 3000GB worth - and for portable I have an OWC, they make very high quality cases and drives and nice and small.
    I have a few others that I do not rely on like a 320GB USB drive that was $100 and the drive inside is worth more than the whole external drive actually cost which is why I bought it. And a small USB Maxtor for use with Parallels since Parallels won't see Firewire drives.

  • How to close current window in firefox

    hi friends ,
    i  am doing a web application in flex4 .now i am running in that firefox.i  want to close the current window while i am clicking close button.but i  couldnt make that please help me
    Thanks,
    B.venkatesan.

    To close Browser try JS  top.window.close();

  • How to use the windows key (super or hiper) as a keystroke modifier?

    I can associate the windows key (KeyEvent.VK_WINDOWS) as a regular key on a KeyStroke without problem.
    It can be alone or with a modifier, like CTRL+WIN
    KeyStroke.getKeyStroke( KeyEvent.VK_WINDOWS, InputEvent.CTRL_DOWN_MASK )My doubt is: Is there a way to use it as a modifier?
    In other words, is it possible to create the KeyStroke using the windows key with any other? e.g. "WIN+K"
    Thanks,
    Henrique Abreu

    Thanks a lot for the quick answer.
    Your KeyboardCommands class doesn't do it (but gives the idea), because it can only trigger an action on one key (like KeyStroke, that handles key+modifier).
    I could make big changes on it to add the functionality of triggering an event on a combination of keys, which would solve my problem.
    Although this solution is not so good because we totally give up of actions in Swing, which I mean stuff like actionMaps, InputMaps WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, etc.
    If KeyStroke class really doesn't provide this (unbelievable!), I wonder if there is a way to extend and enhance it? (or AWTKeyStroke)
    Can anyone say if its possible, before I go deep and find out that it isn't?
    Another secondary question (that I think doesn't worth a new topic), what's the META_DOWN_MASK or META_MASK? or where is this key?
    Henrique Abreu

  • When/How to use - "search" parameter type in parameter like other types.

    We recently upgraded BI Publisher to 10.1.3.4. I saw new parameter type "search" in parameter section, when creating report. whats the use of it? How to use it ? like other parameter type Text, Menu,Hidden, Date.
    I couldn't find any help or release notes on this !
    Thanks
    Ayaps

    I started looking into this parameter type when our drop-down for customer numbers went from 13,000 (manageable) to 45,000 (completely unmanageable).
    I imagine this is supposed to mimic the effects of a "Long List" type LOV in Oracle Applications (as I had inquired about in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=895521&stqc=true|Large List of Values (LoV) hangs. Is there an equivalent for a long list?]), but performance-wise, "Search" does not seem to be any more efficient that using the "Menu" type LOV. Even with the help of having a partial string with a wildcard to match, the "Search" still takes too long to pull up to be of any use to us.

  • How to use gps on iPhone 5c to find other user location

    I need to know  how  to use the gps on my Iphone 5s  to find other phone location for the same account. Is there any video how to use it?

    See your other identical thread for other suggestions: https://discussions.apple.com/thread/5971044?tstart=30

  • How to call application forms from network directory on other machine

    I have installed Oracle Application Server 10G Release2 without IDS (Developer) on my server. I put my application forms & reports on the same machine(APPSERVER) and run the application as follows:-
    http://appserver.www.ebs.com:7778/forms/frmservlet?form=\\appserver\pass_3_1.fmx
    My Application runs well. But i want to use the 'Pass_3_1.fmx' form from other machine's(SERVER) network folder as below:-
    http://appserver.www.ebs.com:7778/forms/frmservlet?form=\\server\pass_3_1.fmx
    I am not able to launch my application. It throws error 'Cannot read form \\server\pass_3_1.fmx'. I also tried mapping on F:\. But it didn't work.
    Please advise . Thanks in Advance.
    Regards

    Hi,
    I don't understand exactly your problem but I tel you that your application mast be reside in the application server and the URL to call your application shouldn't change:
    http://appserver.www.ebs.com:7778/forms/frmservlet?form=\\appserver\pass_3_1.fmx
    good luck.
    Soufiane

  • Formatted on Mac OS === how to use on Windows

    I´m traveling, and want to use my ipod 4G on my friend´s computer - windows xp. But when I connect the ipod, iTunes says this "iTunes has detected an iPod formatted on Macintosh. You must reformat this iPod to use it on XP".
    Is this for real???? Is there no way to use it without reformatting?
    Thanks!

    Is your iPod actually Mac formatted or is this an incorrect message? If your iPod is formatted for Mac it won't run natively on a PC because Windows operating systems don't recognize Mac OS-formatted disks (HFS or HFS Plus formats). Mac formatted iPods can only be used on a PC that has a third party helper program such as XPlay or MacDrive installed: How to determine your iPod's disk format
    Apart from that, if it is genuinely Mac formatted then no you can't use it without reformatting it for Windows. The problem lies with the Windows OS, Macs can read Windows formatting so had you been working the other way around you could have connected a Windows formatted iPod to a Mac.
    If it is Windows formatted and you are getting that message, try changing the drive letter associated with the iPod. You'll get details in this article: Windows confuses iPod with network drive and iTunes may exhibit strange behavior in relation to the iPod.

  • How to use Browse Window to store an image Path?

    Hi All
    I want to use a browse window to specify an image on the hard disk and then return it's path to a database field.
    How to do this?

    Forms [32 Bit] Version 6.0.8.11.3 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

  • How to use 2 AAA server for different login purpose

    Hello, could you help me?
    This is a part of my configuration; I would like to add another TACACS server, witch should take care of the telnet at vty 0 4.
    The Tacacs server 10.20.30.40 takes care of the virtual access, and I have another Tacacs server who takes care of login on our network equipment.
    ! Cisco 7204 with system flash c7200-io3s56i-mz.121-4.bin
    aaa new-model
    aaa authentication login default group tacacs+
    aaa authentication login no_tacacs enable
    aaa authentication ppp default group tacacs+
    aaa authorization exec default group tacacs+
    aaa authorization network default group tacacs+
    aaa accounting exec default start-stop group tacacs+
    aaa accounting network default start-stop group tacacs+
    aaa accounting connection default start-stop group tacacs+
    virtual-profile virtual-template 1
    virtual-profile aaa
    interface Serial2/0:15
    description ISDN30
    no ip address
    encapsulation ppp
    no ip route-cache
    no keepalive
    dialer pool-member 10
    isdn switch-type primary-net5
    isdn tei-negotiation first-call
    isdn caller xxxxxxx
    no fair-queue
    compress stac
    no cdp enable
    ppp authentication chap
    ppp multilink
    interface Virtual-Template1
    ip unnumbered FastEthernet1/0
    ip nat outside
    ppp authentication chap
    tacacs-server host 10.20.30.40 key ********
    line con 0
    exec-timeout 20 0
    password ************
    login authentication no_tacacs
    transport input none
    flowcontrol hardware
    line aux 0
    line vty 0 4
    access-class 1 in
    exec-timeout 60 0
    password *************
    login authentication no_tacacs
    transport input telnet
    transport output telnet
    If I just add
    aaa authentication login vtymethod group tacacs+ enable
    tacacs-server host 10.50.60.70 key ********
    line vty 0 4
    login authentication vtymethod
    My telnet request ask 10.20.30.40 and I have a deny! Could you help to make a secure solution?
    Thanks

    Jens
    I believe that your solution would be to configure a different tacacs server group with the new server in the new group and to use the new group to authenticate for your vty. The config might look something like this:
    aaa group server tacacs+ vty_TAC
    server 10.50.60.70
    aaa authentication login vtymethod group vty_TAC enable
    tacacs-server host 10.50.60.70 key ********
    I have configured this type of thing and it worked well. When I configured it I explicitly configured (and named) two different TACACS server groups and referenced specific server groups for each authentication method. I am not clear whether it works to keep the default group tacacs+ and use it for your normal authentication or whether you may need to configure a non-default group for it.
    Give it a try and let us know what happens.
    HTH
    Rick

  • How to use multiple Windows in a module in oracle forms

    Hi,
       I am new in oracle forms.I am using oracle forms 11g with weblogic server 10.3.5 at windows7.I have 2 canvases say CNVS1 & CNVS2 and two windows as Window1 & Window2.
    CNVS1 is attached with Window1 and having BL datablock.
    CNVS2 is associated with Window2 and having emp datablock.
    In navigation object window there is BL datablock before Emp datablock.
    When I run this module:I got only CNVS1 canvas at window1,If I click at Window2 from menu then Window2 Comes with empty, there is no any canvas(CNVS2) at window2.Please let me know what is wrong here.
    Thank You
    regards
    aaditya

    Hi Aditya,
    Just user Show_view('Your Canvas Name');
    If you have separate datablock for each of your canvases then you can use
    GO_BLOCK('');
    GO_ITEM('');
    Hope this will help you,
    Regards,
    Soofi

Maybe you are looking for

  • Can't view photos or stream videos from websites on iPad 3

    When I go to a website with safari, I can't stream video or view photo galleries.  It tells me that I need adobo flash player.  That is not supported for this device.  How do I see photoographs or stream video from websites??

  • Intergrated GPS

    Hello, I install the intergrated GPS in my mobile (Nokia N81 8GB). I need it for maps. thank you

  • Give us a way to get rid of the Home View screen after closing last document

    After closing the last open document, a new window pops up. Please let us disable this. It's bad in a production environment, gets in the way.

  • Use of cust Hierarchy?

    Hi, what is the use of cust Hierarchy at different levels of Sales cycle? Please answer with Instances! thanx in advance.

  • Alerts icons-caps on.

    hi experts, Using Jdev11.1.1.50-adfbc stack i had requirement such kind. i found out that this requirement blogged by a person (andrejus) i think. but I .. i Lost the link. and searched with different kind in google. not yet found. My requirement: no