Ofer For You (1)

Showing posts with label cmd. Show all posts
Showing posts with label cmd. Show all posts

Friday, 8 August 2014

Finding IP Address of A Website Using CMD

By"Kunal Vohra" Director@H2K



In this tutorial i will teach you to find IP Address of any website using command prompt  or in short CMD. Using IP Address you can find location of the website server and do more stuff. I will demostrate this tutorial with Google but you can use this method to find IP address of any website like twitter, facebook etc. So lets started.

How to find IP ?


1. Go to Start > Type CMD and press Enter.
2. Now write Ping followed by website URL whose IP you want to find.

finding ip adddress of website

3. It will take less then a second and come up with the results as shown below.
finding ip adddress of website

In  my next post i will show you another easy way to find website IP Address and teach you to use this IP to find its location.



Still Having Problem..!!! Connect with Admin Kunal Vohra
Download Our Official Android App & Get Free Internet
"The Hackers Street"
For Daily Updates


Thursday, 7 August 2014

10 CMD Commands Prompt Tricks That Every Computer User Should Kow

By "Kunal Vohra" Director @ H2k Cyber Experts




Open Command Window Here - Command Prompt Tricks -
Open Command Window Here. 

1. 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 you want to work from.
Luckily, there's a super easy Command Prompt trick that will let you open a Command Prompt window from whatever folder you're viewing in Windows.
All you have to do is navigate, in Windows, to the folder you want to start working from in the Command Prompt. Once there, hold down your Shift key while youright-click anywhere in the folder. Once the menu pops up, you'll notice an entry that's not usually there: Open command window here.
Click it 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.



Command Prompt Drag and Drop - Command Prompt Tricks -
  Command Prompt Drag and Drop. 



2. Drag and Drop For Easy Path Name Entry



Most Command Prompt commands require you, or have options, 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 7, the path to the Accessories group in my Start Menu is 
C:\Users\Tim\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Accessories
Who wants to type that all in manually? Not me.
Luckily there's a Command Prompt trick that makes this much easier: drag and drop.
Just navigate to the folder you want the path for 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.
Note: Unfortunately, the drag and drop feature does not work in an elevated Command Prompt.
Remote Shutdown Dialog - Command Prompt Tricks -
Remote Shutdown Dialog. 

3. 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 executeshutdown /i from the Command Prompt which will 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.




Robocopy Command Backup - Command Prompt Tricks -
Robocopy Command Backup. 

4. Use Robocopy as a Backup Solution

Thanks to the robocopy command, you don't need to use Window's backup software or install a third party program to manage your backups.
Just execute 
robocopy c:\users\kunal\documents f:\backup\documents /copyall /e /r:0 /dcopy:t /mir
obviously replacing the source and destination folders with whatever you'd like to backup and where. 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: 
xcopy c:\users\kunal\documents f:\backup\documents /c /d /e /h /i /k /q /r /s /x /y.
No matter which command you choose to use, just create a script file containing the command and schedule it to run in Task Scheduler and you'll have your own custom made backup solution.
I've chosen to use the robocopy command on my personal computers as my only local backup solution because I like the level of control it gives me. Hopefully you take that as a vote of confidence in this incredibly useful Command Prompt trick.
Ipconfig Command - Command Prompt Tricks -
Ipconfig Command. 

5. 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.
Open Command Prompt and execute ipconfig /all. What displays on screen next is everything important about your network connection: your IP address,hostname, DHCP server, DNS information, and much, much more.
Combine this hack with Command Prompt Trick #7 and you've got a very easy way to get information about your connection to someone helping you with a problem.
Subst Command - Command Prompt Tricks -
Subst Command. 

6. 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 local hard 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:\Windows\Fonts folder to appear as the Q: drive. Just execute subst q: c:\windows\fonts and you're set!
This Command Prompt trick makes accessing a particular location from the Command Prompt much easier.
Arrow Keys - Command Prompt Tricks -
Arrow Keys. 

7. Access Previously Used Command with the Arrow Keys

