You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#15: Added a new command-line option, --skip-all-non-security-key-options, to force this program to always choose the Security Key option, even if there are other valid options like an already-paired phone or Windows Hello TPM PIN/biometrics, instead of just skipping the option to enroll a new phone.
LOGGER.Info("Dialog box has a choice that is neither pairing a new phone nor USB security key (such as an existing phone, PIN, or biometrics), "+
74
-
"skipping because the user might want to choose it");
75
-
return;
77
+
LOGGER.Info("Dialog box has a choice that is neither pairing a new phone nor USB security key (such as an existing phone, PIN, or biometrics), skipping because the user might want "+
78
+
"to choose it. You may override this behavior with --skip-all-non-security-key-options.");
Chooses the Security Key option even if there are other valid options, such as an already-paired phone, or Windows Hello PIN or biometrics. By default, without this option, this program will only choose the Security Key if the sole other option is enrolling a new phone. This is an aggressive behavior, so if it skips an option you need, remember that you can hold Shift when the FIDO prompt appears if you need to choose a different option.
107
+
101
108
{processFilename} --log[=filename]
102
109
Runs this program in the background like the first example, and logs debug messages to a text file. If you don't specify a filename, it goes to {Path.Combine(Environment.GetEnvironmentVariable("TEMP")??"%TEMP%",PROGRAM_NAME+".log")}.
0 commit comments