Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

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

Všetky odpovede (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;

Upravil(a) shashikant.hake11 dňa