> For the complete documentation index, see [llms.txt](https://cellhasher.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cellhasher.gitbook.io/docs/cellhasher-control/index/windows.md).

# Windows

Use the script below to collect system info needed for debugging Cellhasher Control on Windows.

## System Info Script

Run the following script in **PowerShell** and paste the output when reporting an issue:

```powershell
$lines = [System.Collections.Generic.List[string]]::new()

function section($title) { $script:lines.Add(""); $script:lines.Add("=== $title ===") }
function append($line)   { $script:lines.Add($line) }

section "OS INFO"
$os = Get-CimInstance Win32_OperatingSystem
append "OS Name: $($os.Caption)"
append "OS Version: $($os.Version)"
append "Build: $($os.BuildNumber)"

section "ARCHITECTURE"
$cpu = Get-CimInstance Win32_Processor | Select-Object -First 1
$archMap = @{0="x86"; 5="ARM"; 9="x64"; 12="ARM64"}
$archName = if ($archMap.ContainsKey([int]$cpu.Architecture)) { $archMap[[int]$cpu.Architecture] } else { "$($cpu.Architecture)" }
append "CPU Architecture: $archName"
append "OS Bitness: $(if ([Environment]::Is64BitOperatingSystem) { '64-bit' } else { '32-bit' })"
append "Process Bitness: $(if ([Environment]::Is64BitProcess) { '64-bit' } else { '32-bit (WOW64)' })"

section "ADB CHECK"
$adb = Get-Command adb -ErrorAction SilentlyContinue
if ($adb) {
    append "ADB installed: Yes"
    append "ADB path: $($adb.Source)"
    $adbVer = adb version 2>$null | Select-Object -First 1
    append "ADB version: $adbVer"
} else {
    append "ADB installed: No"
}

section "WINDOWS SUBSYSTEM"
$wsl = Get-Command wsl -ErrorAction SilentlyContinue
append "WSL available: $(if ($wsl) { 'Yes' } else { 'No' })"

$output = $lines -join "`n"
Write-Host "=== COPY BELOW ===`n------------------`n$output`n------------------"
```

Copy the output from the `=== COPY BELOW ===` block and include it with your support request.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cellhasher.gitbook.io/docs/cellhasher-control/index/windows.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
