Skip to content

Commit

Permalink
Merge pull request #4132 from wazuh/bugfix-4085-windowsAgentInstallation
Browse files Browse the repository at this point in the history
Fix windows command for agent installation
  • Loading branch information
matiasmoreno876 authored May 4, 2022
2 parents eb27d09 + c99f608 commit 52580b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed not being able to remove custom filters. [#4112](https://github.com/wazuh/wazuh-kibana-app/pull/4112)
- Fixed spinner not showing when export button is clicked in management views [#4120](https://github.com/wazuh/wazuh-kibana-app/pull/4120)
- Correction of field and value in the section: last registered agent [#4127](https://github.com/wazuh/wazuh-kibana-app/pull/4127)
- Fixed the download agent installer command [#4132] (https://github.com/wazuh/wazuh-kibana-app/pull/4132)

## Wazuh v4.2.6 - Kibana 7.10.2, 7.11.2, 7.12.1, 7.13.0, 7.13.1, 7.13.2, 7.13.3, 7.13.4, 7.14.0, 7.14.1, 7.14.2 - Revision 4207

Expand Down
2 changes: 1 addition & 1 deletion public/controllers/agent/components/register-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export const RegisterAgent = withErrorBoundary(
}-1.pkg && sudo launchctl setenv ${this.optionalDeploymentVariables()}&& sudo installer -pkg ./wazuh-agent-${this.state.wazuhVersion
}.pkg -target /`,
winText: `Invoke-WebRequest -Uri https://packages.wazuh.com/4.x/windows/wazuh-agent-${this.state.wazuhVersion
}-1.msi -OutFile wazuh-agent-${this.state.wazuhVersion}.msi; ./wazuh-agent-${this.state.wazuhVersion
}-1.msi -OutFile \${env:tmp}\\wazuh-agent-${this.state.wazuhVersion}.msi; msiexec.exe /i \${env:tmp}\\wazuh-agent-${this.state.wazuhVersion
}.msi /q ${this.optionalDeploymentVariables()}`,
};

Expand Down

0 comments on commit 52580b8

Please sign in to comment.