Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
| const crypto = require('crypto'); | |
| var encryptionAlgorithm = "aes-256-ctr"; | |
| function decryptCreds(key, cipher) { | |
| var flows = cipher["$"]; | |
| var initVector = Buffer.from(flows.substring(0, 32),'hex'); | |
| flows = flows.substring(32); | |
| var decipher = crypto.createDecipheriv(encryptionAlgorithm, key, initVector); | |
| var decrypted = decipher.update(flows, 'base64', 'utf8') + decipher.final('utf8'); |
| ''' | |
| A Script for automatically downloding earth based image tiles and stitching | |
| them into a single image file. Designed for downloading and stitching together | |
| a cloud map file for use with xplanet. But it could be used for other things. | |
| Images are obtained from the Space Science and Engineering Center (SSEC) | |
| at the University of Wisconsin-Madison through their RealEarth project. | |
| RealEarth is a data discovery and visualization platform developed at | |
| SSEC/CIMSS at the University of Wisconsin-Madison to support outreach | |
| and collaboration efforts of scientists. |