Windows Installation
Overview
Troubleshooting
1
$d = "C:\Program Files\Akto Endpoint Shield"
Write-Host "--- Binary ---"
Test-Path "$d\akto-endpoint-shield.exe"
& "$d\akto-endpoint-shield.exe" --version 2>&1
Write-Host "`n--- Scheduled Tasks ---"
Get-ScheduledTask -TaskName "MCPEndpointShield*" | ForEach-Object {
$i = $_ | Get-ScheduledTaskInfo
[PSCustomObject]@{ Task = $_.TaskName; State = $_.State; LastResult = "0x{0:X8}" -f $i.LastTaskResult }
} | Format-Table -AutoSize
Write-Host "`n--- Processes ---"
Get-Process akto-endpoint-shield -ErrorAction SilentlyContinue | Format-Table Name,Id -AutoSize2
Start-ScheduledTask -TaskName "MCPEndpointShieldHTTP"
Start-ScheduledTask -TaskName "MCPEndpointShieldAgent"
Start-ScheduledTask -TaskName "MCPEndpointShieldDetector"
Start-Sleep -Seconds 8
Get-Process akto-endpoint-shield -ErrorAction SilentlyContinueResult
Next step
3
4
cd "C:\Program Files\Akto Endpoint Shield"
.\akto-endpoint-shield.exe agentMessage
Fix
5
Common Issues
What you see
Fix
Get Support for your Akto setup
Last updated