The Windows Command Prompt tool, and many of its commands, might seem boring or even relatively useless at first glance, but as anyone who has ever used the Command Prompt very often can tell you, there's much to love!
These Command Prompt tricks and other Command Prompt hacks will get you excited about many of the mundane-sounding Command Prompt commands like telnet, tree, or robocopy—okay, robocopy sounds pretty cool.
All About Ethical Hacking Tutorials for beginner or intermediate with simple step by step, also covering how to hack facebook with many methods and how to secure it. Ethical Hacking Tutorial, Tips and Trick. Step-1: Begin with the Basics. The more you learn about the basics, the more easy it is to find vulnerabilities and device exploits. Once you develop a basic understanding of the fundamental concepts, you will be in a position to easily understand various hacking techniques that are in practice. There you go, 100 awesome life hacks that you can try right now to make your life a lot easier! More Amazing Life Hacks for An Easier Life. 50 Top Parenting Tricks and Hacks That Will Make Life Easier And More Fun. 30 Brilliant Camping Hacks I Wish I Knew Earlier. 20 Popular Life Hacks From the Internet Debunked (or Verified).
Some of these Command Prompt tricks and hacks are special features or fun uses for the Command Prompt itself, while others are just neat or relatively unknown things you can do with certain CMD commands.
Use Ctrl+C to Abort a Command
Just about any command can be stopped in its tracks with the abort command: Ctrl+C.
If you haven't actually executed a command, you can just backspace and erase what you've typed, but if you've already executed it then you can do a Ctrl+C to stop it.
Ctrl+C isn't a magic wand and it can't undo things that aren't undoable, like a partially complete format command.
However, for things like the dir command that seem to go on forever or questions you're asked at the prompt that you don't know the answer to, the abort command is an excellent Command Prompt trick to know.
View a Command's Results One Page (or Line) at a Time
Ever run a command, like the dir command, that produces so much information on the screen that it's almost useless?
One way to manage this info-dump is to execute the command in a special way so whatever information is generated is shown to you one page, or one line, at a time.
Just type the command, the dir command for example, and then follow it with the pipe character and then the more command.
For example, executing dir /s | more will generate the thousands of lines of results that you expect from the dir command, but the more command will pause each page of results with -- More -- at the bottom of the page, indicating that the command is not done running.
Just press the space bar to advance by page or press Enter to advance one line at a time.
Run Command Prompt as an Administrator Automatically
Many commands require that you execute them from an elevated Command Prompt in Windows—in other words, execute them from a Command Prompt that's run as an administrator.
You can always right-click on any Command Prompt shortcut and choose Run as administrator but creating a shortcut to do the same thing can be a huge timesaver if you're a frequent Command Prompt power user.
To complete this Command Prompt trick, just create a Command Prompt shortcut on the desktop, enter the shortcut's properties and then select the Run as administrator box located in the Advanced button on the Shortcut tab.
Become a Command Prompt Power User With Function Keys
The fact that the function keys actually do something in the Command Prompt is maybe one of the best kept secrets about the tool:
- F1: Pastes the last executed command (character by character)
- F2: Pastes the last executed command (up to the entered character)
- F3: Pastes the last executed command
- F4: Deletes current prompt text up to the entered character
- F5: Pastes recently executed commands (does not cycle)
- F6: Pastes ^Z to the prompt
- F7: Displays a selectable list of previously executed commands
- F8: Pastes recently executed commands (cycles)
- F9: Asks for the number of the command from the F7 list to paste
Hack the Prompt Text
Did you know that the prompt itself in the Command Prompt is completely customizable thanks to the prompt command? It is, and when we say customizable, we mean really customizable.


