From a68c0e553d436101393f2904b165baa54fa3b13a Mon Sep 17 00:00:00 2001 From: L3D Date: Mon, 13 Dec 2021 22:30:10 +0100 Subject: [PATCH] Adding hints about Version --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index 314582a..5ea1f41 100644 --- a/README.md +++ b/README.md @@ -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 ``` + + 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 +```