Where is your shell finding the "
flutter.bat" file? Is the directory
C:\Users\Admin\flutter\bin in your
PATH? The script looks at the directory the script is installed in, in order to figure out where the Flutter root directory is, so if you're running a different one, then it's not going to find the right directory.
So, I'd try:
- Making sure that you're running the right flutter.bat
- Adding C:\Users\Admin\flutter\bin to your path
- Running it from within C:\Users\Admin\flutter
One (or all) of those should help.
-Greg.