随笔分类 -  powershell

powershell相关的文章
摘要:function Get-DatabaseData { [CmdletBinding()] param ( [string]$connectionString, [string]$query, [switch]$isSQLServer ) if ($isSQLServer)... 阅读全文
posted @ 2014-12-04 12:15 firtree 阅读(473) 评论(0) 推荐(0)
摘要:Pssession,Pssession是Windows Powershell会话的意思,一个会话,可以共享数据,提供交互式的对话,我们可以为某些命令例如Invoke-Command 制定会话来远程作业。当然我们还能利用Enter-Pssession来直接和远程计算机连接,直接建立一个持续安全的远程对... 阅读全文
posted @ 2014-09-22 14:38 firtree 阅读(2765) 评论(0) 推荐(0)
摘要:#加载.net的winform模块[Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")$app=[System.Windows.Forms.Application]$myForm=new-object System.Wi... 阅读全文
posted @ 2014-09-05 17:27 firtree 阅读(323) 评论(0) 推荐(0)
摘要:有一种C#命令行console程序,为了能看到console台的输出所以不能做成服务。为了防止这些程序自己死掉,使用powershell监控程序并重启#利用程序名来进行重启if (!(get-process | where-object {$_.mainwindowtitle -eq '管理员: "... 阅读全文
posted @ 2014-08-06 14:47 firtree 阅读(2135) 评论(0) 推荐(0)