�
�Udac @ s4 i d d 6d g d 6d d 6Z d Z d Z d Z d S(
s 1.1t metadata_versiont previewt statust communityt supported_bys�
---
module: win_power_plan
short_description: Changes the power plan of a Windows system
description:
- This module will change the power plan of a Windows system to the defined string.
- Windows defaults to C(balanced) which will cause CPU throttling. In some cases it can be preferable
to change the mode to C(high performance) to increase CPU performance.
version_added: "2.4"
options:
name:
description:
- String value that indicates the desired power plan.
- The power plan must already be present on the system.
- Commonly there will be options for C(balanced) and C(high performance).
type: str
required: yes
author:
- Noah Sparks (@nwsparks)
s\
- name: Change power plan to high performance
win_power_plan:
name: high performance
s�
power_plan_name:
description: Value of the intended power plan.
returned: always
type: str
sample: balanced
power_plan_enabled:
description: State of the intended power plan.
returned: success
type: bool
sample: true
all_available_plans:
description: The name and enabled state of all power plans.
returned: always
type: dict
sample: |
{
"High performance": false,
"Balanced": true,
"Power saver": false
}
N( t ANSIBLE_METADATAt
DOCUMENTATIONt EXAMPLESt RETURN( ( ( sJ /usr/lib/python2.7/site-packages/ansible/modules/windows/win_power_plan.pyt <module> s
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]