Following command will works from Administrator window.
Question: How to backup of all database?
mongodump
Question: How to Restore databases
mongorestore
Question: How to backup of Single database?
mongodump --db bank
Question: How to Restore single database
mongorestore --db bank dump/bank
Question: How to backup of collection?
mongodump --db bank --collection users
Question: How to Restore single database
mongorestore --db testdb --collection users dump/bank/users.bson
Question: How to repair the mongoDB?
mongod --dbpath "c:/data/db" --repair