The user was having trouble running the CLI using PowerShell. The issue was that PowerShell was trying to execute `ps1` files first. The user provided two solutions:
1. Run the CLI inside `cmd` instead of PowerShell.
2. Run the CLI with its full name using the `.cmd` extension, such as `appwrite.cmd login`.
Binyamin
22 Sep, 2023, 19:04
You can
Run it inside cmd instead of PowerShell
Run it with is full name like such
TypeScript
appwrite.cmd login
Binyamin
22 Sep, 2023, 19:05
The reason is that PowerShell will try to execute ps1 file first