Short answer Find the built-in local administrator by RID 500, inspect it and enable only when required.
When to use it
When the account is disabled or its localized name is unknown.
Find account
$Admin=Get-LocalUser | Where-Object {$_.SID.Value -match '-500$'}
$Admin | Select-Object Name,Enabled,LastLogon,PasswordExpiresNote
RID 500 identifies the built-in administrator.
Enable if required
$Admin=Get-LocalUser | Where-Object {$_.SID.Value -match '-500$'}
Enable-LocalUser -Name $Admin.NameNote
Never place the password in plain text.
Caution
Use Windows LAPS instead of a permanent shared local-administrator password.