我想从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脚本。
答案 0 :(得分:2)
将PowerShell脚本存储为程序集中的嵌入式资源,然后在运行时提取脚本并将其提供给PowerShell.AddScript(string script)方法。调用PowerShell.Invoke()方法来执行脚本。