windows – Powershell Set Lid关闭动作

前端之家收集整理的这篇文章主要介绍了windows – Powershell Set Lid关闭动作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望自动设置Windows 7在我的工作笔记本电脑上关闭盖子时所采取的操作,因为每次登录时都会通过GPO重置.

我知道我可以在批处理脚本中使用powercfg命令来实现这个目的:

  1. powercfg -setacvalueindex 5ca83367-6e45-459f-a27b-476b1d01c936 0
  2. powercfg -setdcvalueindex 5ca83367-6e45-459f-a27b-476b1d01c936 0

然而,这是尝试学习一些PowerShell的一个很好的借口.我的第一次尝试需要10秒以上才能运行.

在运行时和运行方面,我如何改进以下内容?在清洁代码方面.接近下面的惯用PowerShell方法是什么?

  1. $DO_NOTHING = 0
  2.  
  3. $activePowerPlan = Get-WmiObject -Namespace "root\cimv2\power" Win32_PowerPlan | where {$_.IsActive}
  4. $rawPowerPlanID = $activePowerPlan | select -Property InstanceID
  5. $rawPowerPlanID -match '\\({.*})}'
  6. $powerPlanID = $matches[1]
  7.  
  8. # The .GetRelated() method is an inefficient approach,i'm looking for a needle and this haystack is too big. Can i go directly to the object instead of searching?
  9. $lidCloseActionOnACPower = $activePowerPlan.GetRelated("win32_powersettingdataindex") | where {$_.InstanceID -eq "Microsoft:PowerSettingDataIndex\$powerPlanID\AC\{5ca83367-6e45-459f-a27b-476b1d01c936}"}
  10. $lidCloseActionOnBattery = $activePowerPlan.GetRelated("win32_powersettingdataindex") | where {$_.InstanceID -eq "Microsoft:PowerSettingDataIndex\$powerPlanID\DC\{5ca83367-6e45-459f-a27b-476b1d01c936}"}
  11.  
  12. $lidCloseActionOnACPower | select -Property SettingIndexValue
  13. $lidCloseActionOnACPower.SettingIndexValue = $DO_NOTHING
  14. $lidCloseActionOnACPower.put()
  15.  
  16. $lidCloseActionOnBattery | select -Property SettingIndexValue
  17. $lidCloseActionOnBattery.SettingIndexValue = $DO_NOTHING
  18. $lidCloseActionOnBattery.put()
试试WMI加速器:
  1. $class = ([wmi] '\root\cimv2\power:Win32_PowerSettingDataIndex.InstanceID="Microsoft:PowerSettingDataIndex\\{8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c}\\DC\\{5ca83367-6e45-459f-a27b-476b1d01c936}"')
  2. $class.SettingIndexValue = 0
  3. $class.Put()

猜你在找的Windows相关文章