Remotely
Remotely copied to clipboard
Enable remote execution of scripts. Works with Pester.
We were considering using this module, coupled with Pester. We think you should point out that this module should not be used in a productive environment since it requires clear...
I found this module very useful. Our app had tightly coupled remoting solution. But this is loosely coupled and easy to use. But i am facing a problem with custom...
Expected Behavior Pester tests performed on Master should not result in test failures. Current Behavior ``` Executing script ...\Remotely\Remotely.Tests.ps1 ... Describing ConfigurationName Context Default configuration name [-] Should connect when...
When importing a module $PSScriptRoot is set to the module's directory not that of the calling script. Thus when you import remotely then look for $PSScriptRoot/machineConfig.CSV you aren't going to...
Improve "Description" section to better document the CSV used by Remotely.
Provides clean and safe method of providing per-node PSSessionOptions to target FQDN's. Removed machineConfig.csv feature. --- This change is [](https://reviewable.io/reviews/powershell/remotely/18)
Remotely currently uses csv due to requirement to support PS2.0, however, we should consider supporting json as an option
__Streams is missing the output stream, so it is impossible to check output during failures.
$result = Remotely {Get-Process wmi*} PS C:>> $result.Modules System.Diagnostics.ProcessModule (wmiprvse.exe) System.Diagnostics.ProcessModule (ntdll.dll) System.Diagnostics.ProcessModule (KERNELBASE.dll) System.Diagnostics.ProcessModule (msvcrt.dll) Actual (Get-Process wmi*).Modules’ value on remote machine Size(K) ModuleName FileName --- ``` 512 wmiprvse.exe...
Regardless of the machines listed in the machine configuration file, we need a way to specify the number of allowable concurrent sessions to use for a Remotely call. The main...