i need programmatically delete Internet Explorer 8 History, Cookies, Cache and Passwords
More than that i need to do it silently :-( without any popup window , so I can't use
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
coz it's starting the progress window dialog.
I've tried to run this from CreateProcess function with startInfoParams
siStartupInfo.dwFlags = STARTF_USESHOWWINDOW;
siStartupInfo.wShowWindow = SW_HIDE;
but it doesn't helped , coz it seems like Inetcpl.cpl running asynchronious , and starting it's own thread that show the window.
Does anyone know the way to implement this ?
Thanks.