ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

All Replies (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;

Modified by shashikant.hake11