Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
linenumberstrue
echo job is starting
abcde
echo job is finishing

The same example would be working in Powershell the following way:

Code Block
linenumberstrue
echo job is starting
try{abcde}
catch{}
echo job is finishing
Note

This type of differences described above will be furhter supported like this from JobScheduler and seen as natural differences between the Shell and Powershell languages.

Examples

Example: Powershell as a Shell

...