上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 91 下一页
  2014年8月28日
摘要: 在此系列文章的前一篇,我们看到了怎样使用System.Management.Automation.PowerShell类来在c#应用程序中运行PowerShell 命令。在那些例子中,我们创建的都是默认的运行空间。在这篇文章中,我们一起来看怎样自定义运行空间?比如,可能存在一种情况,你不想用户可以使... 阅读全文
posted @ 2014-08-28 14:28 momingliu11 阅读(1312) 评论(0) 推荐(0) 编辑
摘要: 除了作为一种脚本语言外,Windows PowerShell被多种应用程序使用。这是因为Windows PowerShell引擎可以被托管在一个应用程序内部。这篇博文和下一篇博文将会处理在C#应用程序中托管Windows Powershell的多个API.用来托管Windows Powershell... 阅读全文
posted @ 2014-08-28 14:26 momingliu11 阅读(1163) 评论(0) 推荐(0) 编辑
摘要: Double类型和float都属于浮点类型,精度不高。而Decimal属于高精度 阅读全文
posted @ 2014-08-28 14:21 momingliu11 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 安装MSI包使用PowerShell调用WMI对象,你可以执行下面的脚本来安装你的MSI安装包:1 $box="deviis01" #this is the name of your server2 $product= [WMICLASS]"\\$box\ROOT\CIMV2:win32_Produ... 阅读全文
posted @ 2014-08-28 13:59 momingliu11 阅读(2310) 评论(0) 推荐(1) 编辑
摘要: powershell.exe -Command "& { ('time={0},user={1}' -f (get-date),(whoami)) | Out-File "d:\user.log" -Append }"给.exe文件添加参数,参数是 array 格式$argus = "$env:wi... 阅读全文
posted @ 2014-08-28 13:57 momingliu11 阅读(7330) 评论(0) 推荐(0) 编辑
摘要: WMI服务能够报告详细的硬件信息。通常,每个硬件都来自它们自己的WMI代理类。但是要找出这些硬件类的名字是不容易。所有硬件类都在同一个WMI根下面,你可以在根类查询所有的硬件:Get-WmiObject -Class CIM_LogicalDevice | Out-GridView上面命令能返回基础... 阅读全文
posted @ 2014-08-28 13:37 momingliu11 阅读(617) 评论(0) 推荐(0) 编辑
摘要: function Invoke-SQL1:function Invoke-SQL { param( [string] $DBServer, [string] $Database, [string] $SQLCMD ) $connecti... 阅读全文
posted @ 2014-08-28 11:15 momingliu11 阅读(1996) 评论(0) 推荐(0) 编辑
  2014年8月26日
摘要: New-Alias -name appcmd -value $env:windir\system32\inetsrv\appcmd.exe这样就可以在当前PS环境下直接使用appcmd了 阅读全文
posted @ 2014-08-26 15:14 momingliu11 阅读(395) 评论(0) 推荐(0) 编辑
摘要: PSBASEthe raw view of the objectPSADAPTEDthe fully adapted view of the objectPSEXTENDEDjustthe extended elements of the objectPSOBJECTa view of the ad... 阅读全文
posted @ 2014-08-26 15:00 momingliu11 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 示例:空值判断方法:$csv[1].b -eq "" #返回true[string]::isnullorempty($csv[1].b) #返回true$b[1].b -eq [String]::Empty #返回true$csv[1].b.length -eq 0 #返回true$csv[1].b... 阅读全文
posted @ 2014-08-26 11:48 momingliu11 阅读(597) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 91 下一页