Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change exe name #2047

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/integration/categories/endpoint/sekoiaio.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The Endpoint Detection Agent is easy to install on Windows or Linux systems once
Execute the following commands **as an administrator**:

```shell
agent.exe install --intake-key <INTAKE_KEY>
.\agent-latest.exe install --intake-key <INTAKE_KEY>
```

To make sure the agent is successfully installed as a service, run the following command:
Expand Down Expand Up @@ -198,7 +198,7 @@ For example, if the agent must communicate with `fra2`, run the following comman
=== "Windows"

```shell
agent.exe install --intake-key <INTAKE_KEY> --region fra2
.\agent-latest.exe install --intake-key <INTAKE_KEY> --region fra2
```

=== "Linux"
Expand Down Expand Up @@ -228,7 +228,7 @@ To update the agent manually, follow the instructions specific to your OS.
Execute the following command **as an administrator**:

```shell
$ProgramFiles\EndpointAgent\agent.exe update
$ProgramFiles\EndpointAgent\agent-latest.exe update
```

Where `$ProgramFiles` refers to the path to the `Program Files` folder, usually `c:\Program Files`.
Expand Down Expand Up @@ -268,7 +268,7 @@ To uninstall the agent, follow the instructions specific to your OS.
Execute the following command **as an administrator**:

```shell
agent.exe uninstall
agent-latest.exe uninstall
```
=== "Linux"

Expand Down Expand Up @@ -296,8 +296,8 @@ To uninstall the agent, follow the instructions specific to your OS.
To remove the service, execute the following commands **as an administrator**:

```shell
agent.exe -service stop
agent.exe -service uninstall
agent-latest.exe -service stop
agent-latest.exe -service uninstall
```

Then, remove the folders created by the agent:
Expand Down Expand Up @@ -607,7 +607,7 @@ Please find options and arguments available for Sekoia Agent by typing
=== "Windows"

````
agent.exe -h
agent-latest.exe -h
````

=== "Linux"
Expand Down
Loading