Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Need to ignore differences between "localhost" and the short/long values of (hostname) #63

Open
jpsnover opened this issue Dec 6, 2018 · 0 comments

Comments

@jpsnover
Copy link

jpsnover commented Dec 6, 2018

There is code in the module like this:

Location Changed handler that keeps the compatibility session PWD in sync with the parent PWD

This only applies on localhost.

$locationChangedHandler = {
[PSSession] $session = Initialize-WinSession -ComputerName $SessionComputerName -ConfigurationName $SessionConfigurationName -PassThru
if ($session.ComputerName -eq "localhost")
{
$newPath = $_.newPath
Invoke-Command -Session $session { Set-Location $using:newPath}
}
}

The problem is that the user can specify localhost, nodename, nodename.domain and these code treats them as different. It should not.
Because of this, directory tracking (the snippet above) does not work when the user specifies the hostname.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant