Removes docs/solutions/windows/scripts/install-yellowkey-extension.ps1 (thin wrapper that fetched Allen's upstream installer) and updates the policy's run_script.path to install-windows-yellowkey-extension.ps1, the canonical filename in allenhouchins/fleet-extensions. Users drop Allen's installer (with its canonical name) into their GitOps scripts directory; the policy references it directly. <!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** #46360 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Updated Windows YellowKey osquery Fleet policy documentation with revised script references and remediation instructions for hosts that fail to load the extension. * **Chores** * Removed obsolete installation script; installation procedures have been consolidated for improved clarity and maintainability. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Claude <noreply@anthropic.com>
Solutions
Best Practices
General
- Name the file what the profile does.
- For example, instead of
googlePlayProtectVerifyApps.json(the name of the Android policy for this control), describe what it does:enforce-google-play-protect.json.
- For example, instead of
- Use kebab case in file names, with all letters in lowercase.
- Instead of
passwordPolicy.json, usepassword-policy.json.
- Instead of
- Be sure to end files with an empty newline.
symlinks
If a solution is applicable to multiple platforms, keep the original in the main platform directory and symlink it to the other platforms. For example, if an Apple configuration profile can be used on both macOS and iOS, use macOS as the source, and create a symlink in the iOS directory.
cd docs/solutions/ios-ipados/configuration-profiles/- Note that this is the destination that we want the symlink to be in.
ln -s ../../macos/configuration-profiles/my-profile.mobileconfig .- The
.here at the end means the current directory, and will use the same file name as the original (which is what we want).
- The
git add profile.mobileconfiggit commit