清除Ukey缓存外加直接启动IE
Posted leiliu-lucifer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除Ukey缓存外加直接启动IE相关的知识,希望对你有一定的参考价值。
string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\Microsoft\SystemCertificates\My\Certificates";
try
{
DirectoryInfo dd = new DirectoryInfo(path);
if (dd.GetFiles().Length <1)
{
//this.textBox1.Text = "没有证书文件";
}
foreach (System.IO.FileInfo file in dd.GetFiles())
{
this.textBox1.Text = this.textBox1.Text + "删除证书文件:" + file.Name.ToString();
file.Delete();
}
}
catch (Exception ex)
{
//this.textBox1.Text = "删除证书临时文件出错" + ex.ToString();
}
//打开IE
Process ieProc = Process.Start("IExplore.exe", "http://baidu.com");
以上是关于清除Ukey缓存外加直接启动IE的主要内容,如果未能解决你的问题,请参考以下文章