Git Product home page Git Product logo

Comments (4)

BenjaminMichael avatar BenjaminMichael commented on May 27, 2024 1

Yeah you're right it doesn't work that way. What I have always done is use PowerShell in a more atomic way so I run a small script that gathers a list and returns it to Javascript then I have Javascript iterate through the list entering in each value as a parameter in the next PowerShell operation. In this way I would, for example, get-adprincipalgroupmembership and then get-effectiveaccess for each of those groups. In my experience this is best done one at a time in series and then you ps.dispose() at the end.

I have a very basic example here: https://github.com/BenjaminMichael/node-powershell-electron-basic-demo

from child-shell.

BenjaminMichael avatar BenjaminMichael commented on May 27, 2024

I know, isn't it fun to use node-powershell? There's a few ways to accomplish what you are describing but I think the short answer to your question is the "on output" event listener:

let ps = new shell({
            executionPolicy: 'Bypass',
            noProfile: true
            });
ps.on('output', output => {console.log(output)}
ps.addCommand(`./somescript.ps1`)
ps.invoke()

So what I do is have my script output some JSON formatted string that explains what step of the process or more frequently what async thing just completed.

from child-shell.

hsimah avatar hsimah commented on May 27, 2024

Clever. Thanks for that.

See here for other events (where I should have looked).

from child-shell.

hsimah avatar hsimah commented on May 27, 2024

Looking at the source it seems to only emit the output event when EOI is reached - is there a way to get Write-Output (or even Write-Verbose) output during the script running?

Should I break up my cmdlet into smaller components and call them in a promise chain? I would like to recurse over a directory and print in an Electron window what directory is being processed.

from child-shell.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.