-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tool to forcefully remove autostart entry
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@echo off | ||
@cd /d "%~dp0" | ||
@set "ERRORLEVEL=" | ||
@CMD /C EXIT 0 | ||
@"%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" >nul 2>&1 | ||
@if NOT "%ERRORLEVEL%"=="0" ( | ||
@powershell -Command Start-Process """%0""" -Verb runAs 2>nul | ||
@exit | ||
) | ||
:-------------------------------------- | ||
@TITLE Realtek UAD generic setup autostart entry removal | ||
@echo Begin Realtek UAD generic setup autostart entry removal... | ||
@call modules\autostart.cmd remove | ||
@echo Done. | ||
@echo. | ||
@pause |