Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SHDocVw.WebBrowser, where are cookies/settings saved
#1
I was looking for some youtube desktop clients but there doesn't seem to be many options.
After upgrading to windows 10 I decided to retry the SHDocVw.WebBrowser (in win 7 didn't work properly for me).

I noticed "SHDocVw.WebBrowser" with a youtube page actually works quite well in win 10, I also tested with "WebBrowserControlDisableIE7Emulation" and this also worked very well!

QUESTION: So now I am wondering where the cookies/settings are saved when using "SHDocVw.WebBrowser"?
I do not have Internet Explorer installed, I do have Edge. If I login to a youtube account within SHDocVw.WebBrowser and then start Edge I notice these are treated as 2 seperate instances (meaning: Edge does not use the login info from the qm "SHDocVw.WebBrowser")


All this is for cleanup purposes (delete login info,...etc... after usage.)
#2
Don't know, but when I want to know where some program saves files I create a temporary function with "file" trigger.

Function Function3
Trigger $f 0x449 "C:\"     Help - how to add the trigger to the macro
Code:
Copy      Help
;\
function event $name [$newname]
;event: 1 added, 2 removed, 4 renamed, 8 modified
out F"{event} {name}"
#3
Thank you, that's a good tip!
#4
could always do something like this

Function Dialogwebbrowser 
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90CF0AC8 0x0 0 0 224 136 "Dialog"
;3 ActiveX 0x54030000 0x0 0 0 224 114 "SHDocVw.WebBrowser {8856F961-340A-11D0-A96B-00C04FD705A2}"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040700 "*" "" "" ""

str controls = "3"
str ax3SHD="http://www.quickmacros.com/forum/index.php"
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,SHDocVw.WebBrowser we3
,we3._getcontrol(id(3 hDlg))
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,sub.OnQuit
,case IDCANCEL
,sub.OnQuit
,
ret 1


#sub OnQuit
run "RunDll32.exe" "InetCpl.cpl,ClearMyTracksByProcess 2"
rundll32.exe command line options

Internet Files
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

Delete Cookies
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

Delete History
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1

Delete Form Data
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

Delete Passwords
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

Delete All
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

Delete Files and Settings Stored by Add-Ons
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
#5
@Kevin, thanks for that tip it will definitely be useful!


Forum Jump:


Users browsing this thread: 1 Guest(s)