微软下一代命令解释器Windows PowerShell

互联网 | 编辑: 董宇成 2006-11-16 00:00:00原创 一键看全文

11月14日,在巴塞罗那的IT论坛上,微软发布了Windows PowerShell。PowerShell是微软的下一代命令解释器的Shell程序,能够让管理员自动化和控制Windows桌面及服务器。

Windows PowerShell强大的新功能展示(二)

7. Windows PowerShell作为命令行存储计算器

PowerShell可以完成基本的计算工作

PS> 2*2

不过,Windows PowerShell也可以快速解决存储问题,例如,备份11GB的数据需要多少个700MB的CD。

PS> 11gb/700mb

那么,需要多少个1000GB的存储来备份每个320GB,共425个的Vista桌面呢?

PS > (320gb*425)/1000GB

8. PowerShell 用作日历计算

计算多少天到新年:

PS> ([DateTime]"1/1/2007" -[datetime]::now).days

9. 返回机器上某种类型文件的数量

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"

11. 配置UAC(User Account Control)

PS> set-itemproperty -path HKLM:SOFTWAREMICROSOFTWINDOWSCurrentVersionPoliciesSystem -name ConsentPromptBehaviorAdmin -value 0

12. 管理BitLocker

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()

更多软件资讯请点击PCHOME首页

提示:试试键盘 “← →” 可以实现快速翻页 

总共 3 页< 上一页123
一键看全文

本文导航

相关阅读

每日精选

点击查看更多

首页 手机 数码相机 笔记本 游戏 DIY硬件 硬件外设 办公中心 数字家电 平板电脑