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
- edge-tts seems not work with Functions
I create a simple function using edge-tts to generate mp3 from text. It works fine in my local but when deploying to AppWrite, I got the error: Creating Communi...
- The Functions cannot change the Git repo...
When I changed the Git repository(because my github account has been suspended), it didn't work. Please help me ,Thanks so much!
- bulkUpsert and Realtime
Hey when I use Realtime on a Table for creates/updates and use the createOperations method in my Appwrite Function for bulk upserts, will the realtime trigger f...