> For the complete documentation index, see [llms.txt](https://docs.computle.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.computle.com/troubleshooting/streaming-agent/nice-dcv/allow-any-user-to-connect.md).

# Allow Any User to Connect

### Version 2 Machines

```
# Updates NICE DCV default.perm to allow any user to connect

$permFile = "C:\Program Files\NICE\DCV\Server\conf\default.perm"

$content = @"
[permissions]
%any% allow builtin
"@

Set-Content -Path $permFile -Value $content -Force

Write-Host "Updated $permFile with '%any% allow builtin'"

# Restart DCV Server service
Restart-Service -Name "dcvserver" -Force
Write-Host "DCV Server restarted"
```

### Version 3 Machines

Follow [this](/computle-client/computle-client-migration-guide-v3.0.8.md) migration guide.
