docs/category-overview-pages/working-with-netdata-on-windows.md
This section introduces Windows-specific workflows for working with a local Netdata installation.
If Netdata is installed in the default location, you can launch its bundled MSYS2 environment by running:
C:\Program Files\Netdata\msys2.exe
Win + R."C:\Program Files\Netdata\msys2.exe".Enter.Open PowerShell and run:
& "C:\Program Files\Netdata\msys2.exe"
Open Command Prompt and run:
"C:\Program Files\Netdata\msys2.exe"
When msys2.exe starts, it opens a shell environment for working with the Netdata files installed on your Windows system.
When a Netdata setting is consumed from the MSYS side of the Windows installation, write Windows paths in MSYS format instead of native Windows drive-letter format.
For example:
C:\Program Files\Netdata/c/Program Files/NetdataUse this pattern:
C: with /c\ with forward slashes /This means:
C:\Program Files\Netdata\etc\netdata becomes /c/Program Files/Netdata/etc/netdata/C:\Program Files\Netdata\usr\bin\netdata.exe becomes /c/Program Files/Netdata/usr/bin/netdata.exeedit-configInside the Netdata MSYS environment, use the edit-config helper script from /etc/netdata/edit-config when you want to edit Netdata configuration files.
For example:
cd /etc/netdata
./edit-config netdata.conf
For the complete edit-config workflow and the broader explanation of Netdata config directories, see Netdata Agent Configuration.
When edit-config opens the file on Windows, it uses the nano editor.
nano commands for Windows usersCtrl + W, type the text you want to find, then press Enter.Ctrl + O, press Enter to confirm the filename, then wait for nano to write the file.Ctrl + X.Ctrl + X. If nano asks whether to save modified content, press Y to save your changes or N to discard them.