Monday, April 27, 2020

styx game freeze on startup:

styx game freeze on startup:
create a shortcut, add -windowed to target

Thursday, April 23, 2020

Windows 10 won't recognize resolution more than 640x480

 If you run in to this problem here is the fix:
Unplug the monitor for about a minute, enough for all of the capacitors and any static to discharge from the monitor. Then, plug it back in. It will come back with full resolution capability.

Saturday, February 22, 2020

Win10 disable devices that wake PC

Open powershell as admin

Enter command: 
powercfg /devicequery wake_armed | ForEach{ powercfg /devicedisablewake $_ }

You will get back: Invalid Parameters -- try "/?" for help

or `Unable to perform operation.  An unexpected error (0x490) has occurred:  Element not found.`

To confirm, enter command: 
powercfg /devicequery wake_armed

You will get back (it means all devices have been disabled): NONE


Source:
You can disable all devices from waking your computer with powershell -Command "powercfg /devicequery wake_armed | ForEach{ powercfg /devicedisablewake $_ }".
In cmd, you can run powercfg /devicequery wake_armed to get a list of the devices that are currently allowed to wake up your computer.