@robinherbots/grunt-webapppool

0.0.4 • Public • Published

grunt-webapppool

Grunt integration for Powershell WebAppPool commands

Getting Started

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-webapppool --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-webapppool');

The "NewWebAppPool" task

Overview

In your project's Gruntfile, add a section named NewWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  NewWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the New-WebAppPool documentation.

The "RemoveWebAppPool" task

Overview

In your project's Gruntfile, add a section named RemoveWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  RemoveWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the Remove-WebAppPool documentation.

The "RestartWebAppPool" task

Overview

In your project's Gruntfile, add a section named RestartWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  RestartWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the Restart-WebAppPool documentation.

The "StartWebAppPool" task

Overview

In your project's Gruntfile, add a section named StartWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  StartWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the Start-WebAppPool documentation.

The "StatusWebAppPool" task

Overview

In your project's Gruntfile, add a section named StatusWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  StatusWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the Status-WebAppPool documentation.

The "StopWebAppPool" task

Overview

In your project's Gruntfile, add a section named StopWebAppPool to the data object passed into grunt.initConfig().

grunt.initConfig({
  StopWebAppPool: {
       your_target: {
            options: {
                computername: 'target computername,' +
                credential: 'user\domain',
                name: 'name of the app pool'
            }
       }
     }
});

Options

options.computername

Type: String
Default value: the local computername

Specifies the computers on which the command runs. The default is the local computer.

options.credential

Type: String
Default value: the current user

Specifies a user account that has permission to perform this action. The default is the current user.

options.name

Type: String
Default value: null

The name of the application pool for which the command is run.

For full details on all the possible codes, please see the Stop-WebAppPool documentation.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.4
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.4
    1
  • 0.0.3
    0

Package Sidebar

Install

npm i @robinherbots/grunt-webapppool

Weekly Downloads

1

Version

0.0.4

License

MIT

Unpacked Size

28.3 kB

Total Files

21

Last publish

Collaborators

  • robinherbots