-
powershell
- http://technet.microsoft.com/zh-cn/scriptcenter/powershell.aspx
- $Host.Version
- 1..15 | % {Write-Host -ForegroundColor $_ "Hello"}
- Get-Process | Stop-Process -WhatIf
- Get-Process | Stop-Process -Confirm
- Get-EventLog -LogName application -Newest 1
- Get-Verb
- Get-Variable
- Get-Command
- Get-Help
- Update-Help
- Get-Help Get-Process -Examples
- Dir,Cls,Md,Rd,Ls,Get-Process,Get-Service,Get-EventLog,Get-Lost?,Get-Help
- cat,可以用文本文件作为输入参数
- Get-Process notepad | Stop-Process
- Get-History(h), r 23再次执行第23条历史指令
- 重定向:>,>>
- 读文件:Get-Content(gc,cat,type)
- 添加内容:Add-Content(ac)
- 删除文件:Remove-Item(del,erase)
- dir | where { $_.Mode -match '^d' }
- Get-ChildItem . | where { $_.LastWriteTime -gt [datetime]"3/3/2013" }
- New-Item Alias:myalias -Value gps
- New-Item function:myfunction -Value{Get-Process -name $input}, "svchost" | myfunction
- New-Item env:myenv -Value "myenv", Get-Item Env:myenv
- New-Item variable:myvar -Value "myVar", Get-Item Variable:myvar
- Variable:Clear-Variable,Get-Variable,New-Variable,Remove-Variable,Set-Variable
- Alias: Expor-Alias,Get-Alias,Import-Alias,New-Alias,Set-Alias
- Get-Command -Noun Variable,Get-Variable $ | Format-List
- Get-Command -Noun alias
-
相关阅读:
[jdk] JDK1.5新特性
[maven] maven介绍
[Ant] bulid.xml配置详解
[spring] spring面试题
.net(C#)时间相减、C#计算时间间隔
如何记录应用程序日志
交换机、集线器、路由器区别和使用浅谈
ASP.NET 在域控制器上使用默认 ASPNET 帐户不能正常运行
.NET 4中Entity Framework简介
WCF传输性能测试
-
原文地址:https://www.cnblogs.com/dmdj/p/3439650.html
Copyright © 2020-2023
润新知