Retire Start-FarJob (PowerShellFar) #64
nightroman
announced in
Announcements
Replies: 1 comment
|
Search-Regex.ps1 migrated from |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
The cmdlet
Start-FarJobis going to be removed soon. It is useful in somecases but not really needed with several alternatives available.
Alternatives
(1) Create a new PowerShell instance and use
BeginInvoke.This effectively covers most of known practical cases.
This is what
Start-FarJobuses itself.(2) Use
Start-FarTask. It lacks opinionated features ofStart-FarJobbutoverall it is much more powerful and covers what
Start-FarJobdoes in itsown ways, up to developers.
All reactions