From 70a2afef90d329cfc64f36db15142daf5626b996 Mon Sep 17 00:00:00 2001 From: anthonyjvoss Date: Sun, 10 Feb 2019 19:24:53 -0600 Subject: [PATCH] Created powershell-version file. (#28184) * Created powershell-version file. * fix: added front matter block --- .../powershell/powershell-version/index.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 guide/english/powershell/powershell-version/index.md diff --git a/guide/english/powershell/powershell-version/index.md b/guide/english/powershell/powershell-version/index.md new file mode 100644 index 0000000000..de0d1aef19 --- /dev/null +++ b/guide/english/powershell/powershell-version/index.md @@ -0,0 +1,24 @@ +--- +title: PowerShell Version +--- + +## Displaying PowerShell Version Details + +### Usage +There are times when determining the version of the current installation of PowerShell is necessary. +In order to view this information, the following command can be run to show the variable details. + +``` +$PSVersionTable + +Name Value +---- ----- +PSVersion 5.1.17134.228 +PSEdition Desktop +PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} +BuildVersion 10.0.17134.228 +CLRVersion 4.0.30319.42000 +WSManStackVersion 3.0 +PSRemotingProtocolVersion 2.3 +SerializationVersion 1.1.0.1 +```