User Tools

Site Tools


windows_quick_command

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
windows_quick_command [2009/10/01 03:23]
k2patel
windows_quick_command [2012/05/24 13:09]
k2patel [Batch IP Alias Add using netsh]
Line 26: Line 26:
 <code text> <code text>
 CTRL+ALT+END:​ Open the Microsoft Windows NT Security dialog box (CTRL+ALT+DEL) CTRL+ALT+END:​ Open the Microsoft Windows NT Security dialog box (CTRL+ALT+DEL)
 +
 ALT+PAGE UP: Switch between programs from left to right (CTRL+PAGE UP) ALT+PAGE UP: Switch between programs from left to right (CTRL+PAGE UP)
 +
 ALT+PAGE DOWN: Switch between programs from right to left (CTRL+PAGE DOWN) ALT+PAGE DOWN: Switch between programs from right to left (CTRL+PAGE DOWN)
 +
 ALT+INSERT: Cycle through the programs in most recently used order (ALT+TAB) ALT+INSERT: Cycle through the programs in most recently used order (ALT+TAB)
 +
 ALT+HOME: Display the Start menu (CTRL+ESC) ALT+HOME: Display the Start menu (CTRL+ESC)
 +
 CTRL+ALT+BREAK:​ Switch the client computer between a window and a full screen CTRL+ALT+BREAK:​ Switch the client computer between a window and a full screen
 +
 ALT+DELETE: Display the Windows menu ALT+DELETE: Display the Windows menu
-CTRL+ALT+Minus sign (-): Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer (ALT+PRT SC) 
-CTRL+ALT+Plus sign (+): Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer (PRT SC) 
-</​text>​ 
  
 +CTRL+ALT+Minus sign (-): Place a snapshot of the entire client window area on the Terminal server \\
 +                         ​clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer (ALT+PRT SC)
 +
 +CTRL+ALT+Plus sign (+): Place a snapshot of the active window in the client on the Terminal server \\
 +                        clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer (PRT SC)
 +</​code>​
 +
 +==== Batch IP Alias Add using netsh ====
 +
 +how to add multiple IP as an alias to windows.
 +
 +<code cmd>
 +FOR /L %I IN (1,1,200) DO netsh interface ip add address "Local Area Connection"​ 192.168.1.%I 255.255.255.0
 +</​code>​
 +
 +Above command add IP range **192.168.1.1** to **192.168.1.200** to Interface "​**Local Area Connection**"​\\
 +For loop setup \\
 +"first number is starting number"​\\
 +"​second number is stepping"​\\
 +"third number is ending number"​\\
 +Make sure you modify your interface name according to need.\\
 +As it must match existing one.\\
 +
 +[[http://​www.howconfig.com/​windows/​batch-adding-multiple-ip-addresses-to-windows-server-with-netsh| Information used at]]
 +
 +==== List all Scheduled Task ====
 +
 +In windows there is two command which can used to schedule task.
 +
 +<code bash>
 +schtasks
 +at
 +</​code>​
 +
 +Simply use help for above command to get more detail on how to use
 +
 +Thank you
windows_quick_command.txt ยท Last modified: 2020/08/10 02:35 (external edit)