Instead of C:>, you can set the prompt to any text you want, have it include the time, the current drive, the Windows version number (like in this example image), you name it.
One useful example is prompt $m$p$g, which will show the full path of a mapped drive in the prompt, alongside the drive letter.
You can always execute prompt alone, without options, to return it to its sometimes boring default.
Get Help for Any Command
The help command does not provide help for every Command Prompt command.
However, any command can be suffixed with the /? option, usually called the help switch, to display detailed information about the command's syntax and often times even some examples.
The help switch may not be the coolest Command Prompt trick you've ever heard of, but it's hard to disagree that it's one of the more useful.
Neither the help command nor the help switch offer much in the way of explaining how to interpret the syntax. See How to Read Command Syntax if you need help with that.
Save a Command's Output to a File
An incredibly useful Command Prompt trick is the use of redirection operators, specifically the > and >> operators.
These little characters let you redirect the output of a command to a text file, giving you a saved version of whatever data the command produced in the Command Prompt window.
For example, let's say you're about to post a computer problem to an online forum and you want to provide really accurate information about your computer. An easy way to do that would be to use the systeminfo command with a redirection operator.
For example, you might execute systeminfo > c:mycomputerinfo.txt to save the information provided by the systeminfo command to that file. You could then attach the file to your forum post.
See How to Redirect Command Output to a File for more examples and a moe in-depth explanation of how to use redirection operators.
View a Drive's Entire Directory Structure
One of the neatest little commands is the tree command. With tree, you can create a kind of map of the directories on any of your computer's drives.
Execute tree from any directory to see the folder structure under that directory.
With so much information created with this command, it's probably a good idea to export the results of tree to a file so you can actually look through it.
Customize the Command Prompt Title Bar Text
Tired of that Command Prompt title bar text? No problem, just use the title command to hack it to say whatever you like.
For example, let's say your name is Maria Smith, and you want to express your ownership of the Command Prompt: execute title Property of Maria Smith and the Command Prompt's title bar will change immediately.
The change won't stick, so the next time you open Command Prompt the title bar will be back to normal.
The title command is usually used to help give a custom appearance in script files and batch files—not that titling it with your name isn't a good idea!
Copy Text From the Command Prompt
Copying from the Command Prompt is not as easy as copying from other programs, which is part of the reason why saving a command's output to a file, which you learned about a few tricks back, is so handy.
However, what if you do just want to copy a short section of text to the clipboard? It's not too hard but it's not very intuitive either:
- Right-click anywhere in the Command Prompt window and choose Mark.
- Highlight with your left mouse button whatever you'd like to copy.
- Press Enter or right-click once.
Now you can paste that information into whatever program you'd like, just like you paste other text.
If you chose Mark but then decided you don't want to copy anything, right-click again to cancel the Mark action, or press the Esc key.
Open the Command Prompt From Any Location
If you've ever worked in the Command Prompt for very long, you know that it can be really frustrating executing the cd/chdir command over and over again to get to the right directory.
In Windows, open the folder you'd like to start working from, within Command Prompt. When you're there, hold down Shift while you right-click anywhere in the folder.
After the menu pops up, you'll notice an entry that's not usually there: Open command window here. Click that and you'll start a new instance of the Command Prompt, ready and waiting at the right location.
If you're a Command Prompt power user, you'll immediately recognize the value in this little trick.
If you see PowerShell in the right-click menu instead of Command Prompt, make a small change to the Windows Registry to change it to Command Prompt. How-To Geek has a guide on that.
Drag and Drop For Easy Path Name Entry
Most Command Prompt commands require you to specify full paths to files or folders, but typing out a long path can be frustrating, especially when you miss a character and have to start over.
For example, in Windows 10, the path to the Accessories group in my Start Menu is C:ProgramDataMicrosoftWindowsStart MenuProgramsAccessories. Who wants to type that all in manually? We don't.
Just open the folder in Windows Explorer. Once there, drag the folder or file to the Command Prompt window and let go. Like magic, the full path is inserted, saving you a considerable amount of typing depending on the length and complexity of the path name.
May 14, 2019 Most product key finder programs are designed to find serial numbers and product keys for operating systems, like Windows 10 or Windows 8, but some of them find serial numbers for several other programs as well — programs like Adobe Acrobat. The Adobe Licensing Website (LWS) provides account information for Adobe Buying Programs customers. Use the LWS to find serial numbers, track orders, view purchase histories, check upgrade entitlements and points, change or add account contacts and information, merge accounts, and download software. Quickly locate your Adobe product serial number so you can reinstall or update your product, upgrade from Adobe Creative Suite to an Adobe Creative Cloud membership, and more. Also learn how to fix invalid or revoked serial numbers. Adobe get serial number.
The drag and drop feature doesn't work in an elevated Command Prompt.
Shut Down or Restart Another Computer
System administrators in a business environment do this all the time for lots of reasons, but you can also shut down or restart another computer on your network, all from your computer's Command Prompt.
The easiest way to shut down a computer remotely is to execute shutdown /i from the Command Prompt to open the Remote Shutdown Dialog, shown here.
Just enter the name of the remote computer (which you can get by running the hostname command on the other PC), choose what you want to do (restart or shutdown), select some other options, and then click OK.
So whether you're brushing up on your command skills or just scaring a family member, this Command Prompt trick is a fun one.
You can also shut down or restart another computer strictly from the Command Prompt with the shutdown command, without using the Remote Shutdown Dialog.
Use Robocopy as a Backup Solution
Thanks to the robocopy command, you don't need to use Window's backup software or install a program to manage your backups.
Just execute the following, obviously replacing the source and destination folders with whatever you'd like to back up and where it should go.
The robocopy command with these options functions identically to an incremental backup software tool, keeping both locations in sync.
You don't have the robocopy command if you're using Windows XP or earlier. However, you do have the xcopy command, which can be used to do something very similar:
No matter which command you choose to use, just create a BAT file containing the command and schedule it to run in Task Scheduler, and you'll have your own custom made backup solution.
View Your Computer's Important Network Information

