PowerShell または cmd からユーザーを切り替える方法はありますか?

PowerShell または cmd からユーザーを切り替える方法はありますか?

起動時にいくつかのスクリプトをロードするために管理者アカウントで自動ログインする Windows 10 マシンがありnetplwiz、管理者アカウントでサインインした後、別のユーザーで自動的にサインインする必要があります。

  • powershellまたはからこれを行う方法はありますかcmd?

答え1

このようなものを検索していますか?

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} 

答え2

管理者ログイン後にコードによる自動ログインを変更する場合は、以下を使用できます。

$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

関連情報