PowerShell v5.1で 'Autologon.exe for Windows v3.10'を作成した人はいますか?Autologon.exeを使用したPowershellコマンドライン
実行1:管理者として
次が実行されます。
.\Autologon.exe -n guest10 -d test.com -p Password1 -accepteula yes
エラー1:
実行2:管理者として
PowerShellでは、以下が実行されます。
.\Autologon.exe guest10 test.com Password1
誤差2:管理者として
:何も
実行3を起こりませんパワーシェルで彼は次のように実行されます。
$obj=.\Autologon.exe
$name ="guest10"
$domain="test"
$pass="Password1"
& $obj $name $domain $pass
Error3:
式 '&' の後にパイプライン要素には有効ではありませんでしたオブジェクトを生成しました。コマンド名、スクリプトブロック、またはCommandInfoオブジェクトを生成する必要があります。
「autologon.exe」とは何ですか?また、 '$ name'はPowerShell変数に解決されます。定義されていない場合はnullです。 –
Autologonは、レジストリ内の値を暗号化するために使用されます。 @ https://technet.microsoft.com/en-us/sysinternals/autologon.aspxをダウンロードすることができます。実行前に変数を定義しています。例:$ name = "test"なので、nullにしないでください。 – pixelmybit