Coder Social home page Coder Social logo

Comments (4)

BenjaminMichael avatar BenjaminMichael commented on June 18, 2024

Xainey did a demo on how you can ConvertTo-SecureString and pass it to a global object

https://xainey.github.io/2017/powershell-electron-demo/#using-the-credential

from child-shell.

ZescherW avatar ZescherW commented on June 18, 2024

Thanks for the answer. I'm using node-powershell for an automation tool and I'd like to get ride of any ps1 file.

I have the following code implemented for creating an organizational unit, but when I execute it it opens a windows dialog asking for credentials:

private getCredentialsCommandString(username: string, password: string): string {
        let command = "(New-Object -typeName System.Management.Automation.PSCredential -argumentList ${username}, " +
            "(ConvertTo-SecureString ${password} -asPlainText -force))";

        return command;
    }

public async createOrganization(username: string, password: string) {
        let credentialsCommand = this.getCredentialsCommandString(username, password);
        let params = [{Name: "UIA_TestZak"}, {Path: "'OU=Workspace,DC=tdev,DC=local'"}, {Server: "10.9.26.1"},
            {Credential: credentialsCommand}, {ProtectedFromAccidentalDeletion: false}];
        this.ps.addCommand("New-ADOrganizationalUnit", params);
        return await this.ps.invoke();
    }

So is there any way to execute commands with credentials without user interaction?

from child-shell.

BenjaminMichael avatar BenjaminMichael commented on June 18, 2024

Yes this is something you do in PowerShell. cmdlets like Remove-ADGroupMember you can use

-Confirm:$false

example:

Remove-ADGroupMember -Identity $group -Members $user -Confirm:$false

from child-shell.

ZescherW avatar ZescherW commented on June 18, 2024

Thanks. You can close this issue :)

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.