清除windows 8 中的臨時文件腳本

IE瀏覽器在運行長時間後,將會產生不少臨時文件,這些臨時文件將會使IE瀏覽器變得愈來愈慢。一樣,系統在運行長時間後,也將產生不少的臨時文件,但手動地刪除一些臨時文件並非一件太容易事情。在XP和Win7時代有清除臨時文件的腳本,如今windows 8 用了一段時間發現除去360之類的工具能夠清除,可是又不想裝這麼多軟件,後來找了一個好的腳原本作這個工做。腳本以下保存成PS1的便可windows

Function Clear-OSCTempFile 

#This function is used to delete temp files such as Internet temp file in windows 8 
#Get all items with ".tmp" in the $env:TEMP path 
$TempFiles =Get-ChildItem-Path $env:TEMP -Recurse | Where-Object {$_.Extension -contains ".tmp" }  
#Call the function to delete them
    DeleteTemp $TempFiles
#Get all items with ".tmp" in Temporary Internet Files 
$InternetTempPath = "C:\Users\$env:USERNAME\AppData\Local\Microsoft\Windows\Temporary Internet Files"
$InternetTmpFilesGet-ChildItem-Path  $InternetTempPath-Recurse |Where-Object {$_.Extension -contains ".tmp"
#Call the function to delete them
    DeleteTemp $InternetTmpFiles瀏覽器


運行結果以下圖ide

相關文章
相關標籤/搜索