Skip to content

Commit 5562388

Browse files
Merge pull request #5661 from MicrosoftDocs/main
[AutoPublish] main to live - 11/18 13:29 PST | 11/19 02:59 IST
2 parents afe0fe4 + 1e5d46d commit 5562388

File tree

2 files changed

+35
-19
lines changed

2 files changed

+35
-19
lines changed

defender-endpoint/linux-install-with-defender-deployment-tool.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ The Defender deployment tool enforces the following set of prerequisites checks,
6767

6868
```console
6969
Archive: WindowsDefenderATPOnboardingPackage.zip
70-
inflating: defender-deployment-tool.sh
70+
inflating: defender_deployment_tool.sh
7171
```
7272

7373
1. Grant executable permissions to the script.
7474

7575
```bash
76-
chmod +x defender-deployment-tool.sh
76+
chmod +x defender_deployment_tool.sh
7777
```
7878

7979
1. Run the script using the following command to install and onboard Microsoft Defender for Endpoint on your endpoint.
8080

8181
```bash
82-
sudo bash defender-deployment-tool.sh
82+
sudo bash defender_deployment_tool.sh
8383
```
8484

8585
This command installs the latest agent version from the production channel and onboards the device to Defender portal. It might take 5-20 minutes for the device to show up in the [Device Inventory](https://security.microsoft.com/machines?category=all-devices).
@@ -90,7 +90,7 @@ The Defender deployment tool enforces the following set of prerequisites checks,
9090
1. You can further customize deployment by passing parameters to the tool based on your requirements. Use the option `--help` to see all the available options:
9191

9292
```bash
93-
./defender-deployment-tool.sh --help
93+
./defender_deployment_tool.sh --help
9494
```
9595

9696
:::image type="content" source="./media/linux-install-with-defender-deployment-tool/deployment-tool-help.png" alt-text="Screenshot showing the help command output." lightbox="./media/linux-install-with-defender-deployment-tool/deployment-tool-help.png":::
@@ -99,17 +99,17 @@ The following table provides examples of commands for useful scenarios.
9999

100100
| **Scenario** | **Command** |
101101
|:-------------|:------------|
102-
| Check for unmet non-blocking prerequisites | `sudo ./defender-deployment-tool.sh --pre-req-non-blocking` |
103-
| Run the connectivity test | `sudo ./defender-deployment-tool.sh --connectivity-test` |
104-
| Deploy to a custom location | `sudo ./defender-deployment-tool.sh --install-path /usr/microsoft/` |
105-
| Deploy from the insider-slow channel | `sudo ./defender-deployment-tool.sh --channel insiders-slow` |
106-
| Deploy using a proxy | `sudo ./defender-deployment-tool.sh --http-proxy <http://username:password@proxy_host:proxy_port>` |
107-
| Deploy a specific agent version | `sudo ./defender-deployment-tool.sh --mdatp 101.25042.0003 --channel prod` |
108-
| Upgrade to a specific agent version | `sudo ./defender-deployment-tool.sh --upgrade --mdatp 101.24082.0004` |
109-
| Downgrade to a specific agent version | `sudo ./defender-deployment-tool.sh --downgrade --mdatp 101.24082.0004` |
110-
| Uninstall Defender | `sudo ./defender-deployment-tool.sh --remove` |
111-
| Only onboard if Defender is already installed | `sudo ./defender-deployment-tool.sh --only-onboard` |
112-
| Offboard Defender | `sudo ./defender-deployment-tool.sh --offboard MicrosoftDefenderATPOffboardingLinuxServer.py`<br>*(Note: The latest offboarding file can be downloaded from the Microsoft Defender portal)* |
102+
| Check for unmet non-blocking prerequisites | `sudo ./defender_deployment_tool.sh --pre-req-non-blocking` |
103+
| Run the connectivity test | `sudo ./defender_deployment_tool.sh --connectivity-test` |
104+
| Deploy to a custom location | `sudo ./defender_deployment_tool.sh --install-path /usr/microsoft/` |
105+
| Deploy from the insider-slow channel | `sudo ./defender_deployment_tool.sh --channel insiders-slow` |
106+
| Deploy using a proxy | `sudo ./defender_deployment_tool.sh --http-proxy <http://username:password@proxy_host:proxy_port>` |
107+
| Deploy a specific agent version | `sudo ./defender_deployment_tool.sh --mdatp 101.25042.0003 --channel prod` |
108+
| Upgrade to a specific agent version | `sudo ./defender_deployment_tool.sh --upgrade --mdatp 101.24082.0004` |
109+
| Downgrade to a specific agent version | `sudo ./defender_deployment_tool.sh --downgrade --mdatp 101.24082.0004` |
110+
| Uninstall Defender | `sudo ./defender_deployment_tool.sh --remove` |
111+
| Only onboard if Defender is already installed | `sudo ./defender_deployment_tool.sh --only-onboard` |
112+
| Offboard Defender | `sudo ./defender_deployment_tool.sh --offboard MicrosoftDefenderATPOffboardingLinuxServer.py`<br>*(Note: The latest offboarding file can be downloaded from the Microsoft Defender portal)* |
113113

114114
## Verify deployment status
115115

@@ -173,7 +173,7 @@ The following table provides examples of commands for useful scenarios.
173173
If you're experiencing any connectivity issues, run this command to perform a connectivity test:
174174

175175
```bash
176-
sudo ./defender-deployment-tool.sh --connectivity-test
176+
sudo ./defender_deployment_tool.sh --connectivity-test
177177
```
178178

179179
This test might take some time to run as it performs checks for every URL needed by mdatp and find any issues if present. If the issue persists, refer to the troubleshooting guide.
@@ -213,19 +213,19 @@ To preview new features and provide early feedback, it's recommended that you co
213213
1. Remove the insiders-fast channel version of Defender for Endpoint on Linux..
214214

215215
```bash
216-
sudo ./defender-deployment-tool.sh --remove --channel insiders-fast
216+
sudo ./defender_deployment_tool.sh --remove --channel insiders-fast
217217
```
218218

219219
1. Delete the Defender for Endpoint on the Linux insiders-fast repo.
220220

221221
```bash
222-
sudo ./defender-deployment-tool.sh --clean --channel insiders-fast
222+
sudo ./defender_deployment_tool.sh --clean --channel insiders-fast
223223
```
224224

225225
1. Install Microsoft Defender for Endpoint on Linux using the production channel.
226226

227227
```bash
228-
sudo ./defender-deployment-tool.sh --install --channel prod
228+
sudo ./defender_deployment_tool.sh --install --channel prod
229229
```
230230

231231
## Related content

defender-endpoint/microsoft-defender-antivirus-updates.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,22 @@ Updates contain:
7474
- Serviceability improvements
7575
- Integration improvements (Cloud, [Microsoft Defender XDR](/defender-xdr/microsoft-365-defender))
7676

77+
### October-2025 (Platform: 4.18.25100.9008 | Engine: 1.1.25100.9002)
78+
79+
- Security intelligence update version: **1.441.131.0**
80+
- Release date: **November 6, 2025 (Engine) / November 17, 2025 (Platform)**
81+
- Platform: **4.18.25100.9008**
82+
- Engine: **1.1.25100.9002**
83+
- Support phase: **Security and Critical Updates**
84+
85+
#### What's new
86+
87+
- **Fixed Network Inspection Service stability issue**: The service now correctly restarts when memory usage exceeds the threshold, which prevents the service from getting stuck in a faulty or pending state.
88+
- **Reduced startup delay for Antimalware Service**: Improved Defender service startup time by removing its dependency on Core Service startup. This change improves overall system startup performance.
89+
- **Fixed crash in Defender settings on x86 devices**: Corrected an issue that caused the system to crash when applying Defender configuration settings on 32-bit machines.
90+
- **Fixed Defender startup issue**: The platform no longer crashes when processing invalid Attack Surface Reduction rule exclusions.
91+
- **Reduced system resource usage**: Defender no longer generates excessive Data Loss Prevention (DLP) logs that caused high disk activity, improving overall performance and stability.
92+
7793
### September-2025 (Platform: 4.18.25090.3009 | Engine: 1.1.25090.3001)
7894

7995
- Security intelligence update version: **1.439.345.0**

0 commit comments

Comments
 (0)