Minor consistency tweaks

This commit is contained in:
XhmikosR 2022-03-06 21:11:40 +02:00
parent 11632cc2d6
commit d22b726edc

View File

@ -1,49 +1,43 @@
@ECHO OFF @echo off
:: Check if we are administrator. If not, exit immediately.
title Disable DNS Cache Service
:: Check if we are an administrator. If not, exit immediately.
:: BatchGotAdmin :: BatchGotAdmin
:------------------------------------- :: Check for permissions
REM --> Check for permissions if "%PROCESSOR_ARCHITECTURE%" equ "amd64" (
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" ( >nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system" ) else (
) ELSE ( >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
) )
REM --> If error flag set, we do not have admin. :: If the error flag set, we do not have admin rights.
if '%errorlevel%' NEQ '0' ( if %ERRORLEVEL% neq 0 (
echo Requesting administrative privileges... echo Requesting administrative privileges...
goto UACPrompt goto UACPrompt
) else ( goto gotAdmin ) ) else (
goto gotAdmin
)
:UACPrompt :UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs" echo Set UAC = CreateObject^("Shell.Application"^) > "%TEMP%\getadmin.vbs"
set params= %* set params= %*
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs" echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%TEMP%\getadmin.vbs"
"%temp%\getadmin.vbs" wscript.exe "%TEMP%\getadmin.vbs"
del "%temp%\getadmin.vbs" del "%TEMP%\getadmin.vbs"
exit /B exit /b
:gotAdmin :gotAdmin
pushd "%CD%"
CD /D "%~dp0"
goto SCset
:SCset :SCset
:: https://superuser.com/a/1217703
:: https://stackoverflow.com/a/133926
::sc config Dnscache start= disabled
::sc stop Dnscache
:: VALUE :: VALUE
:: 2 (Automatic) (DEFAULT) :: 2 (Automatic) (DEFAULT)
:: 4 (Disabled) (prevent freeze network after applying huge hosts file) :: 4 (Disabled) (to prevent network freeze after applying a huge hosts file)
::
:: Latest changes in security Windows 10 denied access to changing services via other tools except registry hack
:: ::
:: See https://superuser.com/a/1277960 :: See https://superuser.com/a/1277960
:: ::
REG add "HKLM\SYSTEM\CurrentControlSet\services\Dnscache" /v Start /t REG_DWORD /d 4 /f reg add "HKLM\SYSTEM\CurrentControlSet\services\Dnscache" /v Start /t REG_DWORD /d 4 /f
echo "Reboot your system now!" echo Reboot your system now!
echo . echo.
@PAUSE pause