The connection is not using advanced RemoteFX RemoteApp graphics

Hey
I have some HP WS460G8 + Nvidia Grid K1 GPU + Windows 2012 R2 (fully patched)
We would like to use the servers with RDS + RemoteFX.
When a user logs on to the server we get: "The connection is not using advanced RemoteFX RemoteApp graphics" in the eventlog.
Client running Windows 8.1.
Any ideas?
Michael

TP - thanks, it's very useful to know that full desktop sessions won't use RemoteFX graphics.
In my case, I have tested with Win 8 (fully patched), imported the Remote App feed from the 2012 R2 server.  IE is a published app, and when I try to play a youtube or vimeo video it's very glitchy.
The Win 8 and RDS server are on the same cabled LAN. I see event 257 indicating Remote FX is in use.  The following network characteristics have been detected for tunnel 8; Link latency : 1 milliseconds and Bandwidth: 93090 kbps.
But video play is glitchy. Even though this issue might be related to Michael's post, I don't want to side-track the thread that he started.  I have a thread open for my issue
here. I don't have the policy configured that you pointed out.  Would it be relevant to my issue?

Similar Messages

  • The transaction associated with the current connection has completed but has not been disposed. The transaction must be disposed before the connection can be used to execute SQL statements.

    Hello All,
    I am getting below error can you please help me
    Error:-
    The transaction associated with the current connection has completed but has not been disposed. The transaction must be disposed before the connection can be used to execute SQL statements.

    Perhaps this thread will help you out
    http://stackoverflow.com/questions/11453066/error-the-transaction-associated-with-the-current-connection-has-completed-but
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Error : 'The Connection can not be used to perform thsi operation

    Dear All,
    I am getting an error like 'The Connection can not be used to perform thsi operation, it is either close or Invalid in this context.
    Below is the code what am using:
    Sub Select_Query()
    Dim SQL_String As String
    Dim rs As ADODB.Recordset 'This holds the data
    Dim cn As ADODB.Connection 'Declaring Connection
    Dim cmdobj As ADODB.Command 'Declare command Object
    'Sheets("Payment").Select
    Set cn = New ADODB.Connection
    cn.Open ("Provider=MSDAORA;Data Source=MyDatabase;User ID=Prasad; Password=Prasad12;")
    Dim count_value As Long
    count_value = WorksheetFunction.CountA(Worksheets("Payments").Range("A:A"))
    For i = 4 To count_value
    SQL_String = Worksheets("Payments").Range("AA" & i).Value
    Set rs = New ADODB.Recordset
    rs.CursorLocation = adUseClient
    rs.Open SQL_String, cn, adOpenForwardOnly, adLockOptimistic, adCmdText
    Dim val As Integer
    val = rs.recordCount
    If val = 0 Then
    Worksheets("Payments").Range("AZ" & i).Value = "No"
    'Else
    'Worksheets("Uploaded").Range("O" & i).Value = "Yes"
    End If
    cn.Close
    Set con = Nothing
    Next
    'cn.Execute SQL_String
    'con.Close
    Set con = Nothing
    End Sub
    And select statment is picking one of the sheets, and SQL query is:
    ="SELECT sa.acct_id
    FROM ci_sa sa, ci_sp sp, ci_sa_sp ss, ci_sp_geo spg,ci_acct_char cac
    WHERE sa.sa_id = ss.sa_id
    AND ss.sp_id = sp.sp_id
    AND sp.sp_id = spg.sp_id
    AND spg.geo_type_cd LIKE '%RR%'
    AND spg.geo_val ='"&B4&"'
    and sa.ACCT_ID=cac.ACCT_ID
    AND cac.char_type_cd LIKE '%SDO%'
    AND TRIM (char_val) IN ('"&Master!G9&"')"
    Please help me in this..
    Regards,
    Prasad

    Please, this is a Oracle forum, not a VBA forum. Mark this thread as answered and post it in a VBA forum.

  • An error occurred while reconnecting...The local device name is already in use. The connection has not been restored.

    Hi, 
    So I have 2 PC's and I sign with the same credentials. I have a hard drive which I decided to share. In the setting I created permissions for the user credentials of both vcomputers and have full control access.
    Basically, everytime I open my laptop after and it wakes up and try to connect to the network drive, I get the error
    An error occurred while reconnecting...The local device name is already in use. The connection has not been restored.
    I need to stay disconnecting all drives and reconnecting them. WHen I restart my PC the network drives restore perfectly. I don't understand why it doesnt work on wake.
    Any ideas?

    It seems that when a machine goes into sleep, the network connection is disconnected, naturally, but the  machine still has the connection mapped. If  you run the 'net use' you will see the connection. When you try to reconnect it, it sees the
    connection and gives you the error.
    I do not know if you can directly modify this behavior. However, as a work around, you could build a simple script like:
    net use 'connection' /delete ( write it into a text file and save it has a .bat file.)
    Use scheduled tasks to have the script run right before the machine goes into sleep. You can do so by setting the task to RUN ON Event: event 42 for the KERNEL_POWER source.
    You can see http://superuser.com/questions/679195/run-a-script-when-hibernating-windows-8 for more info .

  • The application does not use the  screen and run in the background

    Hi
    I have downloaded a package of j2me Midlet
    from [link] here [link]
    and try to reuse the code
    but I get the following error when running the code:-
    The application does not use the screen and run in the background
    I think the error into one of these two classes
    package main;
    import javax.microedition.midlet.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.io.IOException;
    import java.io.InputStream;
    public class MainMidlet extends MIDlet implements CommandListener {
        private SSGameCanvas gameCanvas ;
        private Command exitCommand ;
        private Player player = null;
        public void startApp() {
      try {
           //   create new game thread
              gameCanvas = new SSGameCanvas();
              gameCanvas.start(); // start game thread
              exitCommand = new Command("Exit",Command.EXIT,1);
              gameCanvas.addCommand(exitCommand);
              gameCanvas.setCommandListener(this);
                Display.getDisplay(this).setCurrent(gameCanvas);
       catch (java.io.IOException e)
                e.printStackTrace();
            try {
                // start sounds
                InputStream in = getClass().getResourceAsStream("/resource/startfly.wav");
                player = Manager.createPlayer(in,"audio/x-wav");
                player.setLoopCount(1);
                player.start();
            catch (MediaException ex)
                ex.printStackTrace();
             catch (IOException ex)
                ex.printStackTrace();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            if (player != null) {
                player.close();
            System.gc();
      public void commandAction(Command command, Displayable displayable) {
           if (command == exitCommand)
                 destroyApp(true);
                 notifyDestroyed();
    package main;
    import java.io.IOException;
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class SSGameCanvas extends GameCanvas implements Runnable {
        protected GameManager gameManager;
        protected boolean running;
        private int tick=0;
        private static int WIDTH;
        private static int HEIGHT;
        private int mDelay = 20;
        Form mainForm;
        Display display;
        //private int MaxTime;
        public SSGameCanvas() throws IOException{
            super(true);
            gameManager = new GameManager(5,5,getHeight()-10,getWidth()-10,this);
        public void start() {
                this.running = true;
                Thread t = new Thread(this);
                t.start();
        public void stop() {
            running = false;
        public void render(Graphics g) {
            WIDTH = getWidth();
            HEIGHT = getHeight();
            // Clear the Canvas.
            g.setColor(0, 0, 50);
            g.fillRect(0,0,WIDTH-1,HEIGHT-1);
            // draw border
            g.setColor(200,0,0);
            g.drawRect(0,0,WIDTH-1,HEIGHT-1);
            // draw game canvas
            gameManager.paint(g);
        public void run() {
            while (running) {
                // draw graphics
                render(getGraphics());
                // advance to next graphics
                advance(tick++);
                // display
                flushGraphics();
                try { Thread.sleep(mDelay); }
                catch (InterruptedException ie) {}
        public void advance(int ticks) {
            // advance to next game canvas
            gameManager.advance(ticks);
            this.paint(getGraphics());
    }Edited by: VANPERSIE on Jul 10, 2012 12:26 PM

    Hi Andi,
    Thanks for your reply.
    Yes, I have waited for a while and the result doesn't change.
    The Porblem here is the application is seen started in visual administrator.Only restart brings up the page back.
    Can you please suggest anything.
    Thanks and regards
    Nagaraj

  • HT2480 whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    Cached exchange mode was already marked so that was not the issue.
    I have done all the usual of creating a new profile, reinstalling Outlook etc but nothing seemed to work. I also tried going back to Outlook 2007 and reinstalling Windows but same problem.
    However, I am not sure if it is connected but I was useing the option in MS Live Sync to synchronise Office settings which I turned off recently and now no longer have the issue. Unfortunately I cannot remember when in the process I did this so cannot be
    sure it was responsible - anyone else found this?

  • Flat file connection: The file name "\server\share\path\file.txt" specified in the connection was not valid

    I'm trying to execute a SSIS package via SQL agent with a flat file source - however it fails with Code: 0xC001401E The file name "\server\share\path\file.txt" specified in the connection was not valid.
    It appears that the problem is with the rights of the user that's running the package (it's a proxy account). If I use a higher-privelege account (domain admin) to run the package it completes successfully. But this is not a long-term solution, and I can't
    see a reason why the user doesn't have rights to the file. The effective permissions of the file and parent folder both give the user full control. The user has full control over the share as well. The user can access the file (copy, etc) outside the SSIS
    package.
    Running the package manually via DTExec gives me the same error - I've tried 32 and 64bit versions with the same result. But running as a domain admin works correctly every time.
    I feel like I've been beating my head against a brick wall on this one... Is there some sort of magic permissions, file or otherwise, that are required to use a flat file target in an SSIS package?

    Hi Rossco150,
    I have tried to reproduce the issue in my test environment (Windows Server 2012 R2 + SQL Server 2008 R2), however, everything goes well with the permission settings as you mentioned. In my test, the permissions of the folders are set as follows:
    \\ServerName\Temp  --- Read
    \\ServerName\Temp\Source  --- No access
    \\ServerName\Temp\Source\Flat Files --- Full control
    I suspect that your permission settings on the folders are not absolutely as you said above. Could you double check the permission settings on each level of the folder hierarchy? In addition, check the “Execute as user” information from job history to make
    sure the job was running in the proxy security context indeed. Which version of SSIS are you using? If possible, I suggest that you install the latest Service Pack for you SQL Server or even install the latest CU patch. 
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Urgent !!! Error SSRS 2008 :The connection cannot be used while an XmlReader object is open."!!!

    Hi,
    I am trying to create report by writing MDx query. Just one hour back the report was working fine then i have done some changes it started throwing some error like
    "An error occured during local report processing
    An error has occured during  report processing
    Query execution failed for dataset'pDate'
    The connection cannot be used while an XmlReader object is open."
    The report is working withsome date combinations but when ever i am trying to display data with similar dates combinations like startdate: 01-01-2008 and Enddate:01-01-2008 then it is throwing error like this...
    Could you please give any idea how to solve this...
    Thanks...
    maruthisp

    While passing the Pdate parameters values to main report query, the parameter values was not proper for the main query. So I checked and modified the main report query to handle all the parameter values when I select from drop down selection.
    Maruthi...

  • My iphone 4s was stolen. How could I destroy it so that the guy can not use it any more?

    My iphone 4s was stolen. How could I destroy it so that the guy can not use it any more? system IOS 6
    or just lock the phone forever?
    Could it be possible?
    Thanks

    if you want to erase all data in the phone do this
    If the phone is connected to the Internet and contains your account you can erase the phone by
    1 Going to ( www.icloud.com) and sign in With your account (the account you use in the stolen phone)
    2 go to Find My iPhone
    3 if the phone connected to internet you will see the phone on the map
    4 choose the phone and click  (erase everything)
    i wish this help you  
      Brother

  • HT1476 my iPhone 4 will no longer charge. It is also not recognised in iTunes. There seems to be a problem with the connector slot. I've tried other cables and other computers/plugs but the connection is not being made. Any suggestions?

    my iPhone 4 will no longer charge. It is also not recognised in iTunes. There seems to be a problem with the connector slot. I've tried other cables and other computers/plugs but the connection is not being made. Any suggestions?
    It seems to me that the connection port is faulty.
    George

    Looks like a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • How does one delete VPN configurations in the settings list not used any more?

    How does one delete VPN configurations in the settings list not used any more?

    Sorted found profiles and delete from there

  • Download the updated version of the software can not use and why?

    Download the updated version of the software can not use and why?

    It will help if you tell us what model of iPod touch you have, how and from where you downloaded the update, what version of iOS this update is, and details about the problem; "can not use" doesn't give us anywhere near enough information on which to base a diagnosis and offer suggestions.
    Regards.

  • The connection does not exist

    Hi Guys,
    We are trying to extract  data from AS/400 TO ORACLE through ODI Interfaces,most of the time they wilkl work well.
    Sometimes suddenly in the middle of the load it will fails with an error message 'The connection does not exist'
    The following is the full error message any help here guys?It will work perfectly when we run it again:-
    -99999 : 08003 : java.sql.SQLException: The connection does not exist.
    java.sql.SQLException: The connection does not exist.
    at com.ibm.as400.access.JDError.throwSQLException(JDError.java:389)
    at com.ibm.as400.access.AS400JDBCConnection.checkOpen(AS400JDBCConnection.java:418)
    at com.ibm.as400.access.AS400JDBCConnection.send(AS400JDBCConnection.java:2541)
    at com.ibm.as400.access.AS400JDBCConnection.send(AS400JDBCConnection.java:2516)
    at com.ibm.as400.access.JDCursor.close(JDCursor.java:119)
    at com.ibm.as400.access.AS400JDBCStatement.notifyClose(AS400JDBCStatement.java:3272)
    at com.ibm.as400.access.AS400JDBCResultSet.close(AS400JDBCResultSet.java:470)
    at oracle.odi.runtime.agent.execution.sql.concurrent.FastJDBCRecordSet.close(FastJDBCRecordSet.java:124)
    at oracle.odi.runtime.agent.execution.DataMovementTaskExecutionHandler.handleTask(DataMovementTaskExecutionHandler.java:103)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1889)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$2.doAction(StartScenRequestProcessor.java:580)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:513)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$StartScenTask.doExecute(StartScenRequestProcessor.java:1066)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$1.run(DefaultAgentTaskExecutor.java:49)
    at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor.executeAgentTask(DefaultAgentTaskExecutor.java:41)
    at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.doExecuteAgentTask(TaskExecutorAgentRequestProcessor.java:92)
    at oracle.odi.runtime.agent.processor.TaskExecutorAgentRequestProcessor.process(TaskExecutorAgentRequestProcessor.java:83)
    at oracle.odi.runtime.agent.RuntimeAgent.startScenario(RuntimeAgent.java:433)
    at oracle.odi.StartScen.run(StartScen.java:229)
    at oracle.odi.StartScen.main(StartScen.java:343)

    Hi,
    In which step, it is giving error. did you check the source and target connection properly when this problem arrives.
    Thanks

  • TS1398 hi, my iphone is not connecting to wifi. there is no problem with the connection of wifi. i tried so much but the connection is not stable. some times it connect and sometimes not connecting at all. if connected also its disconnecting again.pls hel

    hi, my iphone is not connecting to wifi. there is no problem with the connection of wifi. i tried so much but the connection is not stable. some times it connect and sometimes not connecting at all. if connected also its disconnecting again.pls help

    At the very least, I recommend you restart your router, (your internet box).
    More detail on your problem is needed - are you in a submarine? On the moon? On a tropical island?
    You can help yourself by providing as much info as you can about your present situation - what kind of router do you have? Have you moved it? DId you update it?  Did you do anything to change your setup, and if you did, what?

  • My iphone4s has echo at the other end, not using headset, updated 5.0.1, anyone has the same problem?

    My iphone4s has echo at the other end, not using headset, updated 5.0.1, anyone has the same problem?
    Do I need to bring it back to the apple store?

    In terms of the battery, if you are not already doing so you should go through at least one charge cycle per month i.e. charging to 100%, running it down so that powers off, and then charging back up to 100%, which should help keep the battery indicator accurate - it's recommended towards the bottom of this page http://www.apple.com/batteries/ipad.html
    I hadn't noticed any problems with the battery on my first gen iPad, but I've updated anyway.

Maybe you are looking for