Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adminscripts folder is missing in IIS 7

Tags:

iis-7

I have IIS 7 installed on windows 2008 server. I want to execute commands adsutil.vbs for compression but adminscripts directory is missing under inetpub directory. How can I execute those commands ?

like image 913
user473350 Avatar asked Oct 12 '10 12:10

user473350


People also ask

How do I find my inetpub folder?

Inetpub is a folder which consists of five subfolders and is categorized as a default folder for Microsoft Internet Information Information Services (IIS). You can locate Inetpub folder in the C drive that is also known as C:\\inetpub. Note that all web apps and content will be stored in this folder.

Where is Adsutil VBS located?

IIS provides a script file named Adsutil. vbs that you can use to obtain or set the passwords of the IUSR and IWAM accounts to or from the IIS metabase. The Adsutil. vbs script is usually located in the <Drive>\Inetpub\Adminscripts folder.


2 Answers

In IIS7 those administration scripts are an optional component - make sure that you have the following installed:

IIS > Web Management Tools > IIS 6 Management Capability > IIS 6 Scripting Tools

like image 147
Justin Avatar answered Oct 11 '22 02:10

Justin


You could also consider using the new utility AppCmd.exe included with IIS 7. Here is an article that explains how to enable HTTP Compression using AppCmd.

http://support.microsoft.com/kb/930909

More info on AppCmd http://technet.microsoft.com/en-us/library/cc772200(v=ws.10).aspx

Thanks!

like image 30
Giriraj Avatar answered Oct 11 '22 02:10

Giriraj