-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the functionality for the automatic resuming of the script when…
… a crash/reboot has happened Added a startup script, which will be called by a Scheduled Task Added the APICID tool to get the APIC IDs Added the IntelVoltageControl tool to be able to change the voltage offset for Intel CPUs Added a new setting that allows you to treat WHEA warnings/errors as "real" errors, as long as the APIC ID matches the tested core Version pushed to 0.10.00
- Loading branch information
Showing
14 changed files
with
2,212 additions
and
959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.automode | ||
.updatecheck | ||
config.ini | ||
deploy.ps1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
@echo off | ||
|
||
REM Build the parameter string | ||
SET "PARAMS=" | ||
|
||
IF "%~1"=="" GOTO RUN | ||
SET "PARAMS=%PARAMS% -CoreFromAutoMode %1" | ||
|
||
|
||
:RUN | ||
echo Starting the CoreCycler... | ||
start "CoreCycler" cmd.exe /k powershell.exe -ExecutionPolicy Bypass -File "%~dp0script-corecycler.ps1" | ||
start "CoreCycler" cmd.exe /k powershell.exe -ExecutionPolicy Bypass -File "%~dp0script-corecycler.ps1" %PARAMS% | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.