This page is mainly Microsoft Windows technical notes to myself to reference in the future, but I'm posting it here in case anyone finds it useful.
First, let's see how YOUR browser Renders these: testing Header sizes
Heading 6
Heading 5
Heading 4
Heading 3
Heading 2
Heading 1
Clearing all system logs (you may NOT be interested or find it "useful")
Here's a little .cmd file I use on both Windows 10 and 11 to clear all system logs.
REM I call this "dellogs.cmd" and it must be run as Administrator
@echo on
REM for /F "tokens=*" %1 in (wevtutil.exe el) DO wevtutil.exe cl "%1"
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 Event Logs have been cleared!
goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
echo You must run this script as an Administrator!
echo.
:theEnd
pause
Section 3 (Stay tuned for more Windows geek content!)
Section 4 (Stay tuned for more Windows geek content!)