扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
解答PowerShell:PowerShell原来的开发代号是Monad,原计划是用以替代Windows中的命令行工具,但是后来微软说它只是技术上的扩充。使用PowerShell,管理员可以做任何在图形界面下所做的事情。Windows PowerShell 1.0可以运行在Windows XP SP2、Windows Server 2003和Windows Vista上。
1. 内置Cmdlets (即"commandlets")
Windows PowerShell中的所有Cmdlets都允许这样的动名词:get-service, get-process, stop-service, get-wmiobject.
2. 强大的通配符和操作对象
要得到以w开头的服务及其依赖服务只要输入:
PS> get-service w* format-list DisplayName, DependentServices |
Windows PowerShell 有意向独特的功能:Whatif ,可以不执行命令就告诉你命令执行结果.如:
PS> stop-service w3* -whatif |
PowerShell 可以开始和结束所有命令的副本,可以在脚本中轻易测试命令并同时保存.
PS> Start-Transcript -Path c:demodfoshow.txt PS> Stop-Transcript |
因为Windows PowerShell位对象而优化,可以向.NET Framework一样从命令行访问COM对象,下列命令告诉你的Vista机器发表"Windows Vista and PowerShell"字串.
PS> $spVoice = new-object -com "SAPI.spvoice" PS> $spVoice.Speak("Windows Vista and PowerShell") |
PS> $band = "The Posies" PS> $player = New-object -com wmplayer.ocx PS> $playlist = $player.mediacollection.getbyauthor($band) PS> $player.openPlayer($playlist.item(0).sourceurl) |
PowerShell可以完成基本的计算工作
PS> 2*2 |
PS> 11gb/700mb |
PS > (320gb*425)/1000GB |
8. PowerShell 用作日历计算
计算多少天到新年:
PS> ([DateTime]"1/1/2007" -[datetime]::now).days |
Windows Vista有许多类型的事件记录和组策略文件等.下列命令是返回当前目录及其子目录中VBScript, Bat 和 PowerShell 脚本的数量:
PS> dir -include *.vbs, *.ps1, *.bat -recurse group-object extension -noelement |
10. 从命令行收集Windows System Assessment Tool数据
PS> get-wmiobject win32_winsat format-table __SERVER, *SCORE -autosize PS> get-wmiobject win32_winsat select *score out-chart -Title "System Assessment Scores by PowerGadgets" |
PS> set-itemproperty -path HKLM:SOFTWAREMICROSOFTWINDOWSCurrentVersionPoliciesSystem -name ConsentPromptBehaviorAdmin -value 0 |
PS > $drives = get-wmiobject -namespace rootCIMv2SecurityMicrosoftVolumeEncryption -class Win32_EncryptableVolume PS> $drives format-table DriveLetter, PersistentVolumeID -autosize PS> $BitLockDrive = $drives[0] PS> $BitLockDrive.GetProtectionStatus() PS> $BitLockDrive.DisableKeyProtectors() PS> $BitLockDrive.EnableKeyProtectors() |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者