Estoy siguiendo esta guía para configurar, registrar y luego ingresar el punto final remoto de PowerShell restringido: https://blogs.technet.microsoft.com/heyscriptingguy/2014/04/01/build-constrained-powershell-endpoint-using-startup- guión/

Estoy siguiendo la documentación tal como está pero obtengo el siguiente error al intentar ingresar a la PSSession:

PS C:\Windows\system32> Enter-PSSession -ComputerName $env:Computername -ConfigurationName ConstrainedSession -Verbose
Enter-PSSession : Exception calling "GetSteppablePipeline" with "1" argument(s): "The expression after '&' in a pipeline element 
produced an object that was not valid. It must result in a command name, a script block, or a CommandInfo object."
At line:1 char:1
+ Enter-PSSession -ComputerName $env:Computername -ConfigurationName Co ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Enter-PSSession], MethodInvocationException
    + FullyQualifiedErrorId : RuntimeException

Estoy registrando este script de inicio mientras uso Register-PSSession- http://pasted.co/6b152e12

El registro de la nueva sesión también se realiza y una vez registrado, puedo ver la sesión en Get-PSSessionConfiguration

PS C:\Windows\system32> $PSVersionTable

Name                           Value                                                                                                 
----                           -----                                                                                                 
PSVersion                      5.1.14393.1715                                                                                        
PSEdition                      Desktop                                                                                               
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}                                                                               
BuildVersion                   10.0.14393.1715                                                                                       
CLRVersion                     4.0.30319.42000                                                                                       
WSManStackVersion              3.0                                                                                                   
PSRemotingProtocolVersion      2.3                                                                                                   
SerializationVersion           1.1.0.1    

¿Alguna idea de lo que podría estar yendo mal? Usando Windows Server 2016.

Pranav Jituri
fuente