docs: reorder silent mode and add full pipeline command example (#19176)
* docs: reorder silent mode and add full pipeline command example * phrase * simplify --------- Co-authored-by: ilyam8 <ilya@netdata.cloud>
Fotis Voutsas committed
Dec 10, 2024 at 10:17 UTC
b9c43154c0b2c2641f7fef73c68f6740709f0cf6
1 file changed
+21
-12
packaging/windows/WINDOWS_INSTALLER.md
+21
-12
@@ -11,12 +11,9 @@ You can download the Netdata Windows installer (MSI) from the official releases
11
| [Stable](https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi) | This is the recommended version for most users as it provides the most reliable and well-tested features. |
12
| [Nightly](https://github.com/netdata/netdata-nightlies/releases/latest/download/netdata-x64.msi) | Offers the latest features but may contain bugs or instabilities. Use this option if you require access to the newest features and are comfortable with potential issues. |
13
14
-## Graphical User Interface (GUI)
15
-
16
-1. **Double-click** the installer to begin the setup process.
17
-2. **Grant Administrator Privileges**: You'll need to provide administrator permissions to install the Netdata service.
18
-
19
-Once installed, you can access your Netdata dashboard at `localhost:19999`.
14
+> **Note**
15
+>
16
+> The Windows version of Netdata is intended for users on paid plans.
17
18
## Silent Mode (Command line)
19
@@ -41,14 +38,26 @@ This section provides instructions for installing Netdata in silent mode, which
38
39
### Example Usage
40
44
-Connect your Agent to your Netdata Cloud Space with token `<YOUR_TOKEN>` and room `<YOUR_ROOM>`:
41
+To connect your Agent to your Cloud Space:
42
43
```bash
47
-msiexec /qn /i netdata-x64.msi TOKEN="<YOUR_TOKEN>" ROOMS="<YOUR_ROOM>"
44
+msiexec /qn /i netdata-x64.msi TOKEN="<YOUR_TOKEN>" ROOMS="<YOUR_ROOMS>"
45
```
46
50
-Replace `<YOUR_TOKEN>` and `<YOUR_ROOM>` with your Space claim token and Room ID, respectively.
47
+Where:
48
52
-> **Note**
53
->
54
-> The Windows version of Netdata is intended for users on paid plans.
49
+- `<YOUR_TOKEN>`: Your Space claim token from Netdata Cloud.
50
+- `<YOUR_ROOMS>`: Your Room ID(s) from Netdata Cloud.
51
+
52
+This command downloads and installs Netdata in one step:
53
+
54
+```powershell
55
+$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest https://github.com/netdata/netdata/releases/latest/download/netdata-x64.msi -OutFile "netdata-x64.msi"; msiexec /qn /i netdata-x64.msi TOKEN=<YOUR_TOKEN> ROOMS=<YOUR_ROOMS>
56
+```
57
+
58
+## Graphical User Interface (GUI)
59
+
60
+1. **Double-click** the installer to begin the setup process.
61
+2. **Grant Administrator Privileges**: You'll need to provide administrator permissions to install the Netdata service.
62
+
63
+Once installed, you can access your Netdata dashboard at `localhost:19999`.