• Welcome to Hacker Side:This site provides information about the science of programming, on windows and other.to send email please mail to :ewardoyo.email@gmail.com.Thanks For Coming This Site:
  • WELCOME TO MY SITE: Make A Batch File To Clean UR PC!!, All In One
    Join 4Shared Now!
    Add

    PostHeaderIcon Make A Batch File To Clean UR PC!!, All In One

    cut here
    =================================================================

    @echo off

    if %username% == Administrator.WINDOWS goto admin

    REM ** Delete User Files **

    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"

    goto end



    :admin
    REM ** Do some extra stuff here **
    REM ** What ever you want..... **

    ECHO You are a Administrator

    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
    rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"

    REM ** Do more stuff here **
    REM ** Blah, blah, blah......**



    :end
    exit