Registry for Ask Confirmation

Options

Hi all,

I'm hoping to get a useful answer here as I'm right now fighting my way through the registry.

We have a remote monitoring and management tool and use our TeamViewer license via API to connect to the machines via TeamViewer.

Sometimes we turn off the "Ask confirmation" for the end-user for unattended access. Some of our technicians forget to turn that back on.

What we would like to do is run a script for turning on the "Ask confirmation" at the end of every day to turn this feature on again so we don't run into trouble with our customers...


We already have a similar batch for activating the randomly generated password which looks like this:


cd ..\sysnative

reg add "HKLM\SOFTWARE\WOW6432Node\TeamViewer" /v Security_PasswordStrength /t REG_DWORD /d %1 /f

sc stop TeamViewer

timeout /T 15

sc start TeamViewer


What we can't figure out though is the correct registry key / string value for the "Ask confirmation" - part.

Can anyone help out here?