Adding hints about Version

This commit is contained in:
L3D 2021-12-13 22:30:10 +01:00
parent d37b616436
commit a68c0e553d
Signed by: L3D
GPG Key ID: CD08445BFF4313D1
1 changed files with 28 additions and 0 deletions

View File

@ -7,3 +7,31 @@ Ansible Playbook to Setup a Windows 10 Enterprise Host to Stream with OBS.
``` ```
Obviously this is work in progress. Use at your own risk Obviously this is work in progress. Use at your own risk
``` ```
Requirements
---------------
Your Windows 10 Host has the following Software Requirements bevore starting ansible usage *(based on [windows_setup.html#host-requirements](https://docs.ansible.com/ansible/latest/user_guide/windows_setup.html#host-requirements)*:
+ PowerShell version 3.0 or newer
+ .NET Framework 4.0 or newer
This Playbook is only tested at Windows 10 Enterprise
### How to get the Version Number
#### Powershell
```ps1
# In your Powershell
Get-Host | Select-Object Version
```
#### .NET Framework
```ps1
# In your Powershell
(Get-ItemProperty "HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full").Version
```
#### Windows Version
```ps1
# In your Powershell
(Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId
```