屏幕截图安全桌面

时间:2018-09-29 06:55:35

标签: c# screenshot

我正在使用屏幕共享项目。我正在使用以下功能捕获桌面屏幕。它工作正常。但是无论何时secure desktop prompting for elevation。它都会返回黑色/空白图像。

但是当我从本地安全策略turn off secured desktop出发时,效果很好。

是否可以在不禁用本地安全策略的情况下捕获安全桌面。

static Bitmap CaptureDesktop()
{
    SIZE size;
    Bitmap printscreen = null;

    size.cx = Win32Stuff.GetSystemMetrics
                     (Win32Stuff.SM_CXSCREEN);

    size.cy = Win32Stuff.GetSystemMetrics
              (Win32Stuff.SM_CYSCREEN);

    int width = size.cx; int height = size.cy;

    IntPtr hWnd = Win32Stuff.GetDesktopWindow();
    IntPtr hDC = Win32Stuff.GetDC(hWnd);
    if (hDC != IntPtr.Zero)
    {
        IntPtr hMemDC = GDIStuff.CreateCompatibleDC(hDC);
        if (hMemDC != IntPtr.Zero)
        {
            IntPtr m_HBitmap = GDIStuff.CreateCompatibleBitmap(hDC, width, height);
            if (m_HBitmap != IntPtr.Zero)
            {
                IntPtr hOld = (IntPtr)GDIStuff.SelectObject(hMemDC, m_HBitmap);
                GDIStuff.BitBlt(hMemDC, 0, 0, width, height, hDC, 0, 0, GDIStuff.SRCCOPY);
                GDIStuff.SelectObject(hMemDC, hOld);
                GDIStuff.DeleteDC(hMemDC);
                printscreen = System.Drawing.Image.FromHbitmap(m_HBitmap);
                GDIStuff.DeleteObject(m_HBitmap);
            }
        }
    }
    Win32Stuff.ReleaseDC(hWnd, hDC);

    return printscreen;
}

修改

  1. Exe安装在受保护的位置
  2. Exe经过数字签名

1 个答案:

答案 0 :(得分:6)

为了获取安全桌面的屏幕内容,您的应用程序需要满足一些特殊条件:

  • 它必须在SYSTEM帐户下运行,而不是已登录的用户帐户
  • 它必须在Winlogon桌面上运行,而不是在用户桌面上运行
  • 它应该作为服务运行

要进行测试,您可以例如使用SysInternals PsExec tool在该模式下运行您的应用程序:

PsExec /h /x /d /s "path_to\your_application.exe"

/x/s开关很重要:它们在SYSTEM帐户和Winlogon桌面上运行该过程。

如果要避免使用第三方工具,则需要创建自己的Windows服务,该服务将执行Secure Desktop的屏幕截图。

目前尚无PsExec的源代码,但是您可以查看PAExec工具的source code-它是开源的替代品。