上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 91 下一页
  2014年8月19日
摘要: 展开 modules 属性的详细信息get-process |? {$_.processname -eq "cmd"}|select -ExpandProperty modules不显示某个属性,当参数中也包括 -property 时,-excludeproperty 才有效get-process ... 阅读全文
posted @ 2014-08-19 09:45 momingliu11 阅读(2932) 评论(0) 推荐(0) 编辑
  2014年8月18日
摘要: 创建自定义对象 $obj = [pscustomobject]@{a=1;b="";c=$null} % 选择属性列 $obj | gm | % definition ( $obj |gm ).definition $obj | gm |select -ExpandProperty definiti 阅读全文
posted @ 2014-08-18 21:48 momingliu11 阅读(650) 评论(0) 推荐(0) 编辑
摘要: $a="a","","b"$a -contains "a" 返回 $true$a -notcontains "a" 返回 $false$a -eq "a" 返回a,此时的返回值是一个 array 阅读全文
posted @ 2014-08-18 17:59 momingliu11 阅读(2379) 评论(0) 推荐(0) 编辑
  2014年8月17日
摘要: 1 $a=get-process2 foreach ($b in $a)3 {4 write-host "hello: $($b.id)"5 }返回结果:hello: 2536hello: 3528hello: 2316hello: 608hello: 732hello: 1392hello: 2... 阅读全文
posted @ 2014-08-17 10:31 momingliu11 阅读(436) 评论(0) 推荐(0) 编辑
  2014年8月16日
摘要: 将以下命令保存为 HostsModify.ps1,然后执行即可 1 #该脚本用来添加hosts解析记录。脚本在执行的时候会判断当前用户是否为管理员,如果不是则弹出提示框口,要求输入相应密码 2 If (-NOT ([Security.Principal.WindowsPrincipal][Secur... 阅读全文
posted @ 2014-08-16 22:38 momingliu11 阅读(3031) 评论(0) 推荐(0) 编辑
  2014年8月15日
摘要: 方法一:#添加用户变量wmic ENVIRONMENT create name="Testuser",username="%username%",VariableValue="D:\test03"#添加系统变量wmic ENVIRONMENT create name="Testsys",userna... 阅读全文
posted @ 2014-08-15 22:15 momingliu11 阅读(1461) 评论(0) 推荐(0) 编辑
摘要: 获取本地管理员组用户方法一:$strComputer = $env:COMPUTERNAME$computer = [ADSI]("WinNT://" + $strComputer + ",computer")$Group = $computer.psbase.children.find("Admi... 阅读全文
posted @ 2014-08-15 20:25 momingliu11 阅读(1727) 评论(0) 推荐(0) 编辑
摘要: TableControl跟随Form大小变化:选中TableControl,而不是TablePage,右侧Layout:可以对其设置居上、居下等位置 阅读全文
posted @ 2014-08-15 16:07 momingliu11 阅读(219) 评论(0) 推荐(0) 编辑
  2014年8月14日
摘要: 在PS2.0下,button 可以直接调用在 checkbox里面定义的变量,如下:$checkbox1_CheckedChanged={ #TODO: Place custom script here if ($checkbox1.Checked) { $a= 1 } else { $a = 0 ... 阅读全文
posted @ 2014-08-14 23:57 momingliu11 阅读(290) 评论(0) 推荐(0) 编辑
摘要: ###################################################################################### THIS IS SAMPLE CODE AND IS ENTIRELY UNSUPPORTED. THIS CODE AND ... 阅读全文
posted @ 2014-08-14 12:01 momingliu11 阅读(667) 评论(0) 推荐(0) 编辑
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 91 下一页