You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: defender-endpoint/run-analyzer-linux.md
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,25 @@ If you have issues with Microsoft Defender for Endpoint on Linux and need suppor
36
36
37
37
## Running the binary version of the client analyzer
38
38
39
+
### Run ClientAnalyzer binary shipped MDE:
40
+
> [!NOTE]
41
+
> Starting with the Defender for Endpoint version `101.25062.0000`, the Client Analyzer is shipped with agent. It can be found at the location `/opt/microsoft/mdatp/conf/client_analyzer/binary`
42
+
43
+
To run this client analyzer follow the steps:
44
+
1. Go to directory `/opt/microsoft/mdatp/conf/client_analyzer/binary`:
45
+
46
+
```bash
47
+
cd /opt/microsoft/mdatp/conf/client_analyzer/binary
48
+
```
49
+
2. Run the tool as _root_ to generate diagnostic package:
50
+
51
+
```bash
52
+
sudo ./MDESupportTool -d
53
+
```
54
+
### Download and run ClientAnalyzer binary
55
+
56
+
Follow the below steps if you are using Defender for Endpoint older than `101.25062.0000`
57
+
39
58
1. Download the [XMDE Client Analyzer Binary](https://aka.ms/XMDEClientAnalyzerBinary) tool to the Linux machine that you're to investigating. If you're using a terminal, download the tool by entering the following command:
40
59
41
60
```bash
@@ -86,6 +105,29 @@ If you have issues with Microsoft Defender for Endpoint on Linux and need suppor
86
105
> [!WARNING]
87
106
> Running the Python-based client analyzer requires the installation of PIP packages which could cause some issues in your environment. To avoid issues from occurring, we recommend that you install the packages into a user PIP environment.
88
107
108
+
### Run ClientAnalyzer python version shipped MDE
109
+
> [!NOTE]
110
+
> Starting with the Defender for Endpoint version `101.25062.0000`, the Client Analyzer is shipped with agent. It can be found at the location `/opt/microsoft/mdatp/conf/client_analyzer/python`
111
+
112
+
To run this client analyzer follow the steps:
113
+
1. Go to directory `/opt/microsoft/mdatp/conf/client_analyzer/python`:
114
+
115
+
```bash
116
+
cd /opt/microsoft/mdatp/conf/client_analyzer/python
117
+
```
118
+
2. Run as a root user to install required dependencies.
119
+
120
+
```bash
121
+
sudo ./mde_support_tool.sh
122
+
```
123
+
3. To collect the diagnostic package and generate the result archive file, run again as root.
124
+
125
+
```bash
126
+
sudo ./mde_support_tool.sh -d
127
+
```
128
+
129
+
### Download and run ClientAnalyzer python version
130
+
89
131
1. Download the [XMDE Client Analyzer](https://aka.ms/XMDEClientAnalyzer) tool on the Linux machine you need to investigate. If you're using a terminal, download the tool by entering the following command:
0 commit comments