码迷,mamicode.com
首页 > 其他好文 > 详细

系统学下POWERSHELL吧,工作当中可能用得到呢。不能像以前那样修修改改了。

时间:2014-05-16 08:55:15      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   class   code   c   

把环境,编辑器,版本这些都弄清楚,说不好还能把FCL类库弄懂个大概???:)

 

bubuko.com,布布扣
[DateTime]::IsLeapYear(2008)
$result = [DateTime]"06/21/2008" - [DateTime]::Now
$result.TotalDays
dir
cd c:
pwd
cd cd qiyi
pwd
Get-Item Cache\* | Move-Item -Destination offline
Get-Item offline\* | Copy-Item -Destination Cache
Get-Process
Get-Process|Where-Object { $_.Handles -ge 500 }
Get-Process|Where-Object { $_.Handles -ge 500 }|Sort-Object Handles
Get-Process|Where-Object { $_.Handles -ge 500 }|Sort-Object Handles|Format-Table Handles,Name,Description -Auto
gps [b-t]*[c-r] | Stop-Process | Whatif
gps [b-t]*[c-r] | Stop-Process -WhatIf
Get-Command *process*
"Hello World" | Get-Member
"Hello World".ToUpper
"Hello World" | ToUpper
"Hello World".ToUpper()
$handleCount = 0
foreach($process in Get-Process) { $handleCount += $process.Handles }
$handleCount
$count = 0
foreach($process in Get-Process) { $count += 1 }
$count
$webClient = New-Object System.Net.WebClient
$content = $webClient.DownloadString("http://www.baidu.com")
$content.Substring(0,1000)
Get-History
bubuko.com,布布扣

bubuko.com,布布扣bubuko.com,布布扣

系统学下POWERSHELL吧,工作当中可能用得到呢。不能像以前那样修修改改了。,布布扣,bubuko.com

系统学下POWERSHELL吧,工作当中可能用得到呢。不能像以前那样修修改改了。

标签:des   style   blog   class   code   c   

原文地址:http://www.cnblogs.com/aguncn/p/3725859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!