Skip to content

Commit fa59f91

Browse files
help updates
1 parent e967cd9 commit fa59f91

File tree

2 files changed

+30
-23
lines changed

2 files changed

+30
-23
lines changed

PSScriptToolsManual.pdf

-1 Bytes
Binary file not shown.

en-us/PSScriptTools-help.xml

Lines changed: 30 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8923,7 +8923,7 @@ MemoryMB : 133</dev:code>
89238923
</command:details>
89248924
<maml:description>
89258925
<maml:para>You can use this command to filter for truly unique objects. That is, every property on every object is considered unique. Most things in PowerShell are already guaranteed to be unique, but you might import data from a CSV file with duplicate entries. Get-PSUnique can help filter.</maml:para>
8926-
<maml:para>This command works best with simple objects. Objects with nested objects as properties may not be properly deteted.</maml:para>
8926+
<maml:para>This command works best with simple objects. Objects with nested objects as properties may not be properly detected.</maml:para>
89278927
</maml:description>
89288928
<command:syntax>
89298929
<command:syntaxItem>
@@ -9617,6 +9617,7 @@ OPENDNS-NET-1 208.67.222.222 Cisco OpenDNS, LLC 208.67.21
96179617
<maml:description>
96189618
<maml:para>This is a PowerShell version of the winver.exe utility. This command uses PowerShell remoting to query the registry on a remote machine to retrieve Windows version information. The parameters are the same as in Invoke-Command.</maml:para>
96199619
<maml:para>If you are querying the local computer, all other parameters will be ignored.</maml:para>
9620+
<maml:para>This command is an alternative to using Get-CimInstance and querying the Win32_OperatingSystem.</maml:para>
96209621
</maml:description>
96219622
<command:syntax>
96229623
<command:syntaxItem>
@@ -9815,11 +9816,11 @@ OPENDNS-NET-1 208.67.222.222 Cisco OpenDNS, LLC 208.67.21
98159816
<dev:code>PS C:\&gt;Get-WindowsVersion
98169817

98179818

9818-
Computername: DESK109
9819+
Computername: WINDESK11
98199820

9820-
ProductName EditionID ReleaseID Build InstalledUTC
9821-
----------- --------- --------- ----- ------------
9822-
Windows 10 Pro Professional 2009 19042 10/16/2020 3:09:01 PM</dev:code>
9821+
ProductName EditionID Release Build InstalledUTC
9822+
----------- --------- ------- ----- ------------
9823+
Microsoft Windows 11 Pro Professional 22H2 22622 5/12/2022 1:01:53 PM</dev:code>
98239824
<dev:remarks>
98249825
<maml:para>Query the local host.</maml:para>
98259826
</dev:remarks>
@@ -9830,24 +9831,25 @@ Windows 10 Pro Professional 2009 19042 10/16/2020 3:09:01 PM<
98309831

98319832
Computername: WIN10
98329833

9833-
ProductName EditionID ReleaseID Build InstalledUTC
9834-
----------- --------- --------- ----- ------------
9835-
Windows 10 Enterprise Enterprise 1903 18362 2/6/2020 5:28:34 PM
9834+
ProductName EditionID Release Build InstalledUTC
9835+
----------- --------- ------- ----- ------------
9836+
Microsoft Windows 10 Enterprise 21H2 19044 8/26/2022 4:25:49 PM
9837+
Enterprise
98369838

98379839

9838-
Computername: SRV1
9840+
Computername: SRV2
98399841

9840-
ProductName EditionID ReleaseID Build InstalledUTC
9841-
----------- --------- --------- ----- ------------
9842-
Windows Server 2016 ServerStandard 1607 14393 2/6/2020 5:27:42 PM
9842+
ProductName EditionID Release Build InstalledUTC
9843+
----------- --------- ------- ----- ------------
9844+
Microsoft Windows Server 2016 ServerStandard 14393 8/26/2022 4:26:00 PM
98439845
Standard
98449846

98459847

9846-
Computername: SRV2
9848+
Computername: SRV1
98479849

9848-
ProductName EditionID ReleaseID Build InstalledUTC
9849-
----------- --------- --------- ----- ------------
9850-
Windows Server 2016 ServerStandard 1607 14393 2/6/2020 6:47:12 PM
9850+
ProductName EditionID Release Build InstalledUTC
9851+
----------- --------- ------- ----- ------------
9852+
Microsoft Windows Server 2016 ServerStandard 14393 8/26/2022 4:25:54 PM
98519853
Standard</dev:code>
98529854
<dev:remarks>
98539855
<maml:para>Get Windows version information from remote computers using an alternate credential.</maml:para>
@@ -9857,13 +9859,14 @@ Standard</dev:code>
98579859
<maml:title>-------------------------- Example 3 --------------------------</maml:title>
98589860
<dev:code>PS C:\&gt; Get-WindowsVersion -Computername Dom1 | Select-Object *
98599861

9860-
ProductName : Windows Server 2016 Standard Evaluation
9861-
EditionID : ServerStandardEval
9862-
ReleaseID : 1607
9863-
Build : 14393.3474
9864-
Branch : rs1_release
9865-
InstalledUTC : 2/6/2020 5:18:50 PM
9866-
Computername : DOM1</dev:code>
9862+
ProductName : Microsoft Windows Server 2016 Standard
9863+
ReleaseVersion :
9864+
EditionID : ServerStandard
9865+
ReleaseID : 1607
9866+
Build : 14393.693
9867+
Branch : rs1_release
9868+
InstalledUTC : 8/26/2022 4:17:05 PM
9869+
Computername : DOM1</dev:code>
98679870
<dev:remarks>
98689871
<maml:para></maml:para>
98699872
</dev:remarks>
@@ -9882,6 +9885,10 @@ Computername : DOM1</dev:code>
98829885
<maml:linkText>WinVer.exe</maml:linkText>
98839886
<maml:uri></maml:uri>
98849887
</maml:navigationLink>
9888+
<maml:navigationLink>
9889+
<maml:linkText>SystemInfo.exe</maml:linkText>
9890+
<maml:uri></maml:uri>
9891+
</maml:navigationLink>
98859892
<maml:navigationLink>
98869893
<maml:linkText>Invoke-Command</maml:linkText>
98879894
<maml:uri></maml:uri>

0 commit comments

Comments
 (0)