Ich habe mit diesem Skript zu PowerShell gewechselt:
$TheUser = Read-Host "What is the username?" $ThePassword = Read-Host "What is the password?" -AsSecureString $TheDomain = Read-Host "What is the domain?" New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name AutoAdminLogon -Value 1 New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name DefaultUserName -Value "$TheUser" New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name DefaultPassword -Value $ThePassword New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name DefautDomainName -value $TheDomain
Bei jeder Ausführung des Skripts erhalte ich jedoch folgende Fehlermeldung:
New-ItemProperty: Die Eigenschaft ist bereits unter C: \ Users \ Administrator \ Desktop \ Autologon.ps1: 4 Zeichen: 17 + New-ItemProperty <<<< -Path 'HKLM: \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon vorhanden '-Name AutoAdminLogon -Value 1 + CategoryInfo: ResourceExists: (HKEY_LOCAL_MACH ... ersion \ Winlogon: String) [New-ItemProperty], IOException + FullyQualifiedErrorId: System.IO.IOException, Microsoft.PowerShell.Commands.NewItemPopOptPropOptup-. Die Eigenschaft ist bereits unter C: \ Users \ Administrator \ Desktop \ Autologon.ps1: 5 Zeichen: 17 + New-ItemProperty <<<< -Pfad 'HKLM: \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon' -Name DefaultUserName vorhanden -Value "$ TheUser" + CategoryInfo: ResourceExists: (HKEY_LOCAL_MACH ... ersion \ Winlogon: String) [New-ItemProperty],IOException + FullyQualifiedErrorId: System.IO.IOException, Microsoft.PowerShell.Commands.NewItemPropertyCommand New-ItemProperty: Die Eigenschaft ist bereits vorhanden unter C: \ Users \ Administrator \ Desktop \ Autologon.ps1: 6 Zeichen: 17 + New-ItemProperty <<< <-Path 'HKLM: \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon' -Name DefaultPassword -Value $ ThePassword + CategoryInfo: ResourceExists: (HKEY_LOCAL_MACH ... ersion \ Winlog bei: String) [New-ItemProperty], IOException + FullyQualifiedErrorId: System.IO.IOException, Microsoft.PowerShell.Commands.NewItemPropertyCommand New-ItemProperty: Die Eigenschaft ist bereits vorhanden unter C: \ Users \ Administrator \ Desktop \ Autologon.ps1: 7 Zeichen: 17 + New-ItemProperty <<<< - Pfad "HKLM: \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon"-Name DefautDomainName -value $ TheDomain + CategoryInfo: ResourceExists: (HKEY_LOCAL_MACH ... ersion \ Winlogon: String) [New-ItemProperty], IOException + FullyQualifiedErrorId: System.IO.IOException, Microsoft.PowerShell.Commands.NewItead
Ich weiß nicht, wie ich das beheben kann, und ich würde Ihre Hilfe wirklich schätzen.