This worked for me
Created a dump remotely from a DB running on mongodb university cluster
mongodump --uri mongodb+srv://user:pwd@cluster0.xyz.mongodb.net/test --archive=test.archive
2020-12-01T10:34:42.574+0530 done dumping test.employee_names (0 documents)
2020-12-01T10:34:42.716+0530 done dumping test.testcoll (1 document)
2020-12-01T10:34:42.814+0530 done dumping test.employee (1 document)
12/01/2020 10:34 AM 1,251 test.archive
Imported into my local instance on my Windows laptop
mongorestore --archive=test.archive --nsFrom ātest." --nsTo "testrst.ā
2020-12-01T10:54:49.366+0530 preparing collections to restore from
2020-12-01T10:54:49.522+0530 finished restoring testrst.employee (1 document)
2020-12-01T10:54:49.523+0530 done
use testrst
switched to db testrst
show collections
employee
employee_names
testcoll