第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

從 WPF 應(yīng)用程序調(diào)用 powershell 腳本不執(zhí)行腳本

從 WPF 應(yīng)用程序調(diào)用 powershell 腳本不執(zhí)行腳本

C#
慕碼人2483693 2022-12-31 14:02:33
我嘗試從 WPF 應(yīng)用程序(在App.xaml.cs中)調(diào)用 powershell 腳本,如下所示:private void Application_Startup(object sender, StartupEventArgs e){  var process = new Process();  process.StartInfo.FileName = "powershell.exe";  process.StartInfo.Arguments = @"\\WIN-SRV-2019\Betreuung-Release\Install.ps1";  process.Start();  process.WaitForExit();  // ...}結(jié)果,powershell 窗口很快打開,然后在不執(zhí)行腳本的情況下立即關(guān)閉。當(dāng)我在命令行 (CMD) 上執(zhí)行以下命令時(shí):C:\Users\Entwicklung>powershell \\WIN-SRV-2019\Betreuung-Release\Install.ps1...一切正常。腳本按預(yù)期執(zhí)行。我究竟做錯(cuò)了什么?
查看完整描述

1 回答

?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個(gè)贊

我終于發(fā)現(xiàn)了問題所在。我不得不添加-executionpolicy unrestricted到參數(shù)中:


private void Application_Startup(object sender, StartupEventArgs e)

{

  var process = new Process();

  process.StartInfo.FileName = "powershell.exe";

  process.StartInfo.Arguments = @"-executionpolicy unrestricted \\WIN-SRV-2019\Betreuung-Release\Install.ps1";


  process.Start();

  process.WaitForExit();

  // ...

}


查看完整回答
反對(duì) 回復(fù) 2022-12-31
  • 1 回答
  • 0 關(guān)注
  • 175 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)