You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the work
Create a generic framework that will allow Health Checker to become multithreaded and work in large environments.
Additional Context Invoke-Command with -AsJob should allow for this to work. Need to review and use some of the same logic that is already in Start-JobManager within the Exchange Log Collector the other locations that we used Receive-Job within the repository.
Need to create a dummy task list that does the following.
Able to setup and connect to Remote PowerShell for Exchange start with the server that we are trying to run against, then the server we are currently connected to
Get the ORG information
Collect a few things like hardware, and OS information
Run a few things in EMS, then a dependency task. Likely need to break things up with our Exchange Cmdlets as they could get too large to run remotely.
The text was updated successfully, but these errors were encountered:
This is going to require a combination of job types. You are unable to use Invoke-Command and trying to connect to Remote Exchange Shell as you just end up getting odd errors. However, you are able to use Start-Job which works but doesn't allow you to execute things remotely against the server. Going to need to come up with something that does both most likely.
Describe the work
Create a generic framework that will allow Health Checker to become multithreaded and work in large environments.
Additional Context
Invoke-Command
with-AsJob
should allow for this to work. Need to review and use some of the same logic that is already inStart-JobManager
within the Exchange Log Collector the other locations that we usedReceive-Job
within the repository.Need to create a dummy task list that does the following.
The text was updated successfully, but these errors were encountered: