当前位置:   article > 正文

Powershell使用_get-process -name powershell

get-process -name powershell

Powershell简述
Windows PowerShell 是一种命令行外壳程序和脚本环境,使命令行用户和脚本编写者可以利用 .NET Framework的强大功能。
它引入了许多非常有用的新概念,从而进一步扩展了您在 Windows 命令提示符和 Windows Script Host 环境中获得的知识和创建的脚本。
Windows PowerShell v3将伴随着Microsoft Hyper-V 3.0和Windows Server 2012发布。PowerShell v3是一个Windows任务自动化的框架,它由一个命令行shell和内置在这个.NET框架上的编程语言组成。

Powershell常用命令
Update-Help 下载帮助文件
$PSVersionTable/Get-Host 查看Powershell版本
Get-Command 查看Powershell命令
Get-Process 查看进程
Get-service 查看服务
Get-help service 查找与service相关的命令
Get-Alias 查看命令别名
Set-Alias 更改命令的别名 “Set-Alias Com Get-Command”
Get-ExecutionPolicy 查看执行策略
Set-ExecutionPolicy 设置执行策略
执行策略:
{
Restricted 脚本不能运行
RemoteSigned 只能在本地的脚本可以运行
AllSigned 仅当脚本受信任的发布者签名时才能运行
Unrestricted 允许所有脚本运行
}

管道
管道是两个命令连接作为一个命令来使用

Get-Process | start-process
Get-Process -name powershell | Stop-process
  • 1
  • 2

在这里插入图片描述
集成脚本环境(Powershell ISE)
在这里插入图片描述
设置执行策略

Set-ExecutionPolicy 策略名
  • 1

powershell文件命令操作

New-Item myfile -ItemType Directory   	#新建目录
New-Item pass.txt -ItemType File		#新建文件
Remove-Item myfile 					#删除目录
Get-content pass.txt  		#显示文本内容
Set-Content pass.txt -Value "你好!" 	#设置文本内容
Add-Content pass.txt -Value "hello world!"		#追加内容
Clear-Content pass.txt		#清除内容
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述
第一个程序

"hello world! 你好 世界!"
  • 1

在这里插入图片描述
在powershell中是以“$”号声明变量的,而“$”符号不是变量中的一部分,例如“$num”

$num = 666
  • 1

在这里插入图片描述
单引号包含部分中的$computer 被认为是一个文本字符。

$computer = 'server2012'
$conn = 'The computer name $computer'
$conn 
  • 1
  • 2
  • 3

在这里插入图片描述
powershell中一个变量中存放多个对象(列表)

$computer = 'server2012','server2003','redhat','arch'
  • 1

在这里插入图片描述在这里插入图片描述
变量本身有一个属性可以查看其中包含多少个对象。

$computers.count
  • 1

在这里插入图片描述
变量方法使用
length 、toupper() 、tolower() 和replace() 方法
取而代之的是,每个方法都在原有基础上创建了一个新的字符串结果,看上去就好像方法对原始字符串进行了修改,其实最后没有变。

$computer.length   #截取变量长度
$computer.toupper()   #将变量转换为大写
$computer.tolower()     #将变量转换为小写
$computer.replace('2012','2012-R2')   #变量替换
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

后续未完,待续!!!!!!!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/392350
推荐阅读
相关标签
  

闽ICP备14008679号