Grunt integration for Powershell WebAppPool commands
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');
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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'
}
}
}
});
Type: String
Default value: the local computername
Specifies the computers on which the command runs. The default is the local computer.
Type: String
Default value: the current user
Specifies a user account that has permission to perform this action. The default is the current user.
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.
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.