Posted On March 31, 2019

Windows Server Power Settings

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Windows Server Power Settings
powercfg /setactive SCHEME_MIN

powercfg /hibernate off

powercfg -L

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to set VNC shortcut to run as another user

In order to make the VNC program run as another user you can do either…

PowerShell: Add Local Group Members Onto a Server List

Sometimes, the GUI method of accomplishing tasks is too arduous and error prone. Thus, these…

PowerShell: Download and Expand Zip File – Legacy Compatible

function downloadFile{ param( $url, $tempFolder="C:\Temp" ) try{ $fileName=split-path $url -leaf $tempFile = "$tempFolder\$fileName" try{[Net.ServicePointManager]::SecurityProtocol =…