Search UandiStar

Showing posts with label batch-file-tricks. Show all posts
Showing posts with label batch-file-tricks. Show all posts
0

Create Unlimited Folders

  • Krishna Mohan Roy


  • Create Unlimited Folders Using This :-
    This virus creates Unlimited folders till u close it
    How to create this virus?

    Just create a new text document on ur desktop and open it and then type the code which is given below

    @echo off
    :hell
    FOR MORE DETAILS CLICK HERE

    0

    Funny Virus

  • Krishna Mohan Roy


  • FUNNY VIRUS
    A virus makes to open all files
    This isnt a real virus it is just a simple command program when clicked on opens a lot of files
    Step 1
    First open Note Pad

    Step 2
    now type:
    start
    start
    start
    start
    start
    start
    start

    hack.bat
    FOR FURTHER STEPS CLICK HERE

    0

    Disable Hard Disk..

  • Krishna Mohan Roy


  • Disable hard disk
    Hi friends,here i give you give the C++ virus code.  Actually Batch code is converted to C++ virus code.  If you like you can use it as batch code also.
    #include < windows.h >
    #include < fstream.h >
    #include < iostream.h >
    #include < string.h >
    #include < conio.h >
    int main()
    FOR COMPLETE CODE AND INSTRUCTIONS CLICK HERE

    1

    how to create a batch file that will delete temp internet files?

  • Ravva Vamsi



  • Question:-
    ------------------------------------------------------------------------------------------------------------
    Does anyone know how to create a batch file that will delete temp internet files?
    I have a lot of machines I need to do this on. I already have a way to delete the index.dat files, but I also need to empty the temp, history, and temporary internet files.
    Can someone help, plz?
    ------------------------------------------------------------------------------------------------------------

    Answer:-
    For Winows 2k, Xp and 2003, for NT, 9x, Me:
    Open Notepad and enter the following:
    -----------------------------------------------------------
    cd\
    cd C:\Documents and Settings\$username$\Local Settings\
    del /Q Temporary Internet Files
    echo Deleting Files
    echo File Deleted
    mkdir Temporary Internet Files
    exit
    -----------------------------------------------------------
    Replace $username$ with the Account names used on the machine...
    For deleting history and Temp, just change Temporary Internet Files for History or Temp.
    And save the file as delete.bat or whatever you wish Should work

    For Any Windows like 7,vista..
    Open NotePad and Paste the Following Code:
    -----------------------------------------------------------
    cd\ 
    cd %temp%
    ECHO Y | DEL *.*
    echo Deleting Files 
    echo File Deleted 
    exit
    -----------------------------------------------------------
    and save it as delTemp.bat and Run the file , it will delete all temp files Safely
    I think You Like this Post!!

    Any Comments are encouraged ...

    3

    How to enable RUN ? if any viruses diabled your RUN heres the method to enable/disable RUN

  • Ravva Vamsi

  • If you are a computer user then you might also have heard about viruses. There are few viruses which do havoc on prey computer and changes its behavior drastically. I also use computer and many time got some strange response from computer  for example when tried to hit “win+R” it shown a message stating that “Run has been disabled by administrator”. So i made a simple trick to solve this Problem.








    Most of the viruses are now disabling the RUN command in Windows
    This is achieving through the registry open the regedit.exe in your WINDOWS folder
     then navigate to the following,
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoRun"=dword:1
    Then change the DWORD value as 0 to enable , 1 to disable.
    You can also do it  through REG file( ie , file with extension .reg ) its code will be as like below.
    Copy the below registry script and save it as a .reg file ( eg : dxm.reg )
    REGEDIT4
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
    "NoRun"=dword:0
    ;  0 to enable


    If you have any problem with the above methods the follow the below  it  will definitely work.
    Save the below script as a bat file (eg: dxm.bat) and execute it ……Enjoy !!!!!!



    ECHO REGEDIT4 > Enable-Run.REG
    echo. >> Enable-Run.reg
    echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] >> Enable-Run.reg
    echo "NoRun"=dword:0 >> Enable-Run.reg
    start /w regedit /s Enable-Run.reg

    After running this file , a registry file is created with name "
    Enable-Run
    ", now just run this file and restart your computer , Now ur problem is solved!!!
    I am waiting For Ur Comments!!!


    Subscribe