Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,30 @@ $env:WINAPP_CLI_CACHE_DIRECTORY=d:\temp\.winapp
```

Winapp will create this directory automatically when you run commands like `init` or `restore`.

### Update Checks

The winapp CLI periodically checks for new versions and displays a one-line notice when an update is available. This check runs in the background and adds no latency to commands.

Update checks are automatically disabled in CI environments (GitHub Actions, Azure Pipelines, etc.).

To manually disable update checks, set the `WINAPP_CLI_UPDATE_CHECK` environment variable to `0`.

In **cmd**:
```cmd
set WINAPP_CLI_UPDATE_CHECK=0
```

In **PowerShell** and **pwsh**:
```pwsh
$env:WINAPP_CLI_UPDATE_CHECK = "0"
```

To make this permanent:
```powershell
[System.Environment]::SetEnvironmentVariable('WINAPP_CLI_UPDATE_CHECK', '0', 'User')
```

### ui

Inspect and interact with running Windows app UIs using UI Automation (UIA).
Expand Down
Loading
Loading