您现在的位置是:网站首页> 编程资料编程资料
PowerShell中编程清空IE缓存方法_PowerShell_
2023-05-26
334人已围观
简介 PowerShell中编程清空IE缓存方法_PowerShell_
使用RunDll32.exe 来运行Internet选项的对应功能:
Temporary Internet Files (Internet临时文件)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
Cookies
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
History (历史记录)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
Form Data (表单数据)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
Passwords (密码)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
Delete All (全部删除)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
Delete All - "Also delete files and settings stored by add-ons"
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
相关内容
- PowerShell中字符串分行显示的两种方法技巧_PowerShell_
- PowerShell中删除空格、点号、减号和换行方法代码实例_PowerShell_
- Powershell比较两个文件夹的不同_PowerShell_
- PowerShell实现时间管理小秘书_PowerShell_
- Windows PowerShell是啥?看完本文你就懂它了_PowerShell_
- PowerShell DSC组件 xExchange 发布_PowerShell_
- Powershell中获取所有磁盘盘符的方法_PowerShell_
- Powershell实现加密解密文本文件方法实例_PowerShell_
- PowerShell中使用正则和ValidateSet验证参数合法性_PowerShell_
- PowerShell实现批量重命名文件_PowerShell_
