WHAT'S NEW?
Loading...

How to Remove Shortcut Virus from Pendrive and Computer

Shortcut Virus has become a grea problem nowadays.It corrupt our important files and data inside our USB.Here is simple tricks to remove shortcut virus without any software.


Click on Start --> Run --> Type cmd and press Enter. "Command Prompt" will be opened. 

Now type the below commands 

Here I assume your pen drive letter as E: 


Enter this command. 



attrib -h -r -s E:\autorun.inf --> Press Enter 




del E:\autorun.inf ---> Press Enter




[You can copy the above command --> Right-click in the Command Prompt and paste it.]


Note : Don't forget to replace the letter  E with your flash drive letter.

Creat Wi-fi Hotspot From CMD

Through these trick you will be able to create a wifi zone in your house using CMD.Just follow these simple tricks and make a wifi zone anywhere you want through Hotspot.


Step-1
Run CMD as Administrator 

Step-2
Run these command: netsh wlan set hostednetwork mode=allow ssid=Hotspotname   key=password

 Step-3
Now the hotspot is created but you have to start it.To start Hotspot run these command
netsh wlan start hostednetwork 
Now you have created a Hotspot .You can connect other device to Hotspot having SSID "Hotspotname" and password "password"

Step-4
To stop it run these command 
netsh wlan stop hostednetwork

Comment down if there is any problem.

Block Website Without Using Software

These is a cool tricks through which you can block any website in your network without using any software.Just follow these simple steps to block website in your Network.



Step-1 : Open Run (Press WIndows + R ) And copy these code and press enter
                                               notepad %windir%\system32\drivers\etc\hosts
Step -2 : Open the file with Notepad or any TextEditor
Step-3 : At the End of the file you can see something like "127.0.0.1 localhost"
               Under that enter the site name you want to block as like below
                    127.0.0.2 site1tobeblock.com
                    127.0.0.3 site2tobeblock.net

                    
Note:- The last number of IP should not b repeated i.e 127.0.0.1 (Here 1 is aleready used so you have to use other number)

Step-4 :Save file and exist.

Joining Multiple Video File -Without Any Software

Hello Today I am sharing you a interesting trick to combine multiple video into a single video without using any software in windows machine.Its may be very useful when you want to combine videos faster.


Step 1 : Rename all video files into a file(Without any extension)
        For eg :
              Video1.mp4 into Video1
              Video2.mp4 into Video2
              Video3.mp4 into Video3
              You can use CMD command Ren to do these  :
                Example:
          REN Video1.mp4 Video1 
          These command will rename Video1.mp4 to Video(Without any extension)

Step 2 : Now type these command in CMD
                  
                    Copy /b Video1 + Video2 +Video3 Newcombinedvideo.mp4
                     
               Now  a new video file will be created from the combination of Video1,Video2 and                                Video 3