
TL;DR
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`.
You can
- Run it inside
cmd
instead ofPowerShell
- Run it with is full name like such
TypeScript
appwrite.cmd login

The reason is that PowerShell will try to execute ps1
file first

And it won't work

It worked, thanks

<:appwritefire:823999000330895380>

[SOLVED] Running the CLI using PowerShell
Recommended threads
- Is Quick Start for function creation wor...
I am trying to create a Node.js function using the Quick Start feature. It fails and tells me that it could not locate the package.json file. Isn't Quick Start ...
- Connecting server functions to GitHub re...
The project I am working in has recently moved organizations on Appwrite. The same is true for the repo on GitHub, which as moved from a private user to a organ...
- Missing C++ libstdc library in Python fu...
I have a function running Python 3.12 which suddenly started dumping errors (as of today; it worked yesterday). I hadn't changed any code so I found this odd, b...
