Skip to content

Instantly share code, notes, and snippets.

View prince11jose's full-sized avatar
💭
#chmod 777 everything

PJ prince11jose

💭
#chmod 777 everything
View GitHub Profile
@prince11jose
prince11jose / Windows10AWSEC2.md
Created October 5, 2020 13:12 — forked from peterforgacs/Windows10AWSEC2.md
Running Windows 10 on AWS EC2

Running Windows 10 on AWS EC2

Downloading the image

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.

@prince11jose
prince11jose / connect.ps1
Created July 10, 2020 18:41 — forked from jdforsythe/connect.ps1
Remote Desktop Auto Login Powershell Script
echo "Connecting to 192.168.1.100"
$Server="192.168.1.100"
$User="Administrator"
$Password="AdminPassword"
cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password
mstsc /v:$Server