Would it be possible to redirect an incoming RDP request to a Hyper-V hypervisor running on a Windows 8 machine?

Hello,
I'm currently a Computer Systems Networks student in my Final Year, and I'm doing some research into a project I'm working on.
What I'm currently looking at is the feasibility of using existing Microsoft tech to redirect an RDP request (received by a server) to a separate cluster of physical machines on the same network running Windows 8/Windows 8.1, which themselves would be running
a Hyper-V hypervisor. I am aware that Windows Server 2008 R2 (and thus, I'm also assuming 2012) has an option to redirect an RDP request to a virtual machine which is in a pool, but to my knowledge (although I may be mistaken), the pool can only hold virtual
machines which are running on the same server.
In addition, my project will involve the establishment (and destruction of) virtual machines as the need arises, with user-specified resource availability.
I'd be grateful to anyone offering answers/advice. Similarly, if you need additional information to understand the project, please let me know and I'll try to elaborate.
Many thanks,
Chris Hill

Not sure how that would work.. The Connection Broker redirects the user to the server in the collection that's most preferable based on a number of criteria.. Current session, load, etc. So if your vms are all part of the same collection I'd say no.
Nothing is stopping you from creating a new collection for every VM though. That way a user can always connect to the same vm / collection through the broker.
I posted some step-by-step guides on 2012 R2 Remote Desktop setups on my personal blog (link in my profile since I'm not sure if I'm allowed to promote a personal blog here), perhaps those posts can help you in the right direction.
Cheers,
Arjan

Similar Messages

  • Can incoming Transport Request be Trapped?

    Hi Experts,
    The problem may look weird for you. Is there a way where we can trap incoming Transport Request.
    We actually are updating some of the tables' data and are registering the modified data in Transport Request. While modifying data, we also refresh Shared Memory.
    But now, when this Transport Request is released to target system, we want to refresh Shared memory in Target system also which can be only possible when can track incoming Transport Request in target system and based on contents of Transport Request, we refresh the shared memory.
    Is it possible?
    Thanks and Regards,
    Gopal

    From your message text I found message TR855 (please provide this next time).
    Long text is indeed strange, the where-used list did not provide a hit.
    Message class TR is in package SCTS_REQ.
    I then looked for string "855" in package SCTS_REQ and found following interesting code in function module TRINT_INTERNAL_RELEASE:
    *---SAP internal: is XPRA in request approved?
        if   system_type             = 'SAP'
        and  cs_request-h-trfunction = sctsc_type_workbench.
          read table cs_request-objects transporting no fields
                             with key pgmid = 'R3TR'
                                      object = 'XPRA'.
          if sy-subrc = 0.
            select single * from te07f into ls_te07f
                                       where korrnum = cs_request-h-trkorr.
            if sy-subrc ne 0.
              message e855(tr) with cs_request-h-trkorr
                               raising no_authorization.
            endif.
          endif.
        endif.
    System type "SAP"? Are you not working in a customer environment (system type = "CUSTOMER") ?
    Check with your system administration, RZ11 parameter "transport/systemtype" might be wrongly set.
    The code also tells that by adding your transport number to table TE07F (via SM30) you might be able to work around the problem.
    Thomas

  • IS IT POSSIBLE TO REDIRECT THE OUTPUT TO ANOTHER PAGE?

    Hi all,
    Is it possible to redirect the output when I excute my query in iSQL*plus to another predifined html page?
    If yes how do I do this?
    Thanks a mill

    You could do this..just read on..
    It would generate a html page for you...and..so on..!
    In addition to plain text output, the SQL*Plus command-line interface enables you to generate either a complete web page, or HTML output which can be embedded in a web page. You can use SQLPLUS -MARKUP "HTML ON" or SET MARKUP HTML ON SPOOL ON to produce complete HTML pages automatically encapsulated with <HTML> and <BODY> tags.
    By default, data retrieved with MARKUP HTML ON is output in HTML, though you can optionally direct output to the HTML <PRE> tag so that it displays in a web browser exactly as it appears in SQL*Plus. See the SQLPLUS MARKUP Options and the SET MARKUP command for more information about these commands.
    SQLPLUS -MARKUP "HTML ON" is useful when embedding SQL*Plus in program scripts. On starting, it outputs the HTML and BODY tags before executing any commands. All subsequent output is in HTML until SQL*Plus terminates.
    The -SILENT and -RESTRICT command-line options may be effectively used with -MARKUP to suppress the display of SQL*Plus prompt and banner information, and to restrict the use of some commands.
    SET MARKUP HTML ON SPOOL ON generates an HTML page for each subsequently spooled file. The HTML tags in a spool file are closed when SPOOL OFF is executed or SQL*Plus exits.
    You can use SET MARKUP HTML ON SPOOL OFF to generate HTML output suitable for embedding in an existing web page. HTML output generated this way has no <HTML> or <BODY> tags.

  • Is it possible to Redirect the online Skype number...

    Hi,
    Is it possible to redirect/forward the online Skype number to any number I want ?
    So, all call to the Skype online number will be received on the number I have entered. Is this possible ?
    Thanks
    Arthur

    i had set up to redirect to a US cell number--but now i have discontinued that phone. i would like to know how i can change the number to redirect to, also a US cell #.
    appreciate all advice! 

  • Possible to redirect JSP output?

    Is it possible to redirect the output of a JSP either directly to a printer or directly to a File object? I would like to write a report template using JSP and be able to display it via a browser (so far so good, that's what JSP does) but I'd also like to take the same output that the JSP generates and either print it directly (as in printing many many reports without having to run each one in a browser and click the browser print button) AND to be able to email the report to a client.
    Each of these means I need to redirect the output of a JSP. I couldn't find anything in this forum about that. Is this even possible?
    Thank you in advance for your answers.

    The problem with using a new URLConnection is that the current session is not applied to the JSP page as desired.
    For those using Tomcat 4, which implements the Servlet 2.3 spec, this page describes how to replace the output stream of a servlet with your own.
    http://www-106.ibm.com/developerworks/java/library/j-tomcat/
    The example implements a character replacement mechanism. Using a filter and a wrapper. I modified this example to redirect the output stream to a file, which allowed me to then e-mail the output of a JSP. I did this by only using the wrapper classes.
    Here are the relavant excerpts from my code
    //Inside the servlet:
    //{snip}...
    String sFileName = "e:\\temp\\email\\temp.html";
    RedirectTextWrapper rTW =
    new RedirectTextWrapper(response, sFileName);
    gotoPage(sAddress, request, rTW);
    //{snip}...
    //Supporting classes:
    class RedirectTextStream
    extends ServletOutputStream {
    private OutputStream intStream;
    private boolean closed = false;
    public RedirectTextStream(String sFileName) {
    try{
    intStream = new FileOutputStream(sFileName);
    }catch(FileNotFoundException e){
    e.printStackTrace();
    public void write(int i)
    throws java.io.IOException {
    intStream.write(i);
    public void close()
    throws java.io.IOException {
    if (!closed) {
    intStream.close();
    closed = true;
    public void flush() throws java.io.IOException {
    intStream.flush();
    class RedirectTextWrapper
    extends HttpServletResponseWrapper {
    private PrintWriter tpWriter;
    private RedirectTextStream tpStream;
    public RedirectTextWrapper(ServletResponse inResp,
    String sFileName)
    throws java.io.IOException {
    super((HttpServletResponse) inResp);
    tpStream = new RedirectTextStream(sFileName);
    tpWriter = new PrintWriter(tpStream);
    public ServletOutputStream getOutputStream()
    throws java.io.IOException {
    return tpStream;
    public PrintWriter getWriter()
    throws java.io.IOException {
    return tpWriter;
    }

  • I have 2 iMacs, one has a thunderbolt port and the other has a mini display port. Would it be possible to use one as an extension of the other? If so what cable would I need.

    Hi,
    As the title of the thread says. I have an older iMac with a mini display port and a newer iMac with a thunderbolt port. Would it be possible so that the older iMac is an extension of my new iMac. The reason for this is because logic x can be a abit clustered on one screen.
    Thanks

    If you'll be using the 2010 iMac as the display, a Mini DisplayPort to Mini DisplayPort cable.
    It's not possible to use the 2011 iMac as the display through Target Display mode in that configuration.
    (126322)

  • If I am buying single app adobe premier pro by annual prepaid plan,after the after the end of the year subscription would it be possible to use the program further without updating or I should pay each year?

    If I am buying single app adobe premier pro by annual prepaid plan,after the after the end of the year subscription would it be possible to use the program further without updating or I should pay each year?

    Thanks
    2 бер. 2015 15:50, користувач "Peru Bob" <[email protected]> написав:
        If I am buying single app adobe premier pro by annual prepaid
    plan,after the after the end of the year subscription would it be possible
    to use the program further without updating or I should pay each year?
    created by Peru Bob <https://forums.adobe.com/people/Peru+Bob> in *Premiere
    Pro* - View the full discussion
    <https://forums.adobe.com/message/7243337#7243337>

  • I live in Saudi Arabia and intend to buy an iPhone 5 (unlocked version) from U.K. I want to know, would it be possible to claim warranty from the local network operator which is the official Apple iPhone seller i.e. Mobily. Would they repair/replace ?

    I live in Saudi Arabia and intend to buy an iPhone 5 (unlocked version) from U.K. I want to know, would it be possible to claim warranty from the local network operator which is the official Apple iPhone seller i.e. Mobily. Would they repair/replace my iPhone 5 ?

    You would need to return to U.K. for warranty service. The iPhone warranty is not international.

  • After sorting my pictures into albums, I  deleted them from the camera roll, now they're all gone. Including the ones filed in the albums. Would it be possible to get them back ?

    after sorting my pictures into albums, I deleted them from the camera roll, includings the ones filed in the albums. Would it e possible to get them back ?

    A photo in the Camera Roll cannot be in an album unless the photo remains in the Camera Roll. Photos in an album or not duplicated. A photo in an album includes a pointer to the original photo stored in the Camera Roll. The Camera Roll is for temporary storage. Photos/videos can and should be imported by your computer as with any other digital camera.
    The Camera Roll is included with your iPhone's backup. If your iPhone's backup has been updated to include all photos that were in the Camera Roll and has not been updated since the photos were deleted, you can try restoring your iPhone from your iPhone's backup. Do not update your iPhone's backup before doing so and decline the prompt to update your iPhone's backup as the first step after selecting Restore.

  • Would it be possible to have a better PRESETS management system in LR6/CC2015 ?

    Congrats on LR6.  I see a very nice speed improvement when working with my 36MP D800 files, especially when zooming in/out 100%.  I still experience some hickups (controls sometime feel like they hang for half a second), but overall I enjoy the direction the speed upgrade is going.  I look forward to the next updates.
    Meanwhile, a question:
    Would it be possible to have a better PRESETS management system in LR6/CC2015 ?
    Unless I am not looking correctly (and if so, please enlight me!), I can't seem to figure out how I can manage my Presets.  At the moment, I have a bunch of folders containing presets.  I would like to have the ability to move Preset Folders within Folders.  I mean, how hard can this be to implement?? 
    Users who have the VSCO presets will know what I mean.  You have tons of folders containing presets.  How about putting them all within one VSCO main folder?
    Also, how about having the ability to search your presets?  A simple search field at the top of the presets would do the trick.
    I have seen virtually no change to the way we manage presets in LR since version 1 or 2.  I'm sure there is a better way to manage th
    Again, thank you for your excellent work.
    I look forward to see where development of LR leads us.
    Cheers,

    Many people have requested nested preset folders.  Please add your vote and opinion to this feature request in the official Adobe feedback forum: Lightroom: Respect Hierarchical Folders of Presets. (This forum is a user-to-user forum in which Adobe rarely participates.)

  • Is it possible to accept an incomming call automatically?

    I am using my iPhone 4 or 5 while driving a car. Is it possible to accept an incomming call automatically?

    No

  • I have just updated my 4s to IOS7. and now my battery discharge is significantly increase. With my Iphone fully charged, the battery run out within 6 hours without using the phone at all. Would it be possible to get the IOS 6.1.3 back to my 4S?

    I have just updated my 4s to IOS7. and now my battery discharge is significantly increase. With my Iphone fully charged, the battery run out within 6 hours without using the phone at all. Would it be possible to get the IOS 6.1.3 back to my 4S?

    Hi, thanks for the suggestion. I have tried as you suggested, and when opening the "purchased" apps some have the icloud logo next to them, but I only have "OPEN" against "Find My iPhone". When opening it up, it goes through the same routine; needs to be updated before proceeding, and wouldn't update because I don't have IOS8.
    Anything else I could try, or am I doomed!
    All of your help is much appreciated, thanks

  • Is it possible to redirect the right people to the payement page ?

    Is it possible to redirect to the payment page only people who responded to the right question in the form ?

    The form will re-direct to Paypal if any of the "purchase fields" set up on the "Collect Payments" tab have been filled out. 
    If you want to provide users with an option to fill out purchase related fields but to do something like mail a check versus Paypal you could do something with "Show/Hide" logic where you have a question up front about Payment method and if the user chooses non-Paypal you show a set of fields that are not connected to the Paypal stuff on the "Collect Payments" tab, and if they choose Paypal then it shows a duplicate set of fields that are connected to Paypal.
    These posts might be helpful in setting this up:
    http://forums.adobe.com/message/5320518#5320518
    http://forums.adobe.com/message/4399918#4399918
    Thanks,
    Josh

  • Good evening would it be possible to get back a free license for one month for adobe photoshop cc because I went on vacation and I have not had the opportunity to test it?

    Good evening would it be possible to get back a free license for one month for adobe photoshop cc because I went on vacation and I have not had the opportunity to test it?

    Hi tay-fun@livefr,
    We apologize however it's not possible to reset the trial however you can try and use it on a different machine with a different Adobe ID (if possible).
    -Ankit

  • HT4528 I want to unlock it from o2 network size to be used on any network in Romania. right now I can not use this phone on any network in Romania and I would like if possible with your help me to unlock it. model phone is iPhone 4.  I understand that it

    help me !
    I want to unlock it from o2 network size to be used on any network in Romania. right now I can not use this phone on any network in Romania and I would like if possible with your help me to unlock it. model phone is iPhone 4.
    I understand that it takes IMEI?
    thank you, with great esteem and respect Stan Ionut-Alin from Bucharest Romania
    I can someone help me please to use this phone in romania
    So the phone is encrypted or locked in england on o2 network

    There is NO solution other than already described
    O2 locked the iPhone as they subsidised the original price
    when sold new
    Therefore ONLY O2 can unlock the iPhone
    it is NOTHING to do with Apple they have no authority
    to unlock an iPhone
    Apple do NOT lock iPhones ,carriers do
    simple no debate
    If you purchased through eBay raise a claim

Maybe you are looking for