How do version differences affect PowerShell commands on remote computers?

2

1

Newer PowerShell versions obviously will come with new features and new cmdlets. This is something which is important to take into consideration when writing scripts, or PowerShell walkthroughs, which may be run locally across systems with different versions installed.

A simple example would be Get-FileHash. This command is new to PowerShell 4.0, and will not be available to any system running an earlier version. It will especially not be available to any systems running Windows 7 SP0 (or Server 2008 R2 SP0) or lower, since PowerShell 4.0 is not supported on those systems at all.

However, aside from a simple matter of supporting the given PowerShell version, even further consideration needs to be made for which Operating System version is installed. For example, Test-NetConnection is only (currently) available to Windows 8.1 (or Server 2012 R2) regardless of which version of PowerShell is installed on a system running any earlier Operating System.

This is all pretty straightforward for scripts or guides that will run PowerShell commands on the local system - if the local system has Operating System version A and PowerShell version B, you can use (and can only use) any commands supported on OS A with PS B. However, it doesn't seem quite so straightforward or clear for cases where a script addresses a remote computer which may be running a different Operation System or PowerShell version.

So, how do differing PowerShell versions affect commands run against remote computers?

  • If the local system is running a higher version, will the newer commands/features be available to use against the remote system?
  • If the remote system is running a higher version, is there an easy (and scriptable) way to leverage the newer commands/features against it when the local system doesn't support them?
  • Are there general rules one can bear in mind to know what compatibility issues to expect, or is this something that varies widely and needs to be individually researched/tested for each command or feature used?

Iszi

Posted 2014-09-15T12:58:02.557

Reputation: 11 686

Answers

0

Cmdlets will only be available if they are on the system where you are running PowerShell currently. I just tested this.

For example, if you are on a server running Windows Server 2012 R2 and you remote to a system running Windows Server 2008 R2, you will not be able to run the cmdlets only available on 2012 R2. Tab-completion will not work and you will get an error if you try to run the cmdlet (because it isn't available).

If you remote from 2008 R2 to 2012 R2, you will be able to use cmdlets available on 2012 R2. Tab completion will also work.

Entbark

Posted 2014-09-15T12:58:02.557

Reputation: 109

Ok, that makes enough sense for actual PS remote sessions. What about using the commands remotely, e.g. with the -Computer parameter from a local console? – Iszi – 2015-08-12T14:11:03.377