I'm trying to verify Windows 10 consoles that MUST be exactly the same from a software standpoint. I plan to use Chef to facilitate this. Every aspect of the console must match its counterparts down to driver versions.
Can I verify drivers, services and environment variables with Chef Infra on a Windows 10 platform?
112 Views Asked by Brían Køch At
2
There are 2 best solutions below
0
Draco Ater
On
You can try using Chef Inspec for that. There is a list of available resources, that it is able to test: https://docs.chef.io/inspec/resources/ . If there no built-in resource that you require, you can write your own in ruby.
Chef Inspec can be run on machine through Chef Client audit cookbook.
Related Questions in CHEF-INFRA
- Get nodes information via chef automate api
- Chef : using search method in a template file
- Node connection failed | Devops | Chef-server | Chef-node
- Chef Recipe; cannot be found in the resource collection
- Unable to run a recipe in chef as it says No such cookbook
- Can't install inspec due to a sha256 error (Cannot find type)
- Handle exit code for server shutdown using Chef recipe and Rundeck
- Accumulator pattern for ruby_block or other non-template resource
- Chef Recipe: iis_pool periodic_restart_schedule getting set to empty array
- How to resolve error with 7zip not getting installed using chef-client version 14.6.47
- Error in bootstrapping chef nodes with chef workstation using ssh
- chef docker-api cookbook fails, error malformed header
- trying to write a receipe to delete a service account using user resource
- Change owner and group of every file directory
- Chef recipe NoMethodError: undefined method `[]' for nil:NilClass
Related Questions in DRIVER
- How to setup SLI on two GTX 560Ti's
- How can I set an uncommon screen resolution on GNU/Linux with an Arc 380 GPU and X11?
- Bluetooth Driver file corrupt or replaced
- Simba Driver Upgrade on Windows
- OpcUA The user identity token is not valid
- RPi Linux Audio driver for 8 channels Codec
- ORA-61754: Using JSON type collections on Oracle Database release 23c or later requires a SODA driver for Oracle Database release 23c or later
- create_ap wlan0: Could not connect to kernel driver
- How to fix Linux CMA on x86 with internal graphic card i915/hda_intel ioremap error?
- How to enable Swap APO in SYSVAD sample driver without enhancement tab in windows 11?
- RT linux isr routine
- I sent a bundle of data by using bulkTransfer, but received data in pieces
- Trying to do sudo make for linux driver
- Erreur "java.lang.ClassNotFoundException: org.postgresql.Driver"
- In Windows 10/11 is there a way to script a device to use a specific driver, even if its not marked as compatible?
Related Questions in VERIFICATION
- Error 553 5.7.2 [TSS09] When Sending Emails to Yahoo and Outlook
- Firebase/Google Cloud projects verification has no answer
- LinkedIn Posting API verification
- keep has_each for a list in Specman
- UVM agents - single/multiple?
- Meta for developers - Verification code too short
- UVM RAL: NULL pointer is dereference
- Check if a path exist in React Native
- Verification failed for Tuya IOS sdk in Flutter after Integration
- Add account verification and password recovery using tokens with react and postgres
- there is this problem in my next-oauthcongiguration it give me this error
- how to use python to split a logical statement and verify it one by one?
- How to generate a .dat file for verilator_coverage?
- delay-google-cloud-console-app-verification for 2 weeks without feedback
- Dafny linked queue implementation
Related Questions in STANDARDS-COMPLIANCE
- Mitigating slowloris and other DDOS attacks in AWS Gov using only AWS products (FedRAMP High) without Cloudfront?
- Is OSCAL suitable for automating compliance for private tenants in Public Clouds?
- How do you manage non-automatable compliance and tasks in code reviews?
- GCP Console error: System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
- CMake conformance mode for MSVC
- SCC Finding filter based on iso (or other) compliance IDs
- What is the jargon or area of study for this type of code (non-compliant, non-conforming)?
- Under which FPCR configuration ARM FP instructions conform to IEEE 754-2008 in AArch64 state?
- Which option of compliance information fits my application, and if needed any compliance documents, what are the documents?
- Newlines in HTTP
- Is it possible to write a strictly conforming C program that outputs to the display?
- Azure Policy DeployIfNotExists fails to change values
- For NSCoding, which "Export Compliance Information" option I should select?
- Which encryption algorithms does AWS Amplify use for iOs apps?
- c16rtomb()/c32rtomb() locale-independent conversion?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Chef is not a tool for verifying the state of a system. Chef is about maintaining consistency in different resources (directory, service, etc.) of a system, and across systems.
For example, you could ensure that a particular version of driver/software is installed, or a service is running. This can be done by defining state of such resources, and those resources will be managed.
"Every aspect" is a very wide and sweeping requirement. The resources Chef can manage (linked above) out of the box can be a good starting point to see how much of your requirement is covered. Keep in mind that some resources are not OS agnostic. It is possible to come up with custom resources to manage other aspects, but it will require a level of familiarity and learning.