Issue with Vagrant up on windows 11

Hi there!

When trying to run Vagrant up from Windows 11 Command Promp, got the error:
C:\Users\camik\Ubuntu20>vagrant up
Bringing machine ‘default’ up with ‘virtualbox’ provider…
==> default: Box ‘base’ could not be found. Attempting to find and install…
default: Box Provider: virtualbox
default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly…
==> default: Adding box ‘base’ (v0) for provider: virtualbox
default: Downloading: base
default:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try again.
Couldn’t open file C:/Users/camik/Ubuntu20/base

C:\Users\camik\Ubuntu20>vagrant box list
hashicorp/bionic64 (virtualbox, 1.0.282)
ubuntu/trusty64 (virtualbox, 20190514.0.0)

Actions completed:
Installed VirtualBox for Windows
Installed Vagrant
In windows 11 command prompt, created a folder and subfolder for Ubuntu20 and run the following:
vagrant box add ubuntu/trusty64
vagrant init ubuntu/trusty64
vagrant plugin install vagrant-vb guest
run Vagrant up which led to the error

Thank you