Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Unable to browse in separately created desktop(Version 50)

  • 1 trả lời
  • 3 gặp vấn đề này
  • 3 lượt xem
  • Trả lời mới nhất được viết bởi shashikant.hake11

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

Tất cả các câu trả lời (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;

Được chỉnh sửa bởi shashikant.hake11 vào