Hi,
I have deployed VDI personalized collection of Windows 10 machines (Enterprise edition, x64, 1607 build) on Windows Server 2012 R2. But when I'm trying to use a shadow feature for a remote connection to one of the VDI VMs, I'm getting "Shadow Error:
This computer name is invalid".
After a little of research, I found an article
https://blogs.technet.microsoft.com/askperf/2013/10/22/windows-8-1-windows-server-2012-r2-rds-shadowing-is-back/
By using PowerShell command Get-RDUserSession | Format-List found from thereSessionID and ServerName, that I later injected in this command:
mstsc /shadow:SessionID /v:ServerName /control
After some testing, PowerShell doesn't recognizeGet-RDUserSession anymore, and gives an error:
Get-RDUserSession : The term 'Get-RDUserSession' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
At line:1 char:1
+ Get-RDUserSession
+ ~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Get-RDUserSession:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Server reboot doesn't fix the issue. Can anybody help how to resolve shadowing feature from the server?
Thanks