RDP stopped working on cloud server, but works fine on local server.

My situation is like this: 
Before we had moved our sql server onto the cloud, I had been always using RDP to get to the server (it has domain controller and sql server). 
We moved sql server on to cloud today and every time after I connect to the cloud server vm desktop, the rdp stopped working in few secs. I tried RDP to local server and it was still fine. 
Other computers seem have no issue with rdp to cloud server as well.
So it has to be something wrong with my computer setting.
I checked local group policy and it seems alright. 
Can you please help?
Thanks.

Hi,
You can refer to this blog to troubleshoot this issue
http://blogs.msdn.com/b/rds/archive/2011/01/10/how-to-resolve-the-issue-remote-desktop-disconnected-or-unable-to-connect-to-remote-desktop-terminal-server.aspx
I suggest you check the event viewer and see if there're some useful information recorded about this issue.
Yolanda Zhu
TechNet Community Support

Similar Messages

  • Flash working fine in local system... Not working in the live site - Need Help :(

    Hi All...
    I have a flash project, its working fine in local system and checked this file with uploading in someother websites, its working fine there too, but the same file is not working in live
    here is the link of the site, its showing blank page, the flash contents are not loading...
    http://www.aysotraining.com/U8_Coach_test.html
    and here the same file which i have uploaded it in other server its working fine...
    http://deals2deal.com/krgtech/u8coach_test.swf
    can anyone help me to fix this problem please....???
    Thanks in advance,
    Vasanth

    Hi Thanks for your reply. Actually u8coach.swf this an existing file, it is working. i have updated some details in this file and uploaded it again with the name u8coach_test.swf its not working. this same file working another server http://deals2deal.com/krgtech/u8coach_test.swf. this is what my issue. This file is working another server after my updation, but its not working it's own server after my updation. Can you find the problem what it is??
    Thanks in advance,
    Vasanth

  • Cloud service created works fine in local Azure Emulator. But doesnot work when deployed to actual azure and says Restarting (Role has encountered an error and has stopped. Unhandled Exception: System.IO.FileNotFoundException)

    Hi,
    I have a created a cloud service and when i run locally in azure emulator it works fine. But when I am trying to deploy that to azure it says: Restarting (Role has encountered an error and has stopped.
    Unhandled Exception: System.IO.FileNotFoundException)
    Can anyone please help me on this.
    Thanks,
    Satya Chenna

    Any specific reason you are having timer on role start up? are you using thread.sleep for longer duration in the method?
    If you are using azure diagnostics - make sure these things
    1. Azure storage connection string is set to correct storage account and not to the development storage.
    2. Check session state provider - local is not supported on azure.
    Also you can refer this for more information 
    http://blogs.msdn.com/b/kwill/archive/2013/09/06/troubleshooting-scenario-3-role-stuck-in-busy.aspx
    Bhushan | Blog |
    LinkedIn | Twitter

  • Report works fine in local environment but gives problem on server

    Hi,
    I have following condition which works fine when executed in local environment.
    But simply does not work when executed on server.
    <?for-each-group:XYZIC[ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate >= EffStartDate][ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate <= EffEndDate];./Code?>
    EffStartDate and EffEndDate are from XYZIC.
    What could be the reason?
    Thanks.

    Hi,
    try this
    <?for-each-group:XYZIC[ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate >= EffStartDate] and [ListOf_ssFsInvoice/ssFsInvoice/InvoiceDate <= EffEndDate];./Code?>
    or this one
    before using declare namespace specifier
    <?for-each-group:XYZIC[psfn:totext(InvoiceDate,"dd-MMM-yyyy","MM/dd/yyyy" >= psfn:totext(EffStartDate,"dd-MMM-yyyy","MM/dd/yyyy" and psfn:totext(InvoiceDate,"dd-MMM-yyyy","MM/dd/yyyy" <=  psfn:totext(EffEndDate,"dd-MMM-yyyy","MM/dd/yyyy"];./Code?>

  • Logout works fine on Local Machine but not on Server

    I have the following code in my backing bean:
          ExternalContext external =
            FacesContext.getCurrentInstance().getExternalContext();
          HttpSession session = (HttpSession) external.getSession(false);
          session.invalidate();
         // redirect using response because logout is a HTML page
          HttpServletResponse response =
            (HttpServletResponse) external.getResponse();
          response.sendRedirect("../logout.html");The problem is that this works fine on my local machine http://localhost:8888/my-context-root
    but on the Server clicking on the Logout link gives Page cannot be displayed.
    The protocol is https://ip-address:port/my-context-root and on the local machine it's http
    Is it the https thats causing the problem ?
    I also tried using:
    external.redirect("../logout.html"); but this also didn't help.

    The URL for Login is
    https://ip address:port/my-context-root/restricted/home.facesWhen the logout link is clicked the same URL is rendered.
    Backing bean is
    public class HomeBackingBean
      public String logout()
        try
          ExternalContext external =
            FacesContext.getCurrentInstance().getExternalContext();
          HttpSession session = (HttpSession) external.getSession(false);
          session.invalidate();
          //FacesContext.getCurrentInstance().responseComplete(); 
          Utility.logDebug("Session invalidated, trying to redirect to logout.html");
          // redirect using response because logout is a HTML page
          HttpServletResponse response =
            (HttpServletResponse) external.getResponse();
         response.sendRedirect("../logout.html");
        catch (IOException ioEx)
          Utility.logDebug("Failed to logout due to IOException");
        return null;
    }The exit.jsp is :
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://myfaces.apache.org/trinidad" prefix="tr"%>
    <h:form>
        <tr:commandLink styleClass="logout" text="Logout"
                        action="#{homeBean.logout}"/>
    </h:form>The server log says:
    07/31 23:42:19 DEBUG [com.eds.send.common.Utility] Session invalidated, trying to redirect to logout.html
    07/31 23:42:19 DEBUG [com.sun.faces.application.NavigationHandlerImpl] No navigation rule found for outcome nulland viewId /r
    estricted/home.faces Explicitly remain on the current view
    07/31 23:42:19 DEBUG [com.sun.faces.lifecycle.InvokeApplicationPhase] Exiting InvokeApplicationsPhase
    07/31 23:42:19 DEBUG [com.sun.faces.el.ValueBindingImpl] getValue(ref=restricted$home)
    07/31 23:42:19 DEBUG [com.sun.faces.application.ApplicationImpl] Couldn't find a factory for restricted$home
    07/31 23:42:19 DEBUG [com.sun.faces.el.VariableResolverImpl] resolveVariable: Resolved variable:null
    07/31 23:42:19 DEBUG [com.sun.faces.el.ValueBindingImpl] getValue Result:null
    07/31 23:42:19 DEBUG [com.sun.faces.el.ValueBindingImpl] getValue(ref=restricted$home)

  • Shutdown with AppleScript in Lion stop working fine

    Hello to everyone,
    I have to run this AppleScript (saved as Application.app)
    do shell script "sudo shutdown -r now"
    With Snow Leopard this script works fine, but now Lion save the application state before shutting down the system, so this application (that is running while the system i shutting down) is automatically restarted at startup.
    I also tried to modify it in:
    do shell script "sudo shutdown -r +1 &"
    tell application "Application"
      quit
    end tell
    but if I quit the script (Application.app) the shutdown command is stopped.
    Can anyone help me in solving this problem, please? I don't know how to do.. Is there a shutdown parameter (via command line) for telling the system to not save the application state?
    Thanks very much!
    I hope to find an "illuminated" programmer that can help me..
    Andrea

    Hi "twtwtw" and thanks for you interesting in my problem.. sorry for my bad english; well.. 'illuminated' is not the world I want
    I also does not have correctly explained my problem, sorry.. I'll try to do it better.
    I use ChronoSync to sync some folder between my iMac (where it's installed on) and my MacBook Pro.. after the syncronization I have to possibility to run an application; the application is the following applescript (saved as .app):
    set isConnected to false
    try
              set reply to do shell script "ping -c 3 -q MacBook-Pro.local | grep received"
              if reply contains "received" then
                        set theCount to (item 4 of (every word of reply)) as integer
                        if theCount > 0 then set isConnected to true
              end if
    end try
    if isConnected then
              do shell script "ssh [email protected] 'sudo shutdown -h now'"
    end if
    delay 60
    do shell script "sudo shutdown -r now"
    This script test if my MacBook Pro is available on my network and (if yes) shutdown it.
    Then wait 60 seconds and shutdown the iMac. I need to use the "do shell script" because my iMac is in the logon screen when the application/script run.. so the script 'tell application "app" to quit' does not work.
    Then.. the application that I have to quit is the same application tha run the shutdown command, so I can't quit it before running the shutdown.
    My goal is to build a script that could shutdown my local system (even if it runs while my user account is locked and I see on the monitor the logon screen) and that will not restart automatically after the reboot (caused by the application state saved by Lion).
    I hope to have explained better my problem
    Sorry again for my english.. and thanks for every suggestion that you could tell me!
    Andrea

  • Stream works fine on local subnet but not over web

    I am very new to FMS so excuse me if I get terminology messed up.
    I followed Tom Green's tutorials and at this point I can publish a live stream which I can view and interact with just fine on my local LAN.
    The FMS is NAT'ed to the outside world and I have ports 80 & 1935 open to the server.
    When I use a browser from the outside world and put in the servers public address I can see & interact with the FMS start page just fine.  I can use the "interactive" tab and supply my live stream name and view the stream just fine.
    However when I try to launch the Flashplayer that I built all I see is the controls with moving stipes,  No video feed above.  I can browse to the flashplayer HTML file on my local LAN and it works fine.  Interestingly enough I cannot open the flashplayer HTML file directly on the server either (but I can open the start page application and interact with it).
    This seems like a permissions issue to me... any ideas?
    Thanks in advance.
    Brian

    Hi Brian,
    Is it possible for you to send the source for the sample flash movie that you built? That might give me a clue as to what could be going wrong.
    Thanks
    Mamata

  • Response.redirect not working on IE when it is live but works fine on local.

     Response.Redirect("http://myurl/php/test.php?username="
    + LoginHelper.userName
    + "&password="
    + LoginHelper.password);
    Hi All,
    I am trying to redirect the user to different website with username and password. I am using the code above and passing user name and password as parameters.
    This works fine on IE when i run the code on my local machine.
    But when I push the code live this does not work, and user is not able to login.
    It is working fine for other browsers.
    Can someone please help, i am trying to wrap my head around this.
    Any help would be much appreciated. Thanks in advance.

    This is a problem specific to ASP.NET 4.0.  I would either recommend upgrading to .NET 4.5 if possible, otherwise I believe you might have to create a custom browser definition. There is a bug in .Net 4.0 for browser detection.

  • When defining site dreamweaver stops working when uploading local folder

    I have tried moving this folder in my efforts to get Dreamweaver to load it. However, it is the same problem on every occasion. Every time it proceeds to load the files, it stops halfway through, with an error message saying, "Dreamweaver has stopped working....", then crashes. It is one of the applications on my Creative Suite 5.5 Master Collection??? Please help!  Many thanks in advance.

    I have tried moving this folder in my efforts to get Dreamweaver to load it.
    I have no idea what this means.
    Did you define a local site folder in DW?  See screenshot.
    Nancy O.

  • RDP stopped working

    I've got Apple RDP installed on my MacBook Air, and I use it to connect to my desktop Mac. It used to work just fine, but now it won't connect to the desktop. I can connect to shared drives on the desktop, but not to RDP or Screen sharing. Remote Management is enabled in preferences, and I've tried enabling only screen sharing. Neither will work. Thoughts?

    RDP is a Microsoft protocol for use with their Remote Desktop Connection application. It is not used by any Apple product. Please clarify what software you're using...MS RDC or Apple Remote Desktop (ARD).

  • Natd stopped working after Software Updates: Bogus VLAN injections?

    Software Update installed three packages on the iMac today:
    Safari 3.1 Update (Universal)
    Security Update 2008-002 (Universal)
    AirPort Extreme Update 2008-001
    This machine (running 10.4.11, fully updated now) is my connection-sharing gateway the internet for my wife's MacBook, a Linux box and a TiVo unit.
    Comcast ==(ethernet)== public-IP iMac ==(wireless)== private IP MacBook, Linux, TiVo
    I ran my usual firewall + Internet sharing script after the mandatory reboot.
    The iMac's broadband connection worked fine for local programs (Safari, ssh) but none of the machines with private IP addresses on the LAN could see the outside world. The machines on the home LAN could see each other fine -- ping, ssh, etc. Time to start testing!
    When I pinged an external machine from the Linux machine, the DNS lookup succeeded after a delay, but it seemed that no ICMP responses came back. Actually, packet tracing with Wireshark showed that the responses had come in with an extra four-byte header field I had not seen before: something called "802.1Q Virtual Lan" inserted between the Ethernet II header and the Internet Protocol header. Sample packet dump (slightly edited):
     No.:  20
     Time:  00:04:56.746703
     Source:  64.233.187.99
     Destination:  192.168.1.2
     Protocol:  ICMP
     Info:  Echo (ping) reply
     Frame 20 (102 bytes on wire, 102 bytes captured)
     Ethernet II, Src: AppleCom_54:1b:30 (00:17:f2:54:1b:30), Dst: FirstInt_94:75:8f (00:40:ca:94:75:8f)
      *802.1Q Virtual LAN*
         *001. .... .... .... = Priority: 1*
         *...0 .... .... .... = CFI: 0*
         *.... 0000 0000 0000 = ID: 0*
         *Type: IP (0x0800)*
     Internet Protocol, Src: 64.233.187.99 (64.233.187.99), Dst: 192.168.1.2 (192.168.1.2)
     Internet Control Message Protocol
    Looking further back in the trace, it turned out that the DNS delay had the same oddity. The Linux machine sent out a request to the primary DNS server, got back an immediate response with the extra "802.1Q" field, waited 5 seconds, sent out a DNS request to the secondary server, got an immediate normal response (without "802.1Q"), then immediately used the returned numeric address for the pings. It's as if the Linux machine ignored the packet with the extra, interposed header.
    I traced HTTP traffic to google.com and saw a similar pattern:
    1. bogus 1st DNS response
    2. delay
    3. good second DNS response
    4. sent HTTP SYN packet
    5. got back HTTP SYN/ACK with extra "802.1Q" field
    6. multiple retries of steps 4 and 5.
    I suspect that one or more of the software updates is inserting this VLAN stuff into NAT-ed packets over Airport. The receiving machines drop the packets because they expect the Ethernet II header to be followed by the IP header, not 802.1Q data.
    An old discussion thread ([VOIP VLAN using 802.1q frames causing massive dropped packets|http://discussions.apple.com/thread.jspa?threadID=378673#1833386]) talked about a similar problem.
    Here are the NAT-related commands from my firewall script:
      natd -u -dynamic -interface en0
      /sbin/ipfw add divert natd all from not me to any via en0
      sysctl -w net.inet.ip.forwarding=1
    Question: is there a known workaround to get the MacOSX network drivers not to insert 802.1Q VLAN headers?
    Thanks in advance!
    --GCL

    Hello faab:
    Welcome to Apple discussions.
    I am afraid to indicate that you probably will need to wait until you are back and have the software install DVD.
    There is really no way to tell what happened. To fix it, however, you really need the DVDs.
    Barry

  • Write access to a directory for ASP 2.0 application stops working on Windows 2012 Standard Cloud Server

    Just moved our ASP 2.0 based web application to a Windows 2012 Standard Cloud Server.  A directory is used for temporary copying of files for the application.  The Read Write access is properly given and everything works but then stops working
    in about 2.5 hours.  The settings are still there, to make things work again typically I add "Everyone" to the security list and apply and then 3 hours later I remove "Everyone" and this refreshes the security setting and things work
    againg for a couple of hours.  Last Cloud server was 2008 R2 and we had no issues.  Recently moved to this new cloud server.  Code has been functioning fine for years and can not migrate it to newer ASP since will have to make quite a few code
    changes.  Obviously a bug which needs to be addressed.  Again the security settings do not disappear but are no longer handled properly every 3 hours or so.

    Hi,
    Is there any other files have the same issue? Please create a test folder and give the same permissions with the directory for ASP 2.0 application to see if the issue still exists.
    Regards,
    Mandy
    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.

  • Connection to Virtual server stopped working via manager and RDP

    Hi
    At first, sorry for my English
    I have trouble with our Hyper-v server. There are 2 virtual servers running on it. One Domain controller and one Application server. It working fine, but it stopped working for 3rd time (randomly). No event is written in event viewer . If it happen, I can´t
    connect via Hyper-v manager or RDP to the virtual machines and the services on virtual servers doesn´t work. It doesn´t write any error message or something while I trying to connect. I tried to restart hyper-v service with no result . It started working when
    i restarted whole Hyper-v server. 
    Can you please help me with this one ? 
    thx

    Hi ,
    Please check the VM's state in hyper-v manager when it "stopped" .
    What is the host's OS ?
    What is the guest OS ?
    Did you check hyper-v log ( event viewer --> application and services log -->microsoft --> windows -->then check   hyper-v logs to find some useful information )
    Also please check event log in VM .
    Best Regards
    Elton Ji
    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.

  • Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it

    Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it at all.

    Without proper system information and the application logs nobody can tell you much.
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • TB stopped receiving emails after one with huge attachment. Updated TB. Can send but not receive. Using Yahoo POP server. Browser access works fine.

    Several days ago, after receiving a 7MB attachment, I stopped receiving email on my Yahoo POP account. Browser access to the Yahoo server works fine. I obviously deleted that message and attachment but curiously, it and only it continued to be downloaded to my inbox!!! I tried downloading a new TB and installing it. Nothing changed except that specific email no longer appeared (another did though, see later). Settings are to leave msgs on server until I delete them. I transferred all my inbox to a local folder and then compacted mail and tried testing reception from another source and nothing appeared on TB, just on browser access. Oddly, one very old message repeatedly appears, I assume as a result of the auto check for new mail but not sure. Though I try to delete this old message, I can't. I haven't removed and recreated account yet because I don't want to lose all the filter history. Scanned for solution and can't find any. Any ideas, please?

    Starting your mac in safe mode will disable the Symantec stuff long enough to download mail. Should the issue arise again
    [http://support.apple.com/kb/ht1564 OSX Safe mode instructions from Apple]

Maybe you are looking for

  • Sale Order issue in VBUP table

    Hello Gurus, INCORRECT OPEN ORDER DUE TO DELETED SALES ORDER LINE ITEMS STILL SHOWING IN BW OPEN ORDER REPORTS BECAUSE OF INCORRECT SAP R/3 REJECTION STATUS IN VBUP TABLE. The sales order line items is still in the VBUP table with rejection Status is

  • Embedding a *.pdf or *.doc into a Oracle Report

    Report Guru's, I am having a scenario wherein a client wants to import a file which could be anything from an image/text/pdf/doc/excel into an Oracle Report output. The file would be stored in the database table column(BLOB or LONG RAW type). As per

  • Update to 10.4.10 fails after erase

    Hi, my mini has been crashing a lot recently due to me messing around with it. So i decided to rebuild it, which i did 3 times. The first time i rebuilt it (standard erase) i installed all the updates from the system update. It rebooted, went to the

  • Nokia Stereo Headset WH-205 buttons not working in...

    I couldn't get Nokia Stereo Headset WH-205 buttons working in Music player. Anyone know how to enable the buttons on the headset. I want to use the play/stop/FW/BW buttons on the headset Many thanks again

  • Service Accounts - Your Ideas

    I have been tasked to install SQL 2012 on a new machine(2012 R2) which we will move all current 2008 R2 databases over too (approx. 26). This machine will also hold a new instance of SharePoint (not sure if this makes any difference). I have gone thr