# Windows

Windows related tips

# Windows 10 Pro upgrade from Home

Below key should provide several days activation and upgrade to Pro from Home edition
```
8DVY4-NV2MW-3CGTG-XCBDB-2PQFM
```

# Azure AD Connect

https://www.microsoft.com/en-us/download/details.aspx?id=47594

# Windows Server Activation

Windows Server 2019 Eval will shut off in 4 hours when trial expires.

```
DISM /online /Set-Edition:ServerStandard /ProductKey:XXXX /AcceptEula
```

```
DISM /online /Set-Edition:ServerDatacenter /ProductKey:XXXX /AcceptEula
```

# RDPWrap - Windows Remote Desktop Wrapper

Most active to date: 
[https://github.com/sebaxakerhtc/rdpwrap](https://github.com/sebaxakerhtc/rdpwrap)

Config file update:
[https://github.com/sebaxakerhtc/rdpwrap.ini](https://github.com/sebaxakerhtc/rdpwrap.ini)

Updating busy config ini file:
```bash
net stop termService
```
Replace file in `C:\Program Files\RDP Wrapper`
```bash
net start termService
```