
powershell
saisaiz
这个作者很懒,什么都没留下…
展开
-
使用c#代码调用powershell
使用c#代码打开powershell并运行命令1. 使用c#代码打开powershellusing System.Diagnostics;Process p = Process.Start("powershell.exe");p.start();原创 2020-10-24 23:02:45 · 10760 阅读 · 1 评论 -
powershell入门教程
微软官方文档:https://docs.microsoft.com/en-us/powershell/scripting/how-to-use-docs?view=powershell-7.1b站入门视频:https://space.bilibili.com/297378187?spm_id_from=333.788.b_765f7570696e666f.2知乎入门教程(写的很好,可以快速入门):https://zhuanlan.zhihu.com/p/145043422https:原创 2020-08-17 14:31:40 · 332 阅读 · 0 评论 -
关于The RPC server is unavailable.的解决方法
在VS中使用测试套件测试server服务器的时候,运行Testcase时,报了如下错误:从中可以看出错误原因,报错的地方The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: The RPC server is unavailable.然后在网上找关于这类错误的解决方法,没有符合的,之后注意到变量$ErrorA原创 2020-08-13 11:15:02 · 2212 阅读 · 0 评论