windows_quick_command
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
windows_quick_command [2009/04/10 23:35] – created k2patel | windows_quick_command [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
shutdown < | shutdown < | ||
+ | -Available Options | ||
/? Displays the Help listing | /? Displays the Help listing | ||
/i Displays the graphical user interface (GUI); it must be the first option | /i Displays the graphical user interface (GUI); it must be the first option | ||
Line 21: | Line 22: | ||
/d [p|u:]xx:yy Provides the reason for the Shutdown action: p = planned; u= unplanned; xx supplies the major reason code; yy = supplies the minor reason code | /d [p|u:]xx:yy Provides the reason for the Shutdown action: p = planned; u= unplanned; xx supplies the major reason code; yy = supplies the minor reason code | ||
</ | </ | ||
+ | ==== Remote Desktop - shortcut for guest screen ==== | ||
+ | |||
+ | <code text> | ||
+ | CTRL+ALT+END: | ||
+ | |||
+ | 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+INSERT: Cycle through the programs in most recently used order (ALT+TAB) | ||
+ | |||
+ | ALT+HOME: Display the Start menu (CTRL+ESC) | ||
+ | |||
+ | CTRL+ALT+BREAK: | ||
+ | |||
+ | ALT+DELETE: Display the Windows menu | ||
+ | |||
+ | CTRL+ALT+Minus sign (-): Place a snapshot of the entire client window area on the Terminal server \\ | ||
+ | | ||
+ | |||
+ | 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) | ||
+ | </ | ||
+ | |||
+ | ==== 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" | ||
+ | </ | ||
+ | |||
+ | Above command add IP range **192.168.1.1** to **192.168.1.200** to Interface " | ||
+ | For loop setup \\ | ||
+ | "first number is starting number" | ||
+ | " | ||
+ | "third number is ending number" | ||
+ | Make sure you modify your interface name according to need.\\ | ||
+ | As it must match existing one.\\ | ||
+ | |||
+ | [[http:// | ||
+ | |||
+ | ==== List all Scheduled Task ==== | ||
+ | |||
+ | In windows there is two command which can used to schedule task. | ||
+ | |||
+ | <code bash> | ||
+ | schtasks | ||
+ | at | ||
+ | </ | ||
+ | |||
+ | Simply use help for above command to get more detail on how to use | ||
+ |
windows_quick_command.1239406523.txt.gz · Last modified: 2020/08/10 02:29 (external edit)