¿Hay alguna manera de cambiar de usuario desde powershell o cmd?

¿Hay alguna manera de cambiar de usuario desde powershell o cmd?

Tengo una máquina con Windows 10 que inicia sesión automáticamente en la cuenta de Administrador para netplwizcargar algunos scripts al inicio y necesito iniciar sesión automáticamente con otro usuario después de iniciar sesión en la cuenta de Administrador.

  • ¿Hay alguna manera de hacer esto desde powershello cmd?

Respuesta1

¿Buscas algo como esto?

CÓDIGO DE POWERSHELL:

$Username = 'UserX'
$Password = 'P@ssW0rd'
$pass = ConvertTo-SecureString -AsPlainText $Password -Force #Not recommended, but if rights are set on that location you can use it like this, otherwise encrypt it (recommended).
$Cred = New-Object System.Management.Automation.PSCredential -ArgumentList $Username,$pass

#You can use it like this, or use it with other commands and ' -Credential ...' 
Invoke-Command -ComputerName "DeviceName" -Credential $Cred -ScriptBlock {#Your Code} 

Respuesta2

Si desea cambiar el inicio de sesión automático mediante un código después del inicio de sesión de administrador, puede usar esto:

$RegPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
Set-ItemProperty $RegPath "AutoAdminLogon" -Value "1" -type String 
Set-ItemProperty $RegPath "DefaultUsername" -Value "User-1 -type String 
Set-ItemProperty $RegPath "DefaultPassword" -Value "Password" -type String

información relacionada