Hi
Probably a silly question and a straightforward answer, but it confuses me a bit.
It seems to me the command below retrieves the remote keys and items, but the values of these are from the local machine. Why is that?
Invoke-Command -ComputerName Computer01 -ScriptBlock {Get-ChildItem -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\NET Framework Setup\NDP\v4'}
Invoke-Command -ComputerName Computer01 -ScriptBlock {Get-ChildItem -Path 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4'}
Regards
Frederick

