Skip to content

Commit 2431418

Browse files
committed
feat: add Windows ARM64 support to agent installation platforms
1 parent 965735e commit 2431418

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

frontend/src/app/app-module/guides/shared/components/agent-install-selector.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ export class AgentInstallSelectorComponent {
9797
}
9898

9999
onChangeAction(action: any) {
100-
console.log(action);
101100
if (this.selectedPlatform && action.name === 'UNINSTALL') {
102101
this.openModal();
103102
}

frontend/src/app/app-module/guides/shared/components/log-collector.component.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,17 @@ export class LogCollectorComponent {
6161

6262
platforms = [
6363
{
64-
id: 1, name: 'WINDOWS',
64+
id: 1, name: 'WINDOWS (ARM64)',
65+
command: 'Start-Process "C:\\Program Files\\UTMStack\\UTMStack Agent\\utmstack_agent_service_arm64.exe" -ArgumentList \'ACTION\', \'AGENTNAME\', \'PORT\' -NoNewWindow -Wait\n',
66+
shell: 'Windows Powershell terminal as “ADMINISTRATOR”'
67+
},
68+
{
69+
id: 2, name: 'WINDOWS (AMD64)',
6570
command: 'Start-Process "C:\\Program Files\\UTMStack\\UTMStack Agent\\utmstack_agent_service.exe" -ArgumentList \'ACTION\', \'AGENTNAME\', \'PORT\' -NoNewWindow -Wait\n',
6671
shell: 'Windows Powershell terminal as “ADMINISTRATOR”'
6772
},
6873
{
69-
id: 2,
74+
id: 3,
7075
name: 'LINUX', command: 'sudo bash -c "/opt/utmstack-linux-agent/utmstack_agent_service ACTION AGENTNAME PORT"',
7176
shell: 'Linux bash terminal'
7277
}

0 commit comments

Comments
 (0)