First, ensure PowerShell execution policy allows script execution:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Now, there are two ways to install mov-cli:
- One-Line Command:
irm https://raw.githubusercontent.com/mov-cli/mov-cli-install/v1/install.ps1 | iex
- Manual Installation: Save the install.ps1 file, then navigate to its directory and execute:
.\install.ps1