誰かが同じウィンドウで新しいプロセスを実行するのを手伝うことができますか?
$credential = Get-Credential
Start-Process powershell.exe -Credential $credential -NoNewWindow -ArgumentList ".\ListScript.ps1" -Wait
Write-Host "Press any key to continue ..."
$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
-NoNewWindowは機能しませんが、-Credential $ credentialがないと、正常に機能します。どうすれば修正できますか?