Clarify instructions for running Client Analyzer shipped version #498
Clarify instructions for running Client Analyzer shipped version #498albertzhao007 wants to merge 2 commits into
Conversation
…ive response Adjust the format which is clearer for binary version and python version separately.
|
Learn Build status updates of commit 215e60a: ✅ Validation status: passed
For more details, please refer to the build report. |
@microsoft-github-policy-service agree company="Microsoft" |
|
Learn Build status updates of commit 9c8e972: ✅ Validation status: passed
For more details, please refer to the build report. |
|
Could you review the proposed changes? IMPORTANT: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
There was a problem hiding this comment.
Pull request overview
This PR clarifies the Live Response instructions for running the XMDE Client Analyzer version that’s shipped with Microsoft Defender for Linux by separating the binary and Python script guidance and tightening the formatting around the steps.
Changes:
- Splits “shipped version” guidance into distinct binary and Python script creation steps.
- Adds/adjusts markdown code fences so the script contents and execution commands are separated more clearly.
| @@ -538,24 +538,25 @@ If Microsoft Defender for Endpoint is already installed on the device, you can r | |||
|
|
|||
| echo "Running MDESupportTool" | |||
| ./MDESupportTool $@ | |||
|
|
|||
| Execute: | |||
| ``` | |||
| - Execute: | |||
| ```bash | |||
| run MDESupportToolBinary.sh -parameters "--bypass-disclaimer -d" | |||
| ``` | |||
| - For Client Analyzer Python shipped with Microsoft Defender for Linux, create an `MDESupportToolPython.sh` file and paste the following content into it. | ||
| ```bash | ||
| #! /usr/bin/bash | ||
|
|
||
| echo "cd /opt/microsoft/mdatp/tools/client_analyzer/python" | ||
| cd /opt/microsoft/mdatp/tools/client_analyzer/python | ||
|
|
||
| echo "Running MDESupportTool" | ||
| ./mde_support_tool.sh $@ | ||
|
|
||
| Execute: | ||
| ``` | ||
| - Execute: | ||
| ```bash | ||
| run MDESupportToolPython.sh -parameters "--bypass-disclaimer -d" | ||
|
|
||
| ``` |
Clarify instructions for running Client Analyzer shipped version in live response
Adjust the format which is clearer for binary version and python version separately.