-
Notifications
You must be signed in to change notification settings - Fork 803
Add blog post about system-wide policies #3326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e013c44
Initial plan
Copilot 30115c8
Add blog post about system-wide policies for enterprise deployments
Copilot ae9386b
Remove accidentally committed package-lock.json and add to gitignore
Copilot 2c0b99f
Revert unintended changes to yarn.lock and .gitignore
Copilot f81162c
Update policy config link to system-wide-policies docs page and adjus…
Copilot ee10509
Update blog post: align with docs, add available policies section, up…
Copilot a79db14
Fix: wrong link
BornToBeRoot ab8173e
Address review feedback: make policies section generic, update verifi…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| --- | ||
| slug: system-wide-policies | ||
| title: System-Wide Policies for Enterprise Deployments | ||
| authors: [borntoberoot] | ||
| tags: [policies, enterprise, settings, new feature] | ||
| --- | ||
|
|
||
| NETworkManager now supports system-wide policies, giving administrators centralized control over application settings across all users on a machine. This is especially useful in enterprise environments where consistent configuration and security standards need to be enforced. | ||
|
|
||
|  | ||
|
|
||
| <!-- truncate --> | ||
|
|
||
| ## What Are System-Wide Policies? | ||
|
|
||
| System-wide policies allow administrators to enforce specific application settings for all users on a machine. When a policy is active, the corresponding setting is locked in the UI and displays a shield icon along with a message indicating that the setting is managed by an administrator. Users can see the enforced value but cannot change it. | ||
|
|
||
| This ensures that critical settings — such as whether the application checks for updates at startup — remain consistent and tamper-proof across your organization. | ||
|
|
||
| ## How to Configure Policies | ||
|
|
||
| Policies are defined in a simple `config.json` file placed in the same directory as `NETworkManager.exe`. | ||
|
|
||
| **File location:** | ||
|
|
||
| - **Installed version**: `C:\Program Files\NETworkManager\config.json` | ||
| - **Portable version**: Same directory as `NETworkManager.exe` | ||
|
|
||
| **Example `config.json`:** | ||
|
|
||
| ```json | ||
| { | ||
| "Update_CheckForUpdatesAtStartup": false | ||
| } | ||
| ``` | ||
|
|
||
| A `config.json.example` file is included in the application directory for reference. Simply rename it to `config.json` and set your desired policy values. Property names follow the pattern `Section_SettingName` — see the [settings documentation](https://borntoberoot.net/NETworkManager/docs/category/settings) for available policy names. | ||
|
|
||
| :::note | ||
|
|
||
| The file must be named exactly `config.json`, contain valid JSON, and the application must be restarted for changes to take effect. | ||
|
|
||
| ::: | ||
|
|
||
| ## Deploying Policies | ||
|
|
||
| You can deploy the `config.json` file using your preferred method: | ||
|
|
||
| - **Group Policy** — Use Group Policy preferences or a startup script to copy the file to the installation directory. | ||
| - **Configuration management** — Deploy via SCCM/ConfigMgr, Microsoft Intune, Ansible, or similar tools. | ||
| - **Scripts** — Use PowerShell scripts or PSAppDeployToolkit for scripted deployments. | ||
| - **Manual** — Hand-copy the file for small-scale rollouts. | ||
|
|
||
| :::warning | ||
|
|
||
| Ensure the `config.json` file has appropriate permissions so that regular users cannot modify it. On standard installations in `Program Files`, this is automatically enforced by Windows file permissions. | ||
|
|
||
| ::: | ||
|
|
||
| ## Request More Policies | ||
|
|
||
| Additional policy options will be added in future releases. If you have specific requirements for system-wide policies in your organization, please submit a feature request via the [GitHub issue tracker](https://github.com/BornToBeRoot/NETworkManager/issues/new/choose). Your feedback helps prioritize which settings to add next. | ||
|
|
||
| More information is available in the [official documentation](https://borntoberoot.net/NETworkManager/docs/system-wide-policies). | ||
|
|
||
| If you find any issues or have suggestions for improvement, please open an [issue on GitHub](https://github.com/BornToBeRoot/NETworkManager/issues). | ||
Binary file added
BIN
+28.1 KB
Website/blog/2026-02-09-system-wide-policies/system-wide-policy-indicator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot use this link: https://borntoberoot.net/NETworkManager/docs/system-wide-policies and adjust the sentence because the policy names are not there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the link to point to
https://borntoberoot.net/NETworkManager/docs/system-wide-policiesand adjusted the sentence to remove the reference to policy names since they're not listed there. Seef81162c.