Coder Social home page Coder Social logo

runit's Introduction

RunIt - It's a simple way to run Windows Applications with configured Windows Authentication

Releases Notes

Releases

Features

RunIt automate the process of 'Run as' Authentication with simple settings:

Set RunIt section in configuration file

<configSections>
    <section name="enviroment" type="RunIt.Infra.Configuration.EnviromentConfigurationSection, RunIt"/>
</configSections>

Create a enviroment

<enviroment>
</enviroment>

Set a new application in enviroment

<applications>
    <add alias="" filename="" name=""/>
</applications>
  • alias: this required attribute allows to RunIt run without directory and identify the application
  • filename: this required attribute is a full filename with directory is locate de application
  • name: this attribute describe the application.

Exemple Usage:

<enviroment>
    <applications>
        <add alias="sqlm" filename="%programfiles%/.../SqlManaagementStudio.exe" name="SQL Management Studio"/>
    </applications>
</enviroment>

Set a new credential in enviroment

<enviroment>
  <credentials>
    <add name="" username="" password="" domain="" />
  </credentials>
</enviroment>
  • name: this required attribute identify a credential
  • username: this required attribute is a username to authentication on Windows 'Run as'
  • password: this required attribute is a password to authentication on Windows 'Run as'
  • domain: this required attribute is a domain to authentication on Windows 'Run as'

Example Usage:

<enviroment>
  <credentials>
    <add name="dev" username="augusto.mesquita" password="l4zyp4ssw0rd" domain="MyWindowsDomain" />
  </credentials>
</enviroment>

This way we have a configuration

<enviroment>
    <applications>
        <add alias="sqlm" filename="%programfiles%/.../SqlManaagementStudio.exe" name="SQL Management Studio"/>
    </applications>
  <credentials>
        <add name="dev" username="augusto.mesquita" password="l4zyp4ssw0rd" domain="MyWindowsDomain" />
  </credentials>
</enviroment>

Finally, Run It!

Open the 'CMD' and go to RunIt assmbly folder, execute a command:

bin > RunIt.exe -e sqlm dev

runit's People

Contributors

augustodeveloper avatar

Watchers

 avatar

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.