A systems administrator needs to configure several Windows 11 workstations so that files with a custom file extension (.logcfg) automatically open using a specific proprietary application executable. The administrator wants to inspect and update the file extension binding and the corresponding executable command-line program using the Windows Command Prompt. Which TWO command-line utilities should the administrator use to accomplish this task?
- assocAnswer
- ftypeAnswer
- Cchmod
- Ddism
Answer
The administrator should use `assoc` and `ftype` to manage file extension bindings and associated executable launch strings in Windows.
In Windows, file association management from the command prompt is split into two commands: `assoc` links a file extension to a file type name, while `ftype` defines the executable launch command for that file type.
Step-by-Step Solution
Key Concept
Managing Windows file extension associations via Command Prompt using `assoc` and `ftype`