Recently I wrote a couple of scripts to clear the browsing history and cache for IE, Firefox and Chrome Internet Explorer (Powershell) $t_path_7 = “C:\Users\$env:username\AppData\Local\Microsoft\Windows\Temporary Internet Files” $c_path_7 = “C:\Users\$env:username\AppData\Local\Microsoft\Windows\Caches” $d_path_7 = “C:\Users\$env:username\Downloads” $temporary_path = Test-Path $t_path_7 $check_cache = Test-Path $c_path_7 $check_download = Test-Path $d_path_7 if($temporary_path -eq $True -And $check_casheRead More →