How do RDP clients obtain license from host/license server?

Hi,
I have a W2k8 R2 server setup with Remote Desktop Session Host and Licensing. This will be used to allow more than 2 RDP connections to a server. 
 Can someone explain the process from the client side, getting the license from the host/licensing server, then connect to the server they need to manage?
What configuration is needed on the client/server side to know it needs check for a RDP license?
Thanks in advance,
J

Hello,
Below is the licensing guide for Remote Desktop Services.
http://technet.microsoft.com/en-in/library/dd983943(v=ws.10).aspx
How the connection works,
The clients will first connect to Remote Desktop Session Host. The Session host will forward it to the License Server.
You have the option to tell the Remote Desktop Session host to say which is the license server it should contact. Check this link below to see how to do this.
http://hookorcrook.net/2011/12/19/configuring-remote-desktop-services-licensing-server-windows-server-2008/
All the CAL licenses will be installed and configured in the License Server.
There are two types of CAL licenses - Per User and Per Device CALs. Based on the type of license available in the License server, the license will be obtained and the user's connection is forwarded to the Remote Desktop Session host server.
If no license is available in the Licensing server, it will fail there.

Similar Messages

  • How can I use LDAP searching from OSX Lion Server to Mozilla Thunderbird?

    How can I use LDAP searching from OSX Lion Server to Mozilla Thunderbird?  We have a super awesome contacts server that works great for our Mac users.  About 30% of our company are on PCs, and I would like to use the Mozilla Thunderbird mail client for them.  I see that in Thunderbird I can set up LDAP searching, and would like to have this feature point to our contacts server.  I've tried several different settings, and looked all over the web, but could not find the proper way to configure this.  Does anyone know if this can be done, or if not, would have a better suggestion?  Thank you for your time!!

    try double clicking keychain acces should launch and ask if you want to install login, system, System roots
    A dialog box will launch asking where to install the cert since your configuring a vpn I would put the certificate it in system.

  • HT2500 how do i get my mail from the pop server to my inbox

    Can someone please help me ! I'm sure I did something by accident and don't know how to fix it. My problem is i don't see any emails in my inbox, however my account info says there is mail on the pop server. how do i get the mail from the pop server to my inbox?
    thank you for helping

    First try rebuilding your Inbox.
    Select the Inbox.
    Under Mailbox in the Menu bar select Rebuild (last option in list)
    Note: If you delete a POP account in Mail, it will delete any messages in the Inbox. It does not delete your custom folders or your sent messages.
    If the messages have been deleted and are no longer on the server, you can restore from Time Machine.
    Let us know if this helps.

  • Is there any way to obtain time from an NTP server in LabView?

    I would like to be able to obtain time from and NTP server and then use that to set the time on a PCI IRIG-B card. I haven't been able to find any LabView documentation indicating if this is possible or not through LabView.

    Check: Code library -> Browse by Company -> NASA -> Timesync.
    It's a NIST time syncronizer. I never checked it myself, but NIST has NTP servers so this may help you on your way.

  • How can my client program call program located at server?

    Hi All,
    I have a client-server application. How can my client program call program located at server?
    At the beginning my program works as long as RSA Agentinstalled at client. So my program only call rsa library and communicate with RSA Agentby passing userid and passcode. Once RSA Agent receive it will send to RSA Managers to validate.
    But now my user want the RSA Agent installed in my Server. I wondering how to do that as the library given will only detect local RSA Agent. So I'm thinking to separte the library and create new project. Then in this project as a medium to pass userid and passcode. This project I will compile and allocate to server. Then my programs will call the new program i created by passing userid and passcode. I wondering can I do that?
    Thanks in advance.
    Regards,
    Azli

    Why not take the tutorial first? [http://java.sun.com/javaee/5/docs/tutorial/doc/JavaEETutorial.pdf]

  • How to find temp-Dir on client and how to fiend client IP adress from Web-Dynpro

    CL_GUI_FRONTEND_SERVICE cannot be used and there are some hints to use ACF-Excecute. Hope this is not the only choice.
    Thanks Volker

    Hi Volker,
    Regarding question 2 , how to find client IP from WDA.
    In the window of the application use the information that comes from the object wdr_task=>client_window, this contains the values for the IP of the remote address.
    *Reward points if useful
    Cheers,
    Nihar

  • How to uninstall RDS user cals from RD licensing manager?

    I have installed to many RDS user cals on our RD licens manager by accident.
    How do I reduce/remove the number of licenses in the RD licensing manager, Win server 2008 R2?
    Regards SL

    Hi SL,
    You erroneously posted your question on the Project forum which is dedicated to the Microsoft scheduling and planning application.
    Please go to the
    Win Server 2008 R2 TechNet forum.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How to retrieve null-valued attributes from a LDAP server?

    (I posted this in the ES board but then thought this is more of a programmer's question, sorry for the duplication).
    I am using JNDI api to do search operations on a Java Directory Server( part of SunOne).
    However, I found all the attributes that do not have values are automatically filtered out from the search result.
    NamingEnumeration answer = ctx.search(ctxName, filterExpr, cons);
                   while(answer.hasMore()){
                        SearchResult sr = (SearchResult)answer.next();
                        Attributes attrs = sr.getAttributes();
                        for(NamingEnumeration ne = attrs.getIDs();ne.hasMore();){
                             System.out.println("ids:"+ne.next());
                        System.out.println("-------------------------------------------------------");
                       for (NamingEnumeration ae = sr.getAttributes().getAll(); ae.hasMore();) {
                           Attribute attr = (Attribute)ae.next();
                           System.out.println("attrName:"+attr.getID());
                           //System.out.println("attribute: " + attr.getID());
                           NamingEnumeration e = attr.getAll();
                           while(e.hasMore()){
                                 System.out.println("  attrVal:"+e.next());
                       }Is there anything I did wrong here?
    Here are a couple of things I noticed,
    1. in a Softerra LDAP browser, those no-valued attributes are not present either. But in JXplorer, I can see the full list that includes the attributes that do not have a value.
    2. I had Schema disabled in the server console.
    Thank you in advance.

    There are only two ways to read data from Directory Server:
    1. a. just fetch the entry
    b. display the content
    2. a. fetch the entry
    b. parse the entry and figure what object classes it is of
    c. lookup each object class definition in the schema and retrieve the attribute list
    d. combine the attributes of the entry with all the "possible" attributes of its object classe(s)
    e. display the content
    Here's for an easy example we can relate to:
    I have the following entry in my DS
      cn=the_duuuuuude,dc=forum,dc=sun,dc=com
      objectClass: person
      cn: the_duuuuuude
      sn: arnaudIf you use method 1, you will get just what is stored in the db. That is:
      cn=the_duuuuuude,dc=forum,dc=sun,dc=com
      objectClass: person
      cn: the_duuuuuude
      sn: arnaudif you use method 2, you will get:
      cn=the_duuuuuude,dc=forum,dc=sun,dc=com
      objectClass: person
      cn: the_duuuuuude
      sn: arnaud
      description:
      seeAlso:
      telephoneNumber:
      userPassword:because when you looked up the 'person' object class you got this:
    objectClasses: ( 2.5.6.6 NAME 'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword ) X-ORIGIN 'RFC 2256' )Now the important thing to note is that physically in the database, the attributes description, seeAlso, telephoneNumber and userPassword are NOT stored. It's not that they have a 'null' value. They're just not there. It doesn't stop you from looking up the schema.
    Optimally, in your client, you would fetch the whole server schema and cache it so you have to do the extra round trip for every entry you process.
    The difference you observe with various LDAP browsers might simply be that one uses method 1 and the other method 2.
    Hope this helps wrap your mind around this.
    -=arnaud=-

  • How to execute 2 different application from same Application Server

    Hi,
    I would like to know that how to execute two different applications from the same Application Server with different databases?
    We are using
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    Oracle Application Server 10g 10.1.2.0.2
    Regards,
    Hassan

    what type of applications you want to run from the same application server, Hassan?
    What other DB are you using to launch it beside the one you quoted? Is it the MRep DB of infra?

  • How can a client know the ip of the server?

    How can a client locate a rmi - server without
    have the ip of the server.
    Is there a methode that can check if there's a
    server in a L.a.n?

    We have used 2 different solutions.
    1. Our servers use UDP multicast and send out empty packets every second. The client listens on the multicast address:port, and once it sees a packet, it bootstraps the RMI object by contacting the registry on the server that sent the multicast.
    2. In another case we use JNLP/ Webstart to launch the client. With JNLP you can pass a parameter through to the app's System.properties via -D option on the command line using the jnlp property tag. If you change the ip address of the server you just update the *.jnlp file's particular <property> tag with the new value. The next time everyone launches the app, webstart will see that the *.jnlp has changed, will download the latest version of the jnlp file, decide it has all the correct jars etc, then launch the app with the new property value.
    This is a great way to centrally manage the configuration of multiple clients when the configuration is the same on all clients but might change over time.
    Bruce

  • How Do I Edit Footage Recorded From Adobe Media Server?

    I'm using the current version of Premiere Pro CC and I'm trying to import videos recorded live from Adobe Media Server.
    I'm assuming it's the "nellymoser" audio codec that's stopping me from importing the recorded flvs.
    I've been transcoding using ffmpeg, but I want to speed up this process. Any ideas?
    Also, this may be a stupid question, but why the heck is a codec (nellymoser) that is owned by Adobe not supported by Adobe Premiere Pro?

    I was reading up about nellymoser on Wikipedia (the most reliable source!) and it seems like Adobe has problems with the licensing for nellymoser. They apparently tried to release a standalone converter, but the licence agreement that was inherited with the codec didn't allow it.
    So maybe it's just a rock in a hard place situation. Really too bad, if this is the case, that a company can own something but not be able to allow their customers to use it fully.

  • Cannot get client to build from sol10 jump server

    Am trying to build a sol10 client useing a sol10 jump server.
    Have built sol10 clients of sol9 jump servers without problem.
    However this is the first time with sol10 as the jump server.
    Which is why I'm assuming a server(sol10) isssue rather than client.
    Anyone know why the client might be hanging at the follwoing point:-
    Executing last command: boot net -v -install
    Boot device: /pci&#64;1f,0/pci&#64;1,1/network&#64;c,1 File and args: -v -install
    38600 Using RARP/BOOTPARAMS...
    Internet address is: 10.10.10.4
    hostname: netra1
    Found 10.10.10.6 @ 8:0:20:f5:9c:b8
    root server: avon (10.10.10.6)
    root directory: /jumpstart/OS/sol10/Solaris_10/Tools/Boot
    Size: /

    Update
    I have now turned off DHCP hoping it will pick up from the central DHCP server - System.log now looks like this:
    Aug 16 11:13:19 adt-management bootpd[670]: BSDP INFORM [en1] 1,c8:2a:14:1f:df:e6 arch=i386 sysid=iMac12,2
    Aug 16 11:13:19 adt-management bootpd[670]: NetBoot: [1,c8:2a:14:1f:df:e6] BSDP ACK[LIST] sent 10.30.6.228 pktsize 300
    Aug 16 11:13:19 adt-management bootpd[670]: service time 0.000191 seconds
    I cannot ping the client machine now from the server.

  • How can I read a email from a POP3-Server?

    Hallo,
    I want to read emails from a POP3-Server.  Also attached files.
    I use LabVIEW 7.0 and the Internet toolkit.
    Any suggestions?
    Thank you
    Thomas

    Hallo Thomas,
    2 suggestions :
     - first go to Help >> Seach examples... and search for pop mail, no doubt you'll find somtehing.
     - then have a look at that thread, there are some informations you might want to know before coding
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • How many times can I download from volume licensing

    Hi all. My university in Japan got me CS5 through volume licensing in Japan. I am asking my question here because it is easier for me to work in English than Japanese, and I don't suppose there is much difference between policies here and there. I am wondering if there is a limit on how many times the software can be downloaded from the site. I believe there is a limit of 2 computers, so I assume I can download it at least once more for my laptop, but I was wondering if I can uninstall it once from my iMac, and download it again (for reasons too boring to go into here). Anyway, can I just download it again and again? I am not up to anything dodgy here, by the way. I only need it for two computers, but it would be good to know this for a couple reasons. For instance, suppose I install it on my MBP, then next year want to install it on a newer laptop. Can I uninstall it on the MBP, then download and install it on the new machine? Thanks in advance.

    Thanks, Bob.
    No, I wasn't planning on doing this as a backup plan, or even doing many times. Just wanted to do a new install on my iMac, and wanted to know if I can install on my MacBook Pro now, and then uninstall it from that MacBook Pro next year so that I can install it on a new notebook. By the way, how can Adobe afford to allow people to download as many times as they want? How can they control it then?

  • How to get client IP or machine Host name of connected user?

    I'm running my Web app on tomcat 6
    I want to find out the ips/Host name (any information about the user) of the user that logging into my web app... i tryed the following :
    .getRemoteAddr() and getRemoteHost() from the request and even getHeader("x-forwarded-for") but all this return nothing...
    the web app is inside the company and users connects from inside the comp's also....
    all user connect from Windows machines
    how can i get the information of the user?
    Thanks ahead.
    Edited by: vedmack on Jan 27, 2009 9:28 PM

    here it is:
    i replaced several string with the following : companyname, servername, WebAppName this three names are the same for all users that are doing the log in ... so its irrelevant anyway.... so there is not helpfull information in this headers....
    via=1.0 companyname-PRX
    cookie=JSESSIONID=326E2E62678C8B55063F60A432C8A306
    content-type=application/x-www-form-urlencoded
    user-agent=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)
    host=servername.companyname.com:9080
    accept=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-silverlight, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-shockwave-flash, */*
    referer=http://servername.companyname.com:9080/WebAppName/
    accept-language=he
    pragma=no-cache
    x-novinet=v1.2
    connection=Keep-Alive
    content-length=158

Maybe you are looking for

  • Help on the ADOC history table in SBO 2007

    Hi I am interested in writing a report on changes to sales orders so I thought the ADOC and ADO1 tables would be a good start However if I place a sales order in my system I can't see the order in the ADOC table Is there some setting I need in SAP so

  • Adapter engine in CC

    we chooose adapter engine as ntegration server in PI 7.0 and we go with adapter engine as central adapter engine in PI 7.1.. is this b cos 7.1 has advanced adapter engine? can u pls clarify?

  • About database object

    hi is ref cursor is an object? Message was edited by: p.bhaskar

  • Date Differance in days (except Sat/Sun)

    Hi all, I have a report. In this report, we want the difference between current date, and payment date......but it should not consider the weekends...... My Current formula is timestampdiff(sql_tsi_day,"Payments Period"."Payment Date",current_date) C

  • Need help with volume I can't get rid of and terminal

    I own a external HD named "elements". One day a second volume appeared named "elements". Every time I tried to save files to my external HD they were written on this mysterious volume. The volume isn't showed on my desktop - only when I try to save s