Since there is only one account on my computer, I used an option of changing the GPO "Allow users to log on using biometrics" on logon and logoff. This flag can be found in the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Biometrics\Credential Provider.
To enable biometrics on log I've created a .reg file with the following code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Biometrics\Credential Provider]
"Enabled"=dword:00000001
Also, I've created a .bat file with a script:
@echo off
regedit /s C:\<Path>\<name>.reg
To disable biometrics I've created similar files with DWORD value of 0. Finally, I've used gpedit.msc and Task Manager to assign .bat scripts to logon and logoff. That worked perfectly fine! Now, I can't sign-in using fingerprint, but I can't do it in UAC windows.