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.
| /* | |
| JSON5 parser module | |
| License: | |
| This software is dual-licensed to the public domain and under the following | |
| license: you are granted a perpetual, irrevocable license to copy, modify, | |
| publish, and distribute this file as you see fit. | |
| No warranty is implied, use at your own risk. | |
| Credits: |
| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
| <?php | |
| header('Content-Type: text/html; charset=utf-8'); | |
| /** | |
| * [helper fn for en/de (crypt) strings] | |
| * @var string | |
| */ | |
| $mod = ( isset( $_GET['mod'] ) ? $_GET['mod'] : '' ); | |
| $val = ( isset( $_GET['val'] ) ? $_GET['val'] : '' ); |