Windows

Move Windows Around Quickly Using Keyboard

Press the Win key and an arrow key to easily dock windows side-by-side, maximize them, minimize them, and move them to another monitor. Shortcuts for manipulating the active window: Win+Left arrow: Snap to the left half of the screen Win+RIght arrow: Snap to the right half of the screen Win+Up [...]

2018-05-27T22:58:22+05:30Categories: Windows|Tags: |

Pass command line parameters to a batch file

Pass parameters separated by space, and assign each argument to variable as shown below. Use %* to mean "all". For example, echo off set arg1=%1   // First parameter set arg2=%2 shift shift some-command /u %arg1% /p %arg2% %* When you run: test-command admin password foo bar the above batch [...]

2017-10-08T13:36:54+05:30Categories: Windows|Tags: |

Functional Power States

Power States :- A power state indicates the level of power consumption—and thus the extent of computing activity—by the system or by a single device. The power manager sets the power state of the system as a whole. Device drivers set the power state of their individual devices. The ACPI [...]

2017-10-08T13:55:17+05:30Categories: Windows|

System Power States

System power states describe the power consumption of the system as a whole. The operating system supports six system power states, referred to as S0 (fully on and operational) through S5 (power off). Each state is characterized by the following: Power consumption: how much power does the computer use? Software [...]

2017-10-08T13:55:15+05:30Categories: Windows|

Device Power States

A device power state describes the power state of a device in a computer, independently of the other devices in the computer. Device power states are named D0, D1, D2, and D3. D0 is the fully on state, and D1, D2, and D3 are low-power states. The state number is [...]

2017-10-08T13:55:10+05:30Categories: Windows|

Updating Drivers with KDFiles

.kdiles provides the ability to automatically update a driver on the target with a new file from the host each time the driver loads.  All you need to do is use the .kdfiles command to provide WinDbg with a “replacement map”, indicating which drivers on the target should be replaced [...]

2017-10-08T13:45:38+05:30Categories: Windows|
Go to Top