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
- Function failing with no real explainati...
```js import {Client, ID, Messaging} from 'node-appwrite'; export default async ({req, res, log, error}) => { if (req.method !== 'GET') return res...
- Bun Runtime
Any chance we could get Bun 1.3.8 added to the runtimes? We're currently on 1.1 and the update would be awesome
- Gitlab function automation
Im trying to automate my function deployment using gitlabs ci/cd pipeline. Im currently failing trying to use the appwrite cli to create a new deployment. ```...