8

I have the following C# code, which I am using to capture a screenshot inside a remote desktop (RDP) session. It works fine when the session is active, but fails with an invalid handle exception if I minimize the session.

Is there any way to make this work, or is the screen essentially "gone" when the session is minimized?

string filename = @"C:\Snap.png";
Size bitmapSize = new Size( Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height );
using (Bitmap bitmap = new Bitmap(bitmapSize.Width, bitmapSize.Height, PixelFormat.Format24bppRgb))
using (Graphics graphics = Graphics.FromImage(bitmap))
{
    graphics.CopyFromScreen( // Exception thrown here
        new Point(0, 0), 
        new Point(0, 0), 
        bitmapSize);
    bitmap.Save(filename, ImageFormat.Png);
}
ngoozeff
  • 4,576
  • 3
  • 28
  • 21

1 Answers1

4

You have to temporarily restore the window, capture, and minimize it again. This link shows how to do it silently

ariel
  • 15,620
  • 12
  • 61
  • 73
  • That works if I take the screenshot on the client. I would prefer something that works inside the remote session, but I will go with this if nothing else comes up. – ngoozeff Aug 09 '10 at 06:00