> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vectoraidb.actian.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Windows

> Get VectorAI DB running on Windows using the installer wizard.

## Prerequisites

* Windows 10 or later (64-bit)
* 8 GB RAM (16 GB+ recommended)
* 10 GB disk space (100 GB+ recommended)

## Install VectorAI DB

<Steps>
  <Step title="Run the installer">
    Download the VectorAI DB installer (`ActianVectorAIDB-Setup.exe`) from the [Actian downloads page](https://www.actian.com/databases/vectorai-db/) and double-click it to launch the setup wizard.

    The wizard opens to the license agreement screen.

    <img src="https://mintcdn.com/actianvectorai/-CNsmmlRNQZXCd8e/images/installation/windows-installer-license.png?fit=max&auto=format&n=-CNsmmlRNQZXCd8e&q=85&s=39609a777d049a8cecca3c83d1ec7555" alt="VectorAI DB installer license agreement screen" width="974" height="660" data-path="images/installation/windows-installer-license.png" />
  </Step>

  <Step title="Accept the license agreement">
    Read the **VectorAI DB License and Support Services Agreement**, then check **I agree to the license terms and conditions**.

    The **Install** button becomes active once you accept.
  </Step>

  <Step title="Choose an install location (optional)">
    Click **Options** to open the install location dialog. Enter a path directly or click **Browse** to select a folder, then click **OK** to confirm.

    <img src="https://mintcdn.com/actianvectorai/-CNsmmlRNQZXCd8e/images/installation/windows-installer-location.png?fit=max&auto=format&n=-CNsmmlRNQZXCd8e&q=85&s=40cab9fae9ea5fe3cb1435c92638f58e" alt="VectorAI DB installer location dialog" width="974" height="660" data-path="images/installation/windows-installer-location.png" />

    If you skip this step, the installer uses the default path:

    ```
    C:\Program Files\Actian\VectorAI DB\
    ```

    Collections, logs, and auth data are always written to:

    ```
    C:\ProgramData\Actian\VectorAI DB\
    ```
  </Step>

  <Step title="Click Install">
    Click **Install**. The wizard copies files and registers both Windows services.

    When setup finishes, the wizard shows **Installation Successfully Completed**.

    <img src="https://mintcdn.com/actianvectorai/-CNsmmlRNQZXCd8e/images/installation/windows-installer-complete.png?fit=max&auto=format&n=-CNsmmlRNQZXCd8e&q=85&s=9959de61f4e768df1c45aa8a87ad281c" alt="VectorAI DB installer complete screen" width="974" height="660" data-path="images/installation/windows-installer-complete.png" />
  </Step>

  <Step title="Click Close">
    Click **Close** to exit the wizard. Both services start automatically and no reboot is required.
  </Step>
</Steps>

The REST API is available at `localhost:6573`. The Local UI is available at `localhost:6575`.

## Verify installation

<Note>
  The verify commands below use PowerShell. Run them in a PowerShell terminal after installation.
</Note>

```powershell theme={null}
Get-Service ActianVectorAIDB
Get-Service ActianVectorAIDBDashboard

Invoke-RestMethod http://localhost:6573/
Invoke-RestMethod http://localhost:6573/collections

Start-Process "http://localhost:6575"
```

## Troubleshooting

| Issue                                          | Solution                                                                                                           |
| ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Services not running after install             | Open **Services** (`services.msc`), locate `ActianVectorAIDB` and `ActianVectorAIDBDashboard`, and click **Start** |
| Port 6573 / 6574 / 6575 already in use         | Find the process: `netstat -ano \| findstr :6573`, then stop it or change the port                                 |
| `Invoke-RestMethod` returns a connection error | Wait 10-15 seconds after install for the services to initialize, then retry                                        |
| Engine logs                                    | `C:\ProgramData\Actian\VectorAI DB\logs\actian_vectorai_server.log`                                                |

### Check service status

```powershell theme={null}
Get-Service ActianVectorAIDB | Select-Object Name, Status, StartType
Get-Service ActianVectorAIDBDashboard | Select-Object Name, Status, StartType

Restart-Service ActianVectorAIDB
```

## Uninstall

Go to **Settings > Apps > Installed apps**, find **Actian VectorAI DB**, and select **Uninstall**.

The uninstaller removes the application binaries and stops the services. Data in `C:\ProgramData\Actian\VectorAI DB\` is not removed.

## Next steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/home/quickstart/quickstart">
    Create your first collection, insert vectors, and run a search.
  </Card>

  <Card title="Core concepts" icon="book-open" href="/home/getting-started/overview">
    Understand the data model, architecture, and how search works.
  </Card>

  <Card title="Python SDK" icon="code" href="/sdks/python/installation">
    Install and configure the Python SDK.
  </Card>
</CardGroup>
