⚡ Generador de Instalador de Agente Unificado

Genere el comando de instalación para el diagnóstico completo de Wazuh para cualquier cliente de Krayin CRM.

Script de Instalación Silenciosa

Cliente: Test Person | Grupo: cliente-test-person
WINDOWS
# 1. Ejecutar PowerShell como Administrador $ManagerHost = "deepeye.cybershieldssolutions.com" $GroupName = "cliente-test-person" $MsiPath = "$env:TEMP\wazuh-agent.msi" # 2. Descargar e instalar agente oficial Wazuh v4.9.2 Invoke-WebRequest -Uri "https://packages.wazuh.com/4.x/windows/wazuh-agent-4.9.2-1.msi" -OutFile $MsiPath Start-Process msiexec.exe -ArgumentList "/i $MsiPath /q WAZUH_MANAGER='$ManagerHost' WAZUH_REGISTRATION_SERVER='$ManagerHost' WAZUH_AGENT_GROUP='$GroupName'" -Wait # 3. Habilitar Auditoría Avanzada de Windows (FIM Whodata & Auth) auditpol /set /subcategory:"File System" /success:enable /failure:enable auditpol /set /subcategory:"Handle Manipulation" /success:enable /failure:enable # 4. Iniciar Servicio Start-Service -Name "Wazuh" Get-Service -Name "Wazuh"
🔍 Ir a Revisar Diagnóstico del Cliente