Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
CryptoAlgo Inc daad8a087a Add source files 4 years ago
..
readme.txt Add source files 4 years ago
simpleadsutil.cpp Add source files 4 years ago
simpleadsutil.dsp Add source files 4 years ago
simpleadsutil.dsw Add source files 4 years ago
stdafx.cpp Add source files 4 years ago
stdafx.h Add source files 4 years ago

readme.txt

Purpose:
--------
This sample shows how to access IIS meta base info through ADSI from C++.
The sample code is simplified to serve as education purpose.
==========================================================================

functions:
----------
There are three type of commands. ENUM, GET and SET
ENUM command will recursively display each metabase entry and corresponding object type
GET command will display the given ADSI property value.
Set command will set the given ADSI property to given value.
===========================================================

Usage:
------
SimpleADSutil.exe <ENUM|GET|SET> <ADSPATH> [PropertyValue]

Sample:
SimpleAdsutil.exe enum w3svc/1/root
SimpleAdsutil.exe get w3svc/1/ServerBindings
SimpleAdsutil.exe set w3svc/1/ServerBindings ":80:"
==========================================================