Skip to content

Instantly share code, notes, and snippets.

@shikanime
Created January 12, 2020 02:39
Show Gist options
  • Save shikanime/e7188038a16ff8b0618aa24ce9f9374e to your computer and use it in GitHub Desktop.
Save shikanime/e7188038a16ff8b0618aa24ce9f9374e to your computer and use it in GitHub Desktop.
Undervolt Intel
$status = get-service -name "XTU3SERVICE" | Select-Object {$_.status} | format-wide
if ($status -ne "Running") {
start-service -name "XTU3SERVICE"
}
& 'C:\Program Files (x86)\Intel\Intel(R) Extreme Tuning Utility\Client\XTUCli.exe' -t -id 34 -v -140
sleep 4
stop-process -id $PID -force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment