Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

The windows_screenresolution cookbook has been deprecated

Author provided reason for deprecation:

The windows_screenresolution cookbook has been deprecated and is no longer being maintained by its authors. Use of the windows_screenresolution cookbook is no longer recommended.

You may find that the chocolatey cookbook is a suitable alternative.

RSS

windows_screenresolution (10) Versions 1.1.1

Sets headless screen resolution on Windows

Policyfile
Berkshelf
Knife
cookbook 'windows_screenresolution', '= 1.1.1', :supermarket
cookbook 'windows_screenresolution', '= 1.1.1'
knife supermarket install windows_screenresolution
knife supermarket download windows_screenresolution
README
Dependencies
Changelog
Quality 100%

Windows Screen Resolution Cookbook

Cookbook Version
Build Status

Sets headless screen resolution on Windows.

It does this by:

  • creating a new user called rdp_local
  • creating a startup script to RDP into the specified user account at specified resolution (default is 1920x1080)
  • adding a firewall rule to open RDP port 3389
  • configuring auto-logon to login as rdp_local on reboot

Note that auto-logon requires a username and password and that the password is stored unencrypted under
windows registry HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.

Tested on Amazon Windows Server 2012 R2 AMI.

Requirements

  • Chef 11.6+ (registry_key resource)
  • Windows Server 2008 R2+ (due to usage of window_home)

Platforms

  • Windows

Dependencies

  • windows_autologin
  • windows_home

Usage

Include default recipe in run list or in another cookbook to set the screen resolution.
The username and password must be set in order to user this cookbook.

Attributes

  • username - Username of account to remote login as (required).
  • password - Password of account to remote login as (required).
  • width - Display width in pixels. Defaults to 1920.
  • height - Display height in pixels. Defaults to 1080.
  • target - Identifies the computer or domain name that username and password account will be associated with for remote login. Defaults to localhost.
  • rdp_autologin - Logon as RDP user automatically on reboot. Defaults to true. Note that the password is stored unencrypted under windows registry HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.
  • rdp_username - RDP username. Defaults to rdp_local.
  • rdp_password - RDP password. Defaults to password of account to remote login as, if nil.
  • rdp_domain - RDP domain. Defaults to nil.

Examples

Set newuser's screen resolution to 1920x1080 (default)

node.override['windows_screenresolution']['username'] = 'newuser'
node.override['windows_screenresolution']['password'] = my_secret

include_recipe 'windows_screenresolution::default'

or

windows_screenresolution 'newuser do
  password my_secret
  action :run
end

Set newuser's screen resolution to 1366x768

node.override['windows_screenresolution']['username'] = 'newuser'
node.override['windows_screenresolution']['password'] = 'N3wPassW0Rd'
node.override['windows_screenresolution']['width'] = 1366
node.override['windows_screenresolution']['height'] = 768

include_recipe 'windows_screenresolution::default'

or

windows_screenresolution 'newuser do
  password my_secret
  width 1366
  height 768  
  action :run
end

Getting Help

Contributing

Please refer to CONTRIBUTING.

License

MIT - see the accompanying LICENSE
file for details.

Changelog

1.1.1 2017-02-10

  • Pessimistic lock windows_autologin

1.1.0 2017-01-02

  • Add run resource

1.0.4 2016-12-21

  • Fix #6 WARN: node.set is deprecated and will be removed in Chef 14
  • Fix #5 NoMethodError when password is nil on non-windows platform

1.0.3 2015-11-10

  • Fix #3 Cannot handle percent character in password

1.0.2 2015-07-28

  • Fix #2 Multiple rdp_local directories are created under C:\Users

1.0.1 2015-07-27

  • Fix #1 Cannot create directory due to insufficient permissions

1.0.0 2015-07-28

  • Initial release

Foodcritic Metric
            

1.1.1 passed this metric

License Metric
            

1.1.1 passed this metric