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

# Detect if VisioPS is installed

```
Import-Module visio

$module = Get-Module -Name "Visio"
if ($module -eq $null)
{
    Write-Host "VisioPS" not installed
}
else
{
    $modpath = $module.Path
    $modver = $module.Version
    $modfolder = Split-Path $modpath -Parent
    Write-Host VisioPS `($modver`) is installed at `"$modfolder`"
}
```

<br>
