Remote desktop 8.0.14 (and prior) full screen RDweb session, screen pushed down by Mac Menu bar, mouse pointer on wrong position

Hi
On Mac OS X 10.10 Yosemite, there is a clear bug on the Microsoft Remote desktop app when
a) remoting into a Windows server that is set to display full screen
b) when you are logging in using a RDweb server aka RDS 2012.
After logging in to the remote server, the full screen representation of the server desktop has the following issues:
- The Mac Launchpad is still visible over the Windows desktop, making that part of the Windows desktop impossible to reach.
- The published screen is pushed down about 15 pixels. It is pushed down by the Mac's menu that also remains visible.
When I directly remote into the same server using traditional direct RDP (Not via the RDweb, gateway setup) the screen positions correctly. 
I guess: Somehow the Remote desktop app  (8.0.14) does not seem to get the message from the server that this is a full screen session? Is there some information that the connection Broker or Gateway is not passing allong to
the client? 
I have replicated this many times. It is the same whether I connect to a 2012 server or to a 2008 server.
Bart

Hi,
For a try you can use URI scheme for the specified desktop screen or full screen and check the result. You can refer the following article for information.
Remote Desktop Client URI Scheme Support
https://technet.microsoft.com/en-us/library/dn690096.aspx
Apart if you have RD Gateway setup then you can try the option for RD Gateway to uncheck “Bypass RD Gateway for Local address” and verify result.
Hope it helps!
Thanks.
Dharmesh Solanki
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • How do I use dual displays to have a full screen app on one monitor and another full screen app or the desktop on the other?

    How do I use dual displays to have a full screen app on one monitor and another full screen app or the desktop on the other?
    I want to have my itunes visualizer on my TV which is connected via HDMI adapter, and still have access to full screen itunes and my desktop on the main display.
    Any suggestions?  App downloads that can do this?  Please let me know.

    You can't do it.  This has been an issue since Lion.

  • Remote desktop is it secure and encrypted for windows 7 and windows 2008 servers

    Remote desktop is it secure and encrypted? any supporting documenting showing if it is secure and encrypted .

    Hi,
    Yes, RDP is secure and encrypted. RDP uses RSA Security's RC4 cipher, a stream cipher designed to efficiently encrypt small amounts of data. RC4 is designed for secure communications over
    networks. Administrators can choose to encrypt data by using a 56- or 128-bit key.
    For more details, you can refer to the following:
    Standard RDP Security
    http://msdn.microsoft.com/en-us/library/cc240771.aspx
    Enhanced RDP Security
    http://msdn.microsoft.com/en-us/library/cc240795.aspx
    Secure RDS (Remote Desktop Services) Connections with SSL
    http://technet.microsoft.com/en-us/magazine/ff458357.aspx
    Configure Security Settings for Remote Desktop Services Connections
    http://technet.microsoft.com/en-us/library/cc753488.aspx
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • HT201068 I updated Remote Desktop Admin 3.8 and now my Time Capsule wireless connection is having.

    I recently updated to Remote Desktop Admin 3.8 and since then, I have had issues with the wireless connection from my Time Capsule.
    1) I reset modem and had no change. 2) I then plugged the ethernet directly into my Mac and the connection was great so it's not the service or modem.
    3) I hard reset the TC and when it came back, the speed was good but went back down after a few minutes. 4) Plugged ethernet directly into Mac and again, the speed was great so it is definitely the TC.
    Would love some help resolving this. Hoping I don't have to get a new wireless router. Maybe the TC is too old? I purchased it in 2009 or 2010/ Current version 7.6.4

    Hey evebutterflies,
    I see that you are having some connection issues with your Time Capsule. Are these issues only present when using Remote Desktop Admin 3.8? If so, you may need to review the information in the following article and see if this sheds some light on the issue:
    Apple Remote Desktop: Troubleshooting Connection to Client Behind NAT Router
    http://support.apple.com/kb/TA20780
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • HT201068 Updated Remote Desktop Admin 3.8 and now my Time Capsule wireless connection is slow

    I recently updated to Remote Desktop Admin 3.8 and since then, I have had issues with the wireless connection from my Time Capsule.
    1) I reset modem and had no change. 2) I then plugged the ethernet directly into my Mac and the connection was great so it's not the service or modem.
    3) I hard reset the TC and when it came back, the speed was good but went back down after a few minutes. 4) Plugged ethernet directly into Mac and again, the speed was great so it is definitely the TC.
    Would love some help resolving this. Hoping I don't have to get a new wireless router. Maybe the TC is too old? I purchased it in 2009 or 2010/ Current version 7.6.4

    Most home routers running 24/7 are good for about 3years.. your TC has now managed to survive 6 years.. it is well and truly time for a replacement. Simple fact is, it should be dead by now.. so you are living on borrowed time whatever happens.
    Why RDA would slow the wireless I am not sure..
    Are you running Yosemite.. ?? I tend to point the finger at the OS rather than an application.. mind you if the amount of data going back and forth has increased.. what appears to be slower wireless might actually be something else.
    Apple has reasonable wireless analyser built into the OS since mountain lion.. it is well worth using.
    http://osxdaily.com/2012/07/31/wi-fi-scanner-mac-os-x-mountain-lion/
    I recommend doing a few things like short names, no spaces pure alphanumeric for everything in networks. Passwords also must comply. Apple made changes to network protocols since Mavericks but did not fix the names being recommended in the airport utility.. and still haven't which break their own rules.
    And fix names for bands differently so you can force the connection.. plus setting channels.
    However in a unit of that age.. it will have pretty weak 5ghz and that is what is important for high speed wireless.. Apple have hindered 2.4ghz since forever.

  • Here is how to enable full screen mode for AIR Mac Desktop Apps

    I just discovered that with a very simple native extension method, I can enable full screen mode for AIR Mac Desktop Applications.
    This gets you the full screen icon in the top right, and it works perfectly with no changes to my code. (Obviously only works on Lion and above, since this is a Lion feature)
    Enjoy.
    Here's the code:
        FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
            //We should be okay to do this, even on 10.6, according to this post:
            //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
            //We can't use [NSApp mainWindow] - didn't appear to work
            //This seems to though:
            NSArray * allWindows = [NSApp windows];
            if (allWindows.count > 0)
                NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
                NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
                behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
                [mainWindow setCollectionBehavior:behavior];
            //TODO: Return a boolean instead depending on if we found the main window
            return NULL;

    Press Control + Command + F on your keyboard to enter or exit full screen mode.

  • I need step by step instructions to set up Remote Desktop between 2 computers on 2 different networks. Please dumb it down for me.

    I need step by step instructions to set up Remote Desktop between 2 computers on 2 different networks. Please dumb it down for me.

    I need to do the same, but with more than one computer behind a dynamic-IP NAT:
    OS X Server A -|
                   |
    OS X Client 1  |- NAT Router Fixed IP ---|
                   |                         |
    OS X Client 2 -|                         |
                                             |
    OS X Client 3 -|                         |
                   |- NAT Router Dynamic IP -| Internet
    OS X Client 4 -|                         |
                                             |
    OS X Client 5 -|                         |
                   |- NAT Router Dynamic IP -|
    OS X Client 6 -|
    I have ARD installed on Client 1 and Client 3 (different locations where I'm at) and I need to manage Client 5 and 6 (and the others, but that amounts to the same problem). Since there are multiple computers behind the NAT, I cannot just patch a port through. I want a secure solution as the traffic goes via the internet.
    I have been thinking about letting the users of Client 5 and 6 set up a VPN link to the NAT Router of Client 1 when they need assistance, but when I want to manage this from Client 3, all traffic goes over two VPNs, let alone if the router at Client 1 can manage this in a stable way.
    Probably, two assignments in the router of client 5 & 6 would be nice, but can I tell ARD to use different ports for certain machines?

  • HT1245 Why does my caller I.D. photos show as a small thumbnail in the upper right corner and not full screen? I have used both photos I have synced and photos I have taken, yet others have full screen photo I.D.'s.

    Why does my caller I.D. photos show as a small thumbnail in the upper right corner and not full screen? I have used both photos I have synced and photos I have taken, yet others have full screen photo I.D.'s. I have looked onlime at several threads and there are no real answers as to what I need to do or am doing wrong.

    I am also having this issue.
    I've just spoken to someone in the Apple Support Centre who advised me that since the product is in beta, he is unable to assist. I wanted to find out whether someone was able to delete the data for me, or 'reset' the photos app somehow. This apparently cannot be done. He suggested I provide feedback via the feedback page, which I will do, but to be honest doesn't fill me with a lot of confidence in the issue being fixed.
    I also deactivated the service and waited the 30 days for the pictures to be deleted - this should have been completed in mid-January. Instead, my iCloud.com Photos page is now showing the photos that should have been deleted as grey squares, just as you described. I am also unable to delete these photos; every time I try, I get the same message about a server error.
    I am also unable to disable the service by enabling and then disabling it on my iPhone. Each time I have tried this it hangs on uploading for several hours, with the progress bar not moving at all. When I disable it on my iPhone, the web app remains unchanged.
    If anyone has had this issue and has managed to fix it, PLEASE share your wisdom. I am out of patience!

  • It won't let me play videos in full sceen mode when I try to, and the full screen option is greyed out. So how do I fix it?

    How do I get it to let it to let me play videos in full screen when there is no option for this by the controls in the little box, the one to maximize won't work, and the full screen option is greyed out in prefernces?

    I had the same issue and have now solved it.
    Here is how: https://discussions.apple.com/thread/2633729?start=229&tstart=0
    Hope this helps,
    Jérôme.

  • When safari is in full screen mode and I move the mouse to the top of the screen to bring up the menu bar and the bookmark bar, it does nothing.  Is anyone else having this issue?

    When safari is in full screen mode and I move the mouse to the top of the screen to bring up the menu bar and the bookmark bar, it does nothing.  Is anyone else having this issue?
    Thanks

    I just tested that since I hardly ever use full screen mode, this was the first time since I upgraded to Mountain Lion, and it worked fine for me.
    Try shutting Safari down and see if that changes anything.
    If that doesn't change anything, try shutting down and then rebooting.
    Allan

  • Mac, second monitor changes to canvas background when I switch between full screen apps on my mac display?

    When I plug in my monitor using a thunderbolt to hdmi cable I would like to use my moitor as a second display, which i can do, but then when i switch between full screen apps on my mac it changes what i have on my monitor to a canvas background. Is there a way to fix the display on my monitor so that it will always be accesable?

    Apple:
    This is how it "Should" work.
    Each display should be treated as it own desktop.  If you swipe on a desktop it should swipe through the hidden screens/displays.   If your a user with multi displays connected to your Mac, you could have "Full Screen" Apps, Dashboard, Mission Control, and etc available to swipe on each of your connected displays.
    Display 1...swipe, swipe... mouse over to Display 2...   swipe swipe swipe...  oh.. Display 3, swipe!  All set for work or play!
    This would be a well received "Feature" for the Worlds Most Advanced Operating System.
    Cheers
    I have seen apps (like MPlayerX and VLC) have their own "built in" workaround for the full-screen problems on multi-displays.

  • Cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream, cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream

    cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream, cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • I have a late 2011 Macbook and whenever I open any application it opens only the top menu bar and no viewer windows.I always have to click cmd n to open new windows and it is quite annoying.Does anyone know how to fix this issue? Thx

    I have a late 2011 Macbook and whenever I open any application it opens only the top menu bar and no viewer windows.I always have to click cmd n to open new windows and it is quite annoying.Does anyone know how to fix this issue? Thx

    You may have more of a chance getting a quicker answer here:
    https://discussions.apple.com/community/windows_software/windows_compatibility

  • I have a power mac G5.  It boots up fine and then a screen comes down and in a bunch of different languages tells me the machine needs to be restarted. At this point everything is frozen. I have done this a number of times and I get the same thing.

    I have a power mac G5.  It boots up fine and then a screen comes down and in a bunch of different languages tells me the machine needs to be restarted. At this point everything is frozen. I have started the machine up a number of times and I get the same thing.  Anyone have any ideas?

    Does it boot from the Install Disc OK?
    Does it boot into any of these modes?
    Holding Option/alt key at bootup.
    Holding SHIFT key at bootup.
    Target mode...
    http://support.apple.com/kb/HT1661
    Does it boot to Single User Mode, CMD+s keys at bootup, if so try...
    /sbin/fsck -fy
    Repeat until it shows no errors fixed.
    (Space between fsck AND -fy important).
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck...
    http://docs.info.apple.com/article.html?artnum=106214
    We might get clues with verbose mode...
    http://support.apple.com/kb/HT1492

  • Remote desktop access with VNC and KDE

    Hi,
    I want to access from my win machine the arch linux one with remote desktop the KDE graphic interface.
    I've installed xrdp and I can connect in the session :1 but not on the session :0 (the one one that allow you to control the real desktop)
    I do not think with xrdp I connet to the session :0, do you know how can I do it?
    thanks

    thanks for your answer,
    my need is very easy, I have my linux box in the living room and it is connected to the TV through HDMI.
    I want to control it from my laptop, (that is on my knees) what I see on the tv without need to go till there (i'm lazy and the sofa is very confortable), mainly I want to play/stop movies and browse internet for add torrents to ktorrent.
    And I would like to remove the keyboard and the mouse from the linux box (but this is not a must)
    if there is a better way to do that, please tell me
    thanks

Maybe you are looking for

  • Currency in Report painter

    Hi, I have a question about report painter. Is it possible to create a report with report painter that displays the information in a currency different from operating concern currency? For example, in KE24 I can display the value fields in the entry

  • How can I delete the useless bookmarks icons in FF 29.01???

    On my MacBook Pro, with the new FF version 29.01, every bookmark has an icon which takes up useful space. How can I delete the icons so I can see more bookmarks? Please help Thanks!

  • Suddenly reports are taking so long to execute

    Hi, We are on BOXI R2 SP3 with IIS. System DB is on SQL Server 2005. We have crystal reports stored in our Enterprise and we are using .NET SDK code to open those reports. Everything was working fine and we were optimizing reports to reduce the execu

  • Regarding update 1.1.2??

    Can anyone please tell me what is new in this update or what should I see different after updating my Iphone??

  • Non serializable class in biztalk

    Is it possible to have a non serializable class in a biztalk application? Christiane