UNPKG
iis
Version:
latest (0.2.0)
0.2.0
0.1.66
0.1.65
0.1.41
0.1.31
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
administer iis 7 on windows
github.com/Integrify/node-iis
Integrify/node-iis
iis
/
example
/
createapppool.js
15 lines
(13 loc)
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
iis =
require
(
'../'
);
//
// create a new application pool and set the identity to NetworkService
//
iis.
createAppPool
({
name
:
'NodePool'
,
identity
:
'NetworkService'
},
function
(
err, stdout
) {
if
(!err) {
console
.
log
(
'App pool created'
); } });