VB.NET/C#源码 修改注册表立即生效刷新资源管理器

  • A+
所属分类:vb.net

修改注册表我就不贴出来了,网上有很多,相信你现在只需要立即生效就可以了。网上我也找了很多,也有直接用代码,也有用重启资源管理器来重新加载注册。我测试了很,个人感觉重新启动资源管理器还是比较靠谱。下面就贴一个,重新资源管理器来刷新注册,来达到注册表立即生效把。

Private Sub Button20_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button20.Click

'重启资源管理器 刷新注册表
Dim explorer As String = "explorer" 'explorer.exe
For Each ex In Process.GetProcesses
If ex.ProcessName Like explorer Then
ex.Kill()
End If
Next

End Sub

复制

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: