RunDll32.exe detailed explanation and batch processing; Windows batch processing; clear iesaved; RunDll32.exe Batch Processing
Rundll32 command details
File Function: Execute the internal functions in the 32-bit DLL file
Location:X: (current system partition) \ windows \ system32
Command syntax:Rundll32.exe DLLname, Functionname [Arguments]
Instance:RunDll32.exe InetCpl. cpl, ClearMyTracksByProcess 2
Ps: InetCpl. cpl is the dll name, ClearMyTracksByProcess is the function name, and 2 is the parameter
[Windows batch processing] ClearMyTracksByProcess function clears IE Cache
@ Echo: deletes the Internet license file generated by Internet Explorer and other websites. @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 8 @ echo Delete Cookies generated by Internet access such as Internet Explorer @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 2 @ echo Delete IE browser and other Internet browsing history @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 1 @ echo Delete the filling records of IE browser and so on @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 16 @ echo deletes the password of the user that is stored on the Internet such as Internet access: @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 32 @ echo delete all the garbage records of the Netscape from the folder file @rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 255 @ echo Delete junk records generated by the IE browser plug-in @ rundll32.exe InetCpl. cpl, ClearMyTracksByProcess 4351
Other Rundll32 commands