Another great Command Prompt trick has to be the use of 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 hit the up arrow and the entire command is automatically entered in the Command Prompt window, ready for you to edit to make it work.
Tab Completion - Command Prompt Tricks -
Tab Completion. 

8. Automatically Complete Commands with Tab Completion

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 theWindows 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 or you can use Shift+Tab to step through the results in reverse.
Website IP Address - Command Prompt Tricks -
Website IP Address. 

9. Find a Website's IP Address

Like to know the IP address of a website? There are a few different commands you can use to find it.
Let's use the nslookup command to find the IP address of About.com. Just execute nslookup about.com and view the result. Make sure you don't confuse any private IP addresses that also show up in the nslookup results alongside About.com's public IP address.
Another way to find a site's IP address is to use the ping command. Execute ping about.com and then look at the IP address between the brackets in the results shown.
Using either Command Prompt trick, the result is 207.241.148.80.
QuickEdit Mode - Command Prompt Tricks -
QuickEdit Mode. 

9. Copy & Paste Easier with QuickEdit Mode

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 selectProperties. On the Options tab, in the Edit Options section, check theQuickEdit 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.
But it also enables an easy way to paste into the Command Prompt: just right click once and whatever is in the clipboard is pasted in the Command Prompt window. Normally, pasting involves right-clicking and selecting Paste.
ASCII Star Wars - Command Prompt Tricks -
ASCII Star Wars. 

10. 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. 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!
Note: The telnet command is not enabled by default in Windows 7 or Windows Vista but can be turned on by enabling Telnet Client from Windows Features in the Programs and Features applet in Control Panel.


Still Having Problem..!!! Connect with Admin Kunal Vohra
Download Our Official Android App & Get Free Internet
  
 "The Hackers Street"
For Daily Updates 





Wednesday, 16 July 2014

How To Hack Windows 7,8,Password using CMD

Hello friends, Kunal Vohra, Your Admin brings widows hacking trick for You "How To Hack Windows 7,8,Password using CMD"



Many of Windows vista,7,8 users don't know how to log in as administrator in your Windows OS, which is a hidden feature


Hello friends, many of Windows vista,7,8 users don't know how to log in as administrator in your Windows OS, which is a hidden feature. Windows OS has a hidden feature to log in as administrator in your PC.

 In order to login as admin, first you need to un-hide the hidden account. I mean, you should make administrator account as a active one. To unhide the admin account, open your command prompt with admin privileges and enter the following command and hit enter.

  • net user administrator /active:yes

You should see a message that the command completed successfully. Log out, and you will now see the Administrator account as a choice.

To disable this function again enter the following command. Now you disabled the admin account in your Windows PC and should not show up on the login screen.
  • net user administrator /active:no

Or you can save those codes in two batch files so that you dont have to remember the code.



Still Having Problem..!!! Connect with Admin Kunal Vohra

Download Our Official Android App & Get Free Internet*

"The Hackers Street"

For Daily Updates

Monday, 14 July 2014

12 Brilliant Command Prompt Tricks


Your admin "Kunal Vohra" brings here the most famous and useful command prompt tricks for those who wants to learn .Get in touch if you guys have any problem




No matter how good Windows may evolve on the GUI front, Command Prompt was how it all began. So here are some great tips you can use to make yourself comfortable while working with the Command Prompt. like
1. Open Command Prompt in any Folder
2. Enable QuickEdit for Easy Copy/Paste
3.Make Undeletable, Unrenamable Folders
and 8 more amazing tricks using cmd.. Have some fun and knowledge..

Let’s roll, shall we?

1. Open Command Prompt in a Folder

When you open the command prompt, it opens up in either User or System folder depending upon whether you ran it as administrator or not. Now the thing is, if you want to execute a file in any particular folder, you would have to use the change directory(cd) command to navigate to the folder which can be a problem if the directory is nested way too deep.


To ease things you can open the folder in your Windows Explorer, hold Shift key when you right-click in the folder and select Run command window here to directly open the CMD prompt with the path to that folder directly.

2. Enable QuickEdit for Easy Copy/Paste

