Diese Funktion prüft, ob ein Automatisches Anmelden aktiviert ist.
Die Funktion kann leicht abgewandelt werden, um die entsprechenden Werte in der Registry zu setzen.
Dies würde ich jedoch nicht empfehlen ;-)
Imports Microsoft.Win32.Registry
Imports Microsoft.Win32.RegistryKey
Function AutoLogonEnabled() As Boolean
Dim Autologon As Boolean
Dim AutoAdminLogon As String
Dim AutoLogOnPassword As String
Dim AutoLogOnUser As String
Try
AutoLogOnUser = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon", "DefaultUserName", "")
Catch ex As Exception
End Try
Try
AutoLogOnPassword = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon", "DefaultPassword", "")
Catch ex As Exception
MessageBox.Show("Autologon will fail: No password set", "", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End Try
Try
AutoAdminLogon = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon", "AutoAdminLogon", "")
If AutoAdminLogon = 1 Then
Autologon = True
Else
Autologon = False
End If
Catch ex As Exception
End Try
Return Autologon
End Function
4 Kommentare zum Snippet