Covering you Tracks on Internet Explorer
Not that you need to hide anything from the wife, but here's a list of useful commands:
Code:
Private Sub Del_Temporary_Internet_Files()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8"
End Sub
Private Sub Del_Cookies()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2"
End Sub
Private Sub Del_History()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1"
End Sub
Private Sub Del_Form_Data()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16"
End Sub
Private Sub Del_Passwords()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32"
End Sub
Private Sub Del_Delete_All()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255"
End Sub