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
cmdinstead 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
- Random function timeouts
Sometimes my function runs without issue and I can see my logs in the Logs tab on cloud.appwrite.io. Other times, the function fails with a 500 status code, the...
- I am not getting "to" when email receive...
I am using cloud function to send an email when email received it doesn't have "to" email address. Please see attached image. My cloud function detail: built w...
- Empty listRows() response
Hi there, I'm shehryar, I'm new to react native and appwrite as well, I'm following a tutorial, what's surprising is the listRows({databaseId, tableId, queries}...