Maybe just for your own information, but certainly when you're troubleshooting a network or internet problem, you'll probably at some point need to know details about your computer's network connection.
Everything you'd want to know about your network connection is available somewhere in the Control Panel in Windows, but it's much easier to find, and much better organized, in the results from the ipconfig command.
What displays on screen next is everything important about your network connection: your IP address, hostname, DHCP server, DNS information, and much, much more.
Map a Local Folder Just Like a Network Drive
The net use command is used to assign shared drives on a network to your own computer as a drive letter, but did you know there's another command that can be used to do the same thing to any folder on any of your localhard drives?
There is, and it's called the subst command. Just execute the subst command, followed by the path of the folder you wish to appear as a drive.
For example, let's say you want your C:WindowsFonts folder to appear as the Q: drive. Just execute subst q: c:windowsfonts and you're set!
This Command Prompt trick makes accessing a particular location from the Command Prompt much easier.
An easy way to delete the 'network drive' example here is with the subst /d q: command. Just replace the q: with your own drive letter.
Access Previously Used Commands With the Arrow Keys
Another great Command Prompt trick uses the keyboard arrow keys to cycle through previously executed commands.
The up and down arrow keys cycle through the commands you've entered and the right arrow automatically enters, character by character, the last command you executed.
This might not sound that interesting, but there are several situations where the arrow keys become huge time savers.
Consider this example: You've typed out 75 characters of a command and then try to execute it, only to find that you forgot to add an option at the very end. No problem, just press the up arrow and the entire command is automatically entered in the Command Prompt window, ready for you to edit to make it work.
Automatically Complete Commands With Tab Completion
Easy Hacking Tricks
Tab completion is another Command Prompt trick that can save you lots of time, especially if your command has a file or folder name in it that you're not completely sure of.
To use tab completion in the Command Prompt, just enter the command and then the portion of the path that you do know, if at all. Then press the Tab key over and over to cycle through all of the available possibilities.
For example, let's say you want to change directories to some folder in the Windows directory but you're not sure what it's named. Type cd c:windows and then press tab until you see the folder you're looking for.
The results cycle in order or you can use SHIFT+TAB to step through the results in reverse.
You know how your smartphone's texting app automatically guesses what it is you want to type next? Tab completion in Command Prompt is sort of like that—only better.
Find a Website's IP Address
Like to know the IP address of a website? Use the nslookup command or the ping command, but the former is probably faster.
First, let's use the nslookup command to find the IP address of lifewire.com.
Just execute nslookup lifewire.com and view the result. Don't confuse any private IP addresses that also show up in the nslookup results alongside the public IP address of lifewire.com, which is what IP address we're after.
Execute ping lifewire.com and then look at the IP address between the brackets in the first line shown. Don't worry if the ping command 'times out' during execution; all we needed here was the IP address.
You can use the same procedure with any website or any hostname on your local network.
Copy and Paste Easier With QuickEdit Mode
A number of these Command Prompt tricks have dealt with making copying and pasting easier. So, how about an even easier way to copy from the Command Prompt (and a secret way to easily paste)?
Just right-click on the Command Prompt title bar and select Properties. On the Options tab, in the Edit Options section, check the QuickEdit Mode box and then click OK.
Enabling QuickEdit Mode is like having Mark enabled all the time, so selecting text to copy is really easy.
As a bonus, this also enables a simple way to paste into the Command Prompt: just right click once and whatever you have in the clipboard is pasted in the Command Prompt window. Normally, pasting involves right-clicking and selecting Paste, so this is still a bit different than you're used to.
Watch Star Wars Episode IV
Yes, you read that correctly, you can watch an ASCII version of the full Star Wars Episode IV movie right in the Command Prompt window!
Just open Command Prompt and execute telnet towel.blinkenlights.nl. The movie will start immediately. Check out the tip below if this doesn't work.
True, this isn't a terribly productive use of the Command Prompt, nor is it really a trick of the Command Prompt or any command, but it sure is fun! We can't imagine the work that went into this homage to the sci-fi masterpiece.
The telnet command isn't normally enabled in Windows but can be turned on by enabling Telnet Client from Windows Features in the Programs and Features applet in Control Panel. If you'd rather not enable Telnet but would like to see the movie, you can also watch it in your browser at Star Wars ASCIIMation.
Today we are here with Best Androids Hacks & Tricks To Make Your Android Cool. So here we have selected some cool hacks that were written in some of our cool articles, refer them and perform various android tricks that will shock the people around you.
Android is a very cool device that provides lots of cool features and also you can perform lots of hacks in your android that can help you to do lots with your android. So we are here with some cool android hacks that will let you change your Android into a cool hacking device to perform different hacks. So have a look at complete guide discussed below.
Contents:
- 2 Top 20 Best Android Hacks and Tricks:-
Best Hacking Tips & Tricks For Android
So here we have selected some cool hacks that were written in some of our cool articles, refer them and perform various android tricks that will shock the people around you. So have a look on these hacks and tricks below.
Top 20 Best Android Hacks and Tricks:-
#1 Unlock Lock Screen In Android Lollipop 5.0 Without Any Tool
The method is quite simple but little time taking and this is actually based on Android 5.0 vulnerability that will help you to unlock our Android without losing data or without the need of any PC tools.
#2 Hack Wifi Security In Your Android
Android Wifi Hacking App for the rooted android phone. With this app, you can disable other user net connection on same wifi network. With this WPS Connect application, you can hack any wifi network and connect automatically to any password protected wifi network.
#3 Use Finger Print Security In Android Without Actually Having Finger Print Scanner Hardware
Use Finger Print Security in your Android without having hardware in your device with the cool app discussed in this article.
#4 Install Kali Linux In Your Android For Pentesting
In this method, you will be installing all the Linux files on your Android by downloading them and then using the complete interface for your pen testing or any other way that you like
#5 Record Slow Motion Videos In Android Device
Now a slow video recording is possible on any Android device with some cool apps that are available today by which you can easily capture your special moments in slow motion.
#6 Remotely Shutdown Your PC With Your Android
The method is based on a cool windows program that is mainly designed to schedule shutdown on your PC but it can be used as remotely shutdown program too using some settings and implementations
#7 Add Recycle Bin Feature In Any Android
With the recycle bin feature in your Android device you can now easily make your data secure by securing it by getting deleted by any other person too. And the method is very easy and is just based on a simple android app that will temporarily store deleted files that you can restore.
#8 Add Guest Mode In Your Android
This feature is now coming to almost all new Android, but older android doesn’t have this feature so they can use the method below to enable guest mode in any android
#9 Block Or Stop Any Particular App For Particular Time In Android
Here you will get a cool app that will let you stop particular apps for a particular time and you can get rid of distracting apps.
#10 How To Unlock Windows Computer from Android/iPhone
How to unlock your computer with the help of your Android smartphone, you will need a Rohos Logon Key software installed both on your Android and Computer to gain access your computer.
#11 Hack Any Game On Your Android Smartphone
Easy Hacking Tricks For Beginners
We all love to play games on our Android smartphones. But game resources are something that we always want more and more. If you have a rooted Android smartphone then you can hack any game on your Android smartphone. Just, visit the article listed above to know about it.
You can set up ZBrush on Windows XP/Vista/7/8/10 32-bit. From the developer: ZBrush is a digital sculpting and painting program that gives you all of the tools needed to quickly sketch out a 2D or 3D concept and then take that idea all the way to completion. Sketch out your ideas, create and edit 2D and 3D artworks in high quality. Customize brushes to shape, texture and paint objects. Move, rotate, scale, remove and duplicate your models, add lighting and atmospheric effects and make other realistic renders. Zbrush para windows 10. ZBrush is one of the most advanced 3D sculpting and digital painting tools available today for Windows OS. Utilizing a proprietary “pixol” technology that combines the information about objects color, material, and depth information, artists that utilize ZBrush can easily perform incredible feats of design with techniques that are very closely aligned to real-world sculpting. ZBrush to KeyShot Bridge. This uses the same activation system as for the ZBrush Trial. There's nothing you need to before upgrading to Windows 10. Just follow the instructions for Trial users, above. Thank you for using ZBrush! We hope that your experience with Windows 10.
Best Hacking Tricks
#12 Add Firewall in Any Android device
You can add firewall in your Android smartphone just like you have it on your Windows computer. A firewall protects your computer from security threats. You can add firewall in your android which will allow you to create filter rules based on IP address, host name or domain name.
#13 Encrypt Or Decrypt Files On Android
Well in android we save lots of personal data which can be accessed by any unauthorized person because the saved file is not encrypted. So, you can encrypt your files on Android just to avoid any kind of unauthorized access.
#14 Disable And Modify Working Of Any Sensors In Android
There are more than billions of people who are using Android smartphone. You can actually tweak your Android sensor settings to work differently or you can disable it. Just, visit our listed article to know how you can disable and modify the working of any sensor in Android.
#15 Overclock Your Android Device To Boost Performance
Easy Hacking Tricks For Iphone
After many days of usage, our Android slows down. However, the major reason behind this is the limited CPU clock-speed. You can actually overclock your Android device to boost performance. Just visit the listed article to discover how to overclock your Android to boost performance.
#16 Use Android’s Hidden Secret Codes
If you have been using Android for a while, then you might know that your Android device is pretty smart and intelligent and it hides in lots of secrets. There are lots of secret dialer codes available for Android that can open up hidden services. For example, there are secret codes to factory reset, camera troubleshooting, device information, etc. Just, visit our listed article to discover 500+ secret Android codes.
#17 Control One Android With Another
Cool Easy Hacking Tricks
Well, if we talk about the remote control access, users can easily control one Android with another using some cool apps which have been listed in the article. There are plenty of remote control apps available on the Google Play Store like TeamViewer, Screenshare, Android VNC viewer, etc which can be used to remotely control other devices. Not just Android, but with the same apps, you can control Windows and iOS device as well.
#18 Recover WiFi Password On Android
Basic Hacking Tricks
Well, it’s pretty common for anyone to forget their WiFi password. Recovering WiFi passwords on Windows is easy, but things become much complicated when it comes to Android. Fortunately, you can recover the WiFi password quite easily on Android. The great thing is that you don’t need to root your Android in order to recover the WiFi password. Just, read our listed article to know how to recover the WiFi password on Android.
#19 Remotely Turn Off Any Android Phone With SMS
Yes, it’s absolutely possible! You can actually turn off any Android phone with SMS or Call. However, to do so, you need to have a rooted smartphone. There’s an app available on the Play Store known as Remote Power off which needs just 3 to 4 minutes to set up. Once done, users can remotely turn off cell phones with calls or SMS. Read the article listed above to know how to remotely turn off any Android device with SMS or Call.
#20 Boost Game Performance In Your Android
Hacking Tips And Tricks
To boost gaming performance, you don’t really need to root your Android smartphone. With a little bit of Android developer option tweaks, you can significantly improve your smartphone’s performance. On the Android developer options, users need to find and disable the animations. For more information, you can read the article listed above to boost the gaming performance in Android.
So above are all the Best Android hacks and tricks that you will love to try in your android. Hope you will like this, do share these with others too. Leave a comment below if you have any related queries with any of the article, discussed above.