Skip to content

Commit 1e5d46d

Browse files
authored
Merge pull request #5658 from zeeshan1995/patch-12
Rename deployment tool script references
2 parents c8eba23 + 89e61af commit 1e5d46d

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-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

0 commit comments

Comments
 (0)