We passed QC for windows. Testing Mac version today. Also creating Umbuntu and CUDA miner with manager bot. Yes, the Chicken Miner bot payload is in your install package on D drive.
What is included right now:
Miner installer executable is present.
Miner install script is present.
Updater agent script is present.
Bot rules script is present.
Condition monitor script is present.
Current state from your machine artifacts:
Miner version shows as 1.4.3 in status output.
Service state is NotInstalled.
Bot rules and condition monitor are running, but they are reporting that the miner service is missing.
So the bot framework is installed, but the actual miner service is not healthy yet.
How to test if it is working (quick pass/fail):
Service check (must exist and be Running):
Get-Service -Name ChKn_miner,Chkn_miner,ChknMiner -ErrorAction SilentlyContinue | Select Name,Status,StartType
Scheduled task check (all should exist):
Get-ScheduledTask -TaskName ChknMinerUpdaterAgent,ChknMinerBotRules,ChknMinerConditionMonitor -ErrorAction SilentlyContinue | Select TaskName,State
Bot status check (must show ServiceStatus as Running, not NotInstalled):
Get-Content chknminer-status.json -Raw
Condition monitor check (should not list ServiceNotInstalled in failedConditions):
Get-Content chknminer-condition-state.json -Raw
Live log check (look for status flips to Running):
Get-Content chknminer-botrules.log -Tail 50
Get-Content chknminer-condition-monitor.log -Tail 50
Pass criteria:
Miner service exists and is Running.
Service startup type is Automatic.
Status JSON reports Running.
Condition JSON no longer reports ServiceNotInstalled.
If you want, I can run a focused Step 5-only validation next and capture the exact failing line so we can fix the installer/service registration path.