我正在使用屏幕共享项目。我正在使用以下功能捕获桌面屏幕。它工作正常。但是无论何时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;
}
修改:
答案 0 :(得分:6)
为了获取安全桌面的屏幕内容,您的应用程序需要满足一些特殊条件:
要进行测试,您可以例如使用SysInternals PsExec tool在该模式下运行您的应用程序:
PsExec /h /x /d /s "path_to\your_application.exe"
/x
和/s
开关很重要:它们在SYSTEM帐户和Winlogon桌面上运行该过程。
如果要避免使用第三方工具,则需要创建自己的Windows服务,该服务将执行Secure Desktop的屏幕截图。
目前尚无PsExec
的源代码,但是您可以查看PAExec
工具的source code-它是开源的替代品。