Socket
Socket
Sign inDemoInstall

grunt-webapppool

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-webapppool

Grunt integration for Powershell WebAppPool commands


Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

FAQs

Package last updated on 12 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc