搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Unable to browse in separately created desktop(Version 50)

more options

I have created a separate desktop with CreateDesktop windows api and tried launching firefox with CreateProcess Win32 api. Issues: Unable to browse in firefox (version 50)

Observation Firefox.exe in low integrity level doesn't gets launched

I have created a separate desktop with CreateDesktop windows api and tried launching firefox with CreateProcess Win32 api. Issues: Unable to browse in firefox (version 50) Observation Firefox.exe in low integrity level doesn't gets launched

所有回复 (1)

more options

Posting code for more information:


hDesktop = ::CreateDesktopW( L"Mydesk",NULL,NULL,0, GENERIC_ALL, NULL );

if (NULL == hDesktop) return;

si.cb = sizeof(si); si.lpDesktop = L"Mydesk"; si.lpTitle = NULL; si.dwFlags = 0; si.cbReserved2 = 0; si.lpReserved = NULL; si.lpReserved2 = NULL;

bResult = CreateProcess( L"C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe", NULL, NULL, NULL,FALSE, CREATE_UNICODE_ENVIRONMENT, NULL, NULL, &si, &pi); if (FALSE == bResult) return 0;

由shashikant.hake11于修改