Some time we see that the hidden file don't show.
For that reason we want to show what are the hidden file in c: drive and then delete.
But the hidden file will not show.
Show we can do a follows
1. Start ->run->cmd
2. cd c:\
3. dir
this will show all the file but not show all the hidden file. So we give a new commant
3. dir /ah
here /ah means to show all the hidden file
By using this command we , can see the hidden virus file and then delete.
But the
4. del kk3.bat
will not work so we use a new command
5. del kk3.bat /ah /f /q
Here /ah means show hidden file
/f means force the file.
/q means quit.
This will help us to delete the hidden file.