VB - 完全重置geckofx

时间:2015-10-24 15:53:22

标签: vb.net geckofx

我有一个在VB中使用gecko引擎运行的Webrowser。 我希望在开始之前清理所有内容,就像我可以使用CCleaner和firefox一样。所以我编写了一个删除defaultprofile文件夹(../ appdata / geckofx /)的批处理文件然后启动我的.exe文件 一切正常但我的问题是,是否有另一个地方xulrunner或geckofx存储在另一个文件夹中的任何东西或我的解决方案已经“完全干净”? 如果有人想要使用它,我添加了我的批处理代码:

rmdir /s /q "C:\Users\Administrator\AppData\Local\Geckofx\"
cd %~dp0
start %1myprogram.exe

1 个答案:

答案 0 :(得分:0)

清理一切:

        Dim CookieMan As nsICookieManager
        CookieMan = Xpcom.GetService(Of nsICookieManager)("@mozilla.org/cookiemanager;1")
        CookieMan = Xpcom.QueryInterface(Of nsICookieManager)(CookieMan)
        CookieMan.RemoveAll()