将powershell脚本添加到c#代码中

时间:2015-04-03 02:30:12

标签: .net powershell c#-4.0 c#-3.0 powershell-v2.0

我想从C#代码执行powershell脚本。我不想将powershell脚本存储在任何文件夹中。脚本有点大,它有一个参数a" List"和"字符串",如何做到这一点。

    $ComputerName = "win12"
    $username="administrator"
    $password="passw0rd@12"

   $secstr = New-Object -TypeName System.Security.SecureString
   $password.ToCharArray() | ForEach-Object {$secstr.AppendChar($_)}
   $fname="v.exe"
   $fname="C:\"+$fname

     $cr = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $secstr
      $Session = New-PSSession -ComputerName $ComputerName -Credential $cr
       Invoke-Command -Session $Session -ScriptBlock {
  Start-Process -FilePath $($args[0]) -ArgumentList '/a' -Verb runas -WindowStyle Normal
  $process=[io.path]::GetFileNameWithoutExtension( $($args[0]));
 $a = (Get-Process -Name $process)
 $a.PriorityClass = [System.Diagnostics.ProcessPriorityClass]::RealTime
  } -ArgumentList $fname

这是我的powershell脚本。

1 个答案:

答案 0 :(得分:2)

将PowerShell脚本存储为程序集中的嵌入式资源,然后在运行时提取脚本并将其提供给PowerShell.AddScript(string script)方法。调用PowerShell.Invoke()方法来执行脚本。