Windows x64
SysKeep Agent 0.11.1
The Windows service reports operating system, hardware, monitors, installed software, security posture and Windows Update data. It also checks explicitly approved release metadata and independently verifies eligible downloads. The current MSI has not passed the production Authenticode signing gate, so deploy it only to a controlled pilot group.
Interactive installation
- Download the MSI and compare its complete SHA-256 value with
SHA256SUMS.txt. - Install it from an elevated PowerShell window and check the installer exit code.
- Run the enrolment command immediately and paste the temporary token into the hidden prompt.
- Start the service, request a foreground report if needed, and confirm the asset appears in the correct organisation.
Get-FileHash .\syskeep-agent-0.11.1-windows-x64-pilot.msi -Algorithm SHA256
$process = Start-Process msiexec.exe -Wait -PassThru -ArgumentList @(
'/i', '"syskeep-agent-0.11.1-windows-x64-pilot.msi"', '/qn', '/norestart',
'/L*v', ('"' + $env:TEMP + '\syskeep-agent-install.log"')
)
$process.ExitCode
& "$env:ProgramFiles\SysKeep Agent\SysKeep.Agent.exe" enroll
Start-Service SysKeepAgent
Get-Service SysKeepAgent
Get-Content "$env:ProgramData\SysKeep\Agent\logs\agent.log" -Tail 30
Look for Inventory accepted for asset .... In SysKeep, check Assets and Organisation > Deployment Centre. Revoke the temporary enrolment token after every intended device has enrolled.
Verify update eligibility
After a newer signed release has been published and this device has been explicitly targeted in Deployment Centre, run:
& "$env:ProgramFiles\SysKeep Agent\SysKeep.Agent.exe" check-update
up_to_date is the expected result when the installed version is current. An eligible package is verified and stored in the protected cache only; a customer administrator must still deploy the actual upgrade manually or through GPO.
Silent GPO deployment
Assign the MSI to computers from a read-only software share. Put the enrolment token in a different protected UNC file that only deployment administrators and the intended computer group can read. Use the supplied startup script and pass only that protected file path.
09f209e5...a6913b3-EnrollmentTokenFile "\\fileserver\SysKeepSecrets\school-windows.enroll"
Once every intended computer has enrolled, revoke the token and remove its file. Do not delete %ProgramData%\SysKeep\Agent during an upgrade; it preserves the device identity and encrypted credential.
