Hi ,
If UserAuthProtocolAccepted is set to {EAP, MsChapv2, Certificate}, then you can add MsChapv2 in the following command:
$VPNRootCertAuthority = "Common Name of trusted root certification authority"
$RootCACert = (Get-ChildItem -Path cert:LocalMachine\root | Where-Object {$_.Subject -Like "$VPNRootCertAuthority" })
Set-VpnAuthProtocol -UserAuthProtocolAccepted Certificate, MsChapv2, EAP -RootCertificateNameToAccept $RootCACert -PassThru
Then, in theory, it should not have any impact on existing SSTP connections.
Best Regards,
Candy
--------------------------------------------------------------
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.