Skip to content

Commit c8cd71e

Browse files
committed
Docs: Changelog / Update blog post
1 parent 09c1186 commit c8cd71e

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

Website/blog/2026-02-19-system-wide-policies-for-enterprise-deployments/index.md renamed to Website/blog/2026-02-22-system-wide-policies-for-enterprise-deployments/index.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,27 @@ Property names follow the pattern `Section_SettingName`. You can find the availa
3838

3939
### Example Policy
4040

41-
For example, the [`Update_CheckForUpdatesAtStartup`](https://borntoberoot.net/NETworkManager/docs/settings/update) policy controls whether the application checks for new program versions on GitHub when the application is launched.
41+
For example, the [`Update_CheckForUpdatesAtStartup`](https://borntoberoot.net/NETworkManager/docs/settings/update) policy controls whether the application checks for new program versions on GitHub when the application is launched. The [`Profiles_FolderLocation`](https://borntoberoot.net/NETworkManager/docs/settings/profiles) and [`Settings_FolderLocation`](https://borntoberoot.net/NETworkManager/docs/settings/settings) policies allow administrators to redirect profile and settings storage to a centralized location, such as a network share or a custom local path.
4242

4343
**Values:**
4444

45-
- `true` — Force enable automatic update checks at startup for all users
46-
- `false` — Force disable automatic update checks at startup for all users
47-
- Omit the property — Allow users to control this setting themselves
45+
- `Update_CheckForUpdatesAtStartup`:
46+
- `true` — Force enable automatic update checks at startup for all users
47+
- `false` — Force disable automatic update checks at startup for all users
48+
- Omit the property — Allow users to control this setting themselves
49+
- `Profiles_FolderLocation` / `Settings_FolderLocation`:
50+
- Absolute path (e.g., `C:\\Path\\To\\Profiles`)
51+
- Path with environment variables (e.g., `%UserProfile%\\NETworkManager\\Settings`)
52+
- UNC path (e.g., `\\\\Server\\Shared\\NETworkManager\\Profiles`)
53+
- Omit the property — Allow the default location logic to apply
4854

4955
**Example `config.json`:**
5056

5157
```json
5258
{
53-
"Update_CheckForUpdatesAtStartup": false
59+
"Update_CheckForUpdatesAtStartup": false,
60+
"Profiles_FolderLocation": "\\\\Server\\Shared\\NETworkManager\\Profiles",
61+
"Settings_FolderLocation": "%UserProfile%\\NETworkManager\\Settings"
5462
}
5563
```
5664

Website/blog/2026-02-19-system-wide-policies-for-enterprise-deployments/system-wide-policy-indicator.png renamed to Website/blog/2026-02-22-system-wide-policies-for-enterprise-deployments/system-wide-policy-indicator.png

File renamed without changes.

Website/docs/changelog/next-release.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,17 @@ Release date: **xx.xx.2025**
6060

6161
**Profiles**
6262

63-
- Profiles folder location can now be changed by the user in the settings (see [Profiles > Location](../settings/profiles.md#location) documentation for more information). Additionally, it can be configured via a system-wide policy, allowing administrators to enforce a specific location for all users. [#3340](https://github.com/BornToBeRoot/NETworkManager/pull/3340)
63+
- Profiles folder location can now be changed by the user in the settings (see [Profiles > Location](../settings/profiles.md#location) documentation for more information). [#3340](https://github.com/BornToBeRoot/NETworkManager/pull/3340)
64+
- Profiles folder location can now be configured via a system-wide policy, allowing administrators to enforce a specific location for all users. [#3340](https://github.com/BornToBeRoot/NETworkManager/pull/3340)
6465

6566
**Settings**
6667

67-
- Settings folder location can now be changed by the user in the settings (see [Settings > Location](../settings/settings.md#location) documentation for more information). Additionally, it can be configured via a system-wide policy, allowing administrators to enforce a specific location for all users. [#3324](https://github.com/BornToBeRoot/NETworkManager/pull/3324)
68+
- Settings folder location can now be changed by the user in the settings (see [Settings > Location](../settings/settings.md#location) documentation for more information). [#3324](https://github.com/BornToBeRoot/NETworkManager/pull/3324)
69+
- Settings folder location can now be configured via a system-wide policy, allowing administrators to enforce a specific location for all users. [#3324](https://github.com/BornToBeRoot/NETworkManager/pull/3324)
6870

6971
**Update**
7072

7173
- The update check at startup can now be configured via a system-wide policy, allowing administrators to control whether the application checks for updates (see [Update > Check for updates at startup](../settings/update.md#check-for-updates-at-startup) documentation for more information). [#3313](https://github.com/BornToBeRoot/NETworkManager/pull/3313)
72-
7374
- New language Ukrainian (`uk-UA`) has been added. Thanks to [@vadickkt](https://github.com/vadickkt) [#3240](https://github.com/BornToBeRoot/NETworkManager/pull/3240)
7475
- Migrated all dialogs to child windows for improved usability and accessibility. [#3271](https://github.com/BornToBeRoot/NETworkManager/pull/3271)
7576

0 commit comments

Comments
 (0)