Change power plan to high performance
This commit is contained in:
parent
cc2c716f9e
commit
b7067f073d
3 changed files with 8 additions and 0 deletions
|
@ -11,3 +11,4 @@ Ansible role to deploy a obs setup on windows
|
|||
+ Create User OBS
|
||||
+ install OBS, VLC and MPV
|
||||
+ optionally configure autologon *(see ``win_obs_init__autologon_*`` variables)*
|
||||
+ change Power Plan to 'High Performance'
|
||||
|
|
|
@ -8,3 +8,6 @@
|
|||
- name: optionally autologon to obs user
|
||||
ansible.builtin.include_tasks: autologon.yml
|
||||
when: win_obs_init__autologon | bool
|
||||
|
||||
- name: change the power plan to high performance
|
||||
ansible.builtin.include_tasks: powerplan.yml
|
||||
|
|
4
tasks/powerplan.yml
Normal file
4
tasks/powerplan.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- name: change the power plan to high performance
|
||||
community.windows.win_power_plan:
|
||||
guid: 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c
|
Loading…
Reference in a new issue