Skip to content

Instantly share code, notes, and snippets.

@sangram-chavan
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sangram-chavan/7aefe6975af31ebd5465 to your computer and use it in GitHub Desktop.
Save sangram-chavan/7aefe6975af31ebd5465 to your computer and use it in GitHub Desktop.
Utilities
@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
exit
wmic bios get serialnumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment