I unhid the administrator account on Windows 10 using the following commands, by booting into a recovery flash drive and using CTRL+F10.
reg load HKLM\TEMP c:\windows\system32\config\sam
for /f "tokens=3" %a in ('reg query HKLM\TEMP\SAM\Domains\Account\Users\000001F4 /v F') do set str=%a
set str=%str:2000011=2000010%
reg add HKLM\TEMP\SAM\Domains\Account\Users\000001F4 /v F /t REG_BINARY /d %str% /f
reg unload HKLM\TEMP
How do I re-disable the Administrator account to where I can re-enable it in the future?