上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 91 下一页
  2014年10月24日
摘要: 更改计算机名称:1 #重命名计算机,加入工作组2 $NewComputerName = "WEB"3 $workgroup = "WKGROUP"4 $ComputerInfo = Get-WmiObject -Class Win32_ComputerSystem 5 $ComputerInfo.r... 阅读全文
posted @ 2014-10-24 11:56 momingliu11 阅读(745) 评论(0) 推荐(0) 编辑
  2014年10月23日
摘要: $CurrentPath = $MyInvocation.MyCommand.Path.substring(0,$MyInvocation.MyCommand.Path.LastIndexOf('\')+1)$devcon = Join-Path $CurrentPath devcon.exe#使用... 阅读全文
posted @ 2014-10-23 17:41 momingliu11 阅读(606) 评论(0) 推荐(0) 编辑
摘要: [guid]::NewGuid() 阅读全文
posted @ 2014-10-23 10:55 momingliu11 阅读(208) 评论(0) 推荐(0) 编辑
  2014年10月22日
摘要: 1 #######################################定义变量######################################################### 2 $CurrentPath = $MyInvocation.MyCommand.Path.... 阅读全文
posted @ 2014-10-22 11:47 momingliu11 阅读(1282) 评论(0) 推荐(0) 编辑
摘要: 1 #############################脚本功能及说明#################### 2 #该脚本用来在本地服务器上配置DNS服务器IP 3 #创建时间:2014-10-22 4 5 #########################定义函数###########... 阅读全文
posted @ 2014-10-22 11:45 momingliu11 阅读(826) 评论(0) 推荐(0) 编辑
  2014年10月21日
摘要: 1 #############################脚本功能及说明####################################### 2 #该脚本用来在各台服务器上运行创建任务计划,可以将位于本地的脚本拷贝到远程服务器 3 #通过查看Task_Result.txt文件可... 阅读全文
posted @ 2014-10-21 16:33 momingliu11 阅读(1962) 评论(1) 推荐(1) 编辑
  2014年10月20日
摘要: $array=1..5$array[1..($array.count-1)+0]结果:2,3,4,5,1 阅读全文
posted @ 2014-10-20 13:52 momingliu11 阅读(367) 评论(0) 推荐(0) 编辑
摘要: $a=1..10000方法一:$a -join $null方法二:-join $a方法三(效率次高):[string]::concat($a)方法四(效率最高,但写法麻烦):$sb = New-Object System.Text.StringBuilderForEach-Object -Input... 阅读全文
posted @ 2014-10-20 09:15 momingliu11 阅读(650) 评论(0) 推荐(0) 编辑
  2014年10月17日
摘要: #%windir%\system32\WindowsPowerShell\v1.0\powershell.exe D:\PSScript\ERP_Production_Script\ERPRF_UpdateCheck.ps1############脚本功能说明-2014-10-21#########... 阅读全文
posted @ 2014-10-17 21:41 momingliu11 阅读(1442) 评论(0) 推荐(0) 编辑
摘要: $x=1..3$y=1,2,3if (! (,$x -replace $y,'')) {'equal'}else {'not'} 阅读全文
posted @ 2014-10-17 17:25 momingliu11 阅读(316) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 91 下一页