One thing I miss the most in Command Prompt is the ability to easily copy and paste text using the conventional Windows hotkeys. Normally, one would have to use the right-click context menu options to copy and paste text, but if you enable QuickEdit, you can do them using simple shortcuts.



To enable the QuickEdit mode, right-click on the Command Prompt Title Bar and select Properties. In the Properties Window under the Option Tab enable QuickEdit Mode. That’s all; you can now quickly select text by dragging your mouse pointer. Pressing the enter key on the selected text will copy the text to the clipboard, and a simple left click would be enough to paste the text.

3. Run Command Prompt as Admin

Many commands require you to run command prompt as administrator. When you search for CMD in Start Menu, other than selecting Run as administrator from the right-click menu, you can simply press Ctrl+Shift+Enter to open it with admin privileges. This trick will work for all the programs installed on your system.

4. See Command History

You can see last used commands in a session using the navigation buttons, but if you would like to see a list of all the commands, you can get it by pressing the F7 button.



Alternatively, you can use the command doskey /history to list these commands in the command prompt itself.


5. Change Command Prompt Looks

Are you bored with the conventional black-and-white looks of the command prompt and would like to paint it different? We have already covered a guide on how you can customize your command prompt which you can refer to make the changes.

6. Copy Commands Output to Clipboard Directly

Sometimes one might want to copy the output from a command to clipboard, like at times when you get an error, and you want to paste the exact error in email or while chatting with someone.

To store a command output to a clipboard add the command | clip at the end of the command. For e.g. Dir /p | clip

7. Drag and Drop Files to Change Path

If you are already in command prompt, and you want to copy the exact path to a folder or file to run the file or change the present working directory, you can simply drag and drop the file or the folder on the command prompt.

The path of the dropped file or folder will show up in quotes.

8. Run Commands Simultaneously

You can put && between two commands and execute them one after another. The command on the left will execute first followed by the command on the right of the double ampersand.

9. Get Help for Command



Well let’s say you know about a command, but you are not sure how it works. Not a problem, all you need to do is suffix the command with /? and execute it. If the command is valid, the command prompt will give you all the information related to it.

10. Watch Star Wars in ASCII



For all my nerdy friends who are diehard fans of Star Wars, you can actually watch the Star Wars Episode IV movie in the command prompt. Though it would be in ASCII, it will be fun. To start the movie, open command prompt, type in telnet towel.blinkenlights.nl. and press enter. 

11. Make Undeletable, Unrenamable Folders




Click on Start.
Click on Run. Type in "cmd" without quotes.
In the Command Prompt Window that opens, type the name of the drive you wish to create your folder in the format <drive-name>: and press Enter. e.g. If you wish to create the undeletable folder in D drive, type "D:" without the quotes. Note that the folder cannot be created in the root of C:/ drive (if C: is your system drive).
Type this command- "md con\" or "md lpt1\" without the quotes and press Enter. You can choose any of the keywords given above as the name of your folder.

Now Windows will create an undeletable, unrenamable folder in the drive you entered in Step 3. However the folder can be renamed to another keyword using Windows Explorer.

Deleting the Folder 

Although it is not possible to manually delete the folder, you can delete the folder by typing "rd con\" or "rd lpt1\" in Step 4 instead of "md con\" or "md lpt1\". 

Windows Compatibility: This works on Windows XP, Windows Vista, Windows 7 and Windows 8.

Try it yourself to create one such folder which can neither be deleted nor be renamed.

12.Know your IP address, DNS Server's address and a lot more about your Internet Connection

For Windows XP Users, there’s no need to select Run as Administrator, all you need to do is Click on Start and then Run and type cmd in the Open box and press enter.

For Windows Vista and Windows 7 Users, click on the Windows Start button and type cmd, right click cmd on the top and select Run Administrator.Command Prompt can even let you know your IP address. Just type ipconfig/ all in the command prompt and press Enter. Along with your IP address and DNS servers, command prompt will also return a ton of information like your host name, primary DNS suffix, node type, whether IP Routing ,Wins Proxy, and DHCP are enabled, your network adapter's description, your physical (MAC) address etc 




Still having problem...!!! Connect with Admin "Kunal Vohra"