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

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

通過(guò) C# 打開(kāi) Windows Powershell

通過(guò) C# 打開(kāi) Windows Powershell

C#
幕布斯7119047 2022-11-21 20:39:31
我試圖通過(guò) C# 代碼打開(kāi) Powershell,最終目標(biāo)是通過(guò) C# 編寫(xiě)命令行(不使用 powershell skript)。我做了一些研究并提出了這個(gè)代碼片段,但由于某種原因它只是沒(méi)有打開(kāi) Powershell。Powershell 打開(kāi)的代碼需要改什么?//Opening Powershellprivate void Execute(){ProcessStartInfo startInfo = new ProcessStartInfo{FileName = @"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe",RedirectStandardOutput = true,RedirectStandardError = true,UseShellExecute = false,CreateNoWindow = true,};Process pro = Process.Start(startInfo);pro.WaitForExit();Thread.Sleep(3000);pro.Close();}
查看完整描述

1 回答

?
收到一只叮咚

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

我玩過(guò)這個(gè)。也許還有其他一些方法可以做到這一點(diǎn),但這也有效。由于您需要一些初始設(shè)置,我認(rèn)為您需要使用EnvironmentVariables,如果這樣做,您還需要添加


startInfo.UseShellExecute = false;

所以一個(gè)可行的例子是


    static void Main(string[] args)

    {

        OpenPowerShell(@"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe");

    }


    static void OpenPowerShell(string path)

    {

        ProcessStartInfo startInfo = new ProcessStartInfo(path);

        startInfo.UseShellExecute = false;

        startInfo.EnvironmentVariables.Add("RedirectStandardOutput", "true");

        startInfo.EnvironmentVariables.Add("RedirectStandardError", "true");

        startInfo.EnvironmentVariables.Add("UseShellExecute", "false");

        startInfo.EnvironmentVariables.Add("CreateNoWindow", "true");

        Process.Start(startInfo);

    }

或者,如果您對(duì)另一個(gè)窗口沒(méi)問(wèn)題,只需:


    static void Main(string[] args)

    {

        OpenPowerShell(@"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe");

    }


    static void OpenPowerShell(string path)

    {

        Process.Start(path);

    }


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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