-
-
Notifications
You must be signed in to change notification settings - Fork 706
Expand file tree
/
Copy pathDefault Power-saving (default).cmd
More file actions
36 lines (30 loc) · 999 Bytes
/
Default Power-saving (default).cmd
File metadata and controls
36 lines (30 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@echo off
set "settingName=PowerSaving"
set "stateValue=1"
set "scriptPath=%~f0"
set "script=%windir%\AtlasModules\Scripts\ScriptWrappers\DefaultPowerSaving.ps1"
set "___args="%~f0" %*"
fltmc > nul 2>&1 || (
echo Administrator privileges are required.
powershell -c "Start-Process -Verb RunAs -FilePath 'cmd' -ArgumentList """/c $env:___args"""" 2> nul || (
echo You must run this script as admin.
if "%*"=="" pause
exit /b 1
)
exit /b
)
if not exist "%script%" (
echo Script not found.
echo "%script%"
pause
exit /b 1
)
reg add "HKLM\SOFTWARE\AtlasOS\Services\%settingName%" /v state /t REG_DWORD /d %stateValue% /f > nul
reg add "HKLM\SOFTWARE\AtlasOS\Services\%settingName%" /v path /t REG_SZ /d "%scriptPath%" /f > nul
powershell -EP RemoteSigned -NoP -File "%script%" %* -Silent
if "%~1"=="/silent" exit /b
echo.
echo Default Power Saving has been set to its default configuration.
echo Press any key to exit...
pause > nul
exit /b