Posted:    

Average Rating

Tags

Comments

  1. bgold
    May 23, 2006
    congratulations Bill!  Job well done.
  2. TobinTitus
    May 24, 2006
    Looks great Bill. Thanks for the hard work!
  3. TobinTitus
    May 24, 2006
    That's awesome!
  4. Tobin Titus' IIS Blog
    May 24, 2006
    The IIS 7 Commander-in-chief, Bill Staples , has just released a screenshot of his new 17" MacBook running...
  5. ericdeily
    May 24, 2006
    I'd have beaten him if only my 15" macbook Pro would get here.  It's now in Anchorage.  And soon it'll be in my hot lil hands, and will be dual booting Vista & OSX.  If only I could bring it down w/me to TechEd in Auckland & Sydney.  wouldn't that be a kick - IIS7 on Vista on MacBook Pro during a talk.  I wonder how well it replicates the display...
  6. Bernard
    May 25, 2006
    Is it just me ? I can't browse - http://wallpaper.iis7.org
  7. wahyu1
    May 25, 2006
    My first impression was that this is an Apple related page :). As we all knew that Apple pages or apps have always this metal background that this page use for the footer and the header.
  8. ericdeily
    May 26, 2006
    it's back up Bernard.  "technical difficulties", but you'll notice that it's using Bill's dir browse module and handler.  
  9. Bernard
    May 27, 2006
    Zzz,  HTTP Error 500 - Internal server error  :)

    Bill need to revisit the code ? :)
  10. bills
    May 27, 2006
    the code + content is hosted on a remote file server on the back-end, and it looks like we have a bug in IIS right now when the connection between web server and file server is interrupted. nothing like dogfooding beta code! ;)
  11. bills
    May 28, 2006
    Thanks Wahyu1 - I'll take that as a compliment. ;)
  12. Tobin Titus
    June 16, 2006
    The IIS 7 Commander-in-chief, Bill Staples , has just released a screenshot of his new 17" MacBook running...
  13. The Cool Macbook Pro blog / IIS7 Wallpaper and Fun
    August 9, 2006
    PingBack from http://mrkab.com/macbook-pro/?p=137
  14. ScottGu's Blog
    September 7, 2006

    As you might have already heard, Windows Vista RC1 was released late last week. I've been running it

  15. Microsoft News Tracker
    September 7, 2006

    Vista RC1 Reaction Roundup ...

  16. ScottGu's blog
    September 8, 2006
  17. Venkatarangan's Blog [வெங்கடரங்கன் வலைப்பதிவு]
    September 12, 2006
  18. Windows Server Division WebLog
    September 20, 2006

    Customers have two options to check out IIS 7.0 - it's in both Windows Vista (now at RC1) and Windows...

  19. Windows Server Division WebLog
    September 20, 2006

    Customers have two options to check out IIS 7.0 - it's in both Windows Vista (now at RC1) and Windows...

  20. interscape
    September 20, 2006

    Bill,

    Does this mean that IIS 7 on Windows Server 2007 will actually be IIS 7.1? Does that then mean that IIS7 in Vista will be updated after Windows Server 2007 ships?

    Robert McLaws

    LonghornBlogs.com

  21. bills
    September 20, 2006

    Hi Robert!  No, we don't plan to rev the version number when server releases. Most of the changes won't be visible, though there could be a few that are.  The plan is to update IIS7 in Vista with the same code we ship in Server in the first service pack, so that we can service both simultaneously as needed.  Again, the primary goal is to enable developers to build and test their applications in the same environment as the apps will deploy on server, so we will strive to keep them in sync.  

  22. John C. Bland II on *
    September 21, 2006

    I’m in a session with Bill Staples titled “IIS on PHP” and he showed how to setup PHP to work with IIS 7. He has documented it on his blog here. I’ll just tell you real quick what to do....

  23. Xeno
    September 26, 2006
    But you are still running PHP as a CGI! Why PHP runs so well with Apache is because it acts as a module and stays up. In this instance, everytime you want to run a PHP app, you have to START PHP first which takes a half a second longer to execute your scripts. Also, IIS still only runs on Windows and I can't shut off the GUI; even from a command line, the Windowing functionality is still using resource that the web server could be using. With Apache on Linux, I can shut off the X-server (or not even install it at all) and have more resources dedicated to my web server. These for me are still the ongoing issues as to why I don't use PHP on IIS. Why use it on Windows with IIS when Apache on Linux gives so much better performance??
  24. bills
    September 27, 2006

    Xeno - actually, if you look more closely the configuration I do above is to run PHP as an ISAPI, which runs in-process with the IIS worker process.  This is essentially the same as running mod_php on apache.  The biggest difference is that ISAPI requires all of the PHP extensions to be threadsafe, since IIS worker processes are multi-threaded.  If this is an issue, then the CGI route is safer, since each request runs in it's own single-threaded process.

    In order to provide the best performance, and reliability of PHP on windows, I'd recommend using a fastCGI extension for IIS.  There are several of them out there, including one from Zend (http://www.zend.com/) which enables PHP to run quite fast on Windows.  This is a feature we intend to add to IIS in the coming year.  Hope this helps-

  25. Lars
    September 27, 2006
    The pictures are not showing, which makes step 8 very hard to complete :-(
  26. bills
    September 27, 2006

    Lars - hmm..I'm not sure why they didn't show up for you, they are looking fine right now.  Send me a message with a reply address, and I'll be happy to email instructions to you.

  27. 440hz
    September 28, 2006
    The pictures are not showing. =(
  28. bills
    September 28, 2006

    ugh, sorry guys.  due to a misconfiguration the images were not working for some folks.  this has been fixed

  29. Alpha's Blog
    September 28, 2006

    【原文地址】 IIS 7.0 RC1 【原文发表日期】Thursday, September 07, 2006 12:05 AM 你也许已经听说过了,上个星期晚些时候,我们发行了Windows Vista

  30. bills
    September 29, 2006

    Maarten Balliauw has posted an alternative way to configure PHP on IIS using FastCGI which will avoid any threadsafety issues you may see with PHP extensions.  See his blog post here:  http://www.balliauw.be/maarten/blog/16,php-on-iis7-rc-1-but-unsafe.htm

  31. Radek
    October 2, 2006
    Bill - is any chance to see SSL for FTP server on IIS 7.0??
  32. bills
    October 2, 2006

    Radek - yes, we are working on a new FTP server which will include SSL support and some other goodies. :)  This will likely not be a part of Longhorn Server, but should be available around the same time.  You'll hear more official word before then.

  33. Chris McGrath
    October 5, 2006
    i just installed php 5 under iis7 and im getting permission denied errors whenever i try i store information in sessions any help with this would be appreciated.
  34. bills
    October 5, 2006

    Hey Chris - send me mail with more specifics on the error, and I'll see if I can help or at least point you in the right direction.  thanks

  35. Simon
    October 8, 2006
    I'm getting the same error as Chris it says: Warning: session_start() [function.session-start]: open(C:\Windows\SERVIC~2\NETWOR~1\AppData\Local\Temp\\sess_c74ed31a512f9111809d058373345415, O_RDWR) failed: Permission denied (13) in C:\inetpub\wwwroot\test.php on line 7 Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\inetpub\wwwroot\test.php:7) in C:\inetpub\wwwroot\test.php on line 7 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\inetpub\wwwroot\test.php:7) in C:\inetpub\wwwroot\test.php on line 7 Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506) Warning: get_browser() [function.get-browser]: browscap ini directive not set. in C:\inetpub\wwwroot\test.php on line 12
  36. John Wikman
    October 10, 2006
    Do you know if this method has any inherent issues with running sessions? I'm just learning php and am working on a very simple form project that uses a session to send info from one form to a confirmation page. I noticed that I got really funky errors when I started the files with , so I assume running php in this method already starts the session????
  37. Maarten
    October 10, 2006
    Chris, I expect that to be a permissions issue. Check folder permissions on the folder "sessiondata" and "uploadtemp" in your PHP installation.
  38. Andy Britton
    October 10, 2006
    Is there a way to secure my website to prevent people from downloading items from it? I'm new to IIS and it's security seems much different than Apache. Any help would be greatly appreciated.
  39. bills
    October 10, 2006

    Andy - protecting a web site from unauthorized users is pretty easy.  For instructions on how to do this with IIS5/6, there are several good sites out there, like this one site:  http://www.hostmysite.com/support/dedicated/IIS/passwordprotect/

    The UI for IIS7 looks a bit different, but should (hopefully) be pretty simple to follow.  Simply navigate to the authentication feature, enable Windows authentication and disable anonymous, then configure users and permissions as in the above link.  

  40. John Wikman
    October 11, 2006
    I've made the entire PHP directory fully open (writable by anyone) and am still getting that error. I don't have the sessiondata or uploadtemp folders in my php directory, though...??
  41. bills
    October 11, 2006

    Hi John - session data is stored in a temporary directory under the identity which the application is running as - by default NetworkService.  The error message you get should specify which directory PHP is having trouble writing session data to.  For example, in Simon's case above, the directory was:  C:\Windows\SERVIC~2\NETWOR~1\AppData\Local\Temp\  This is the directory that the web server needs write access to.  Also, if you could email me a test PHP script that reproduces this issue, I can try it here and give you more specifics on how to fix it.  I tried using start-session, and it worked for me without any problems, so I suspect there is something else specific to your app that is triggering the error.  you may also want to check out the documentation for session in PHP, located here:  http://us2.php.net/session  using the session.save_path variable in your php.ini, you should be able to reconfigure the path for session data to something more accessible.

  42. bills
    October 18, 2006

    See my latest blog post for more information on how to solve the session / temporary directory issues:  http://blogs.iis.net/bills/archive/2006/10/18/loadUserProfile-and-IIS7-_2D00_-understanding-temporary-directory-failures.aspx

  43. BillS' IIS Blog : How to install PHP on IIS7 (RC1)
    October 18, 2006

    PingBack from http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx

  44. rick
    October 18, 2006
    You could also configure your app to not write to %temp%. filemon from sysinternals.com allows you to quickly identify file system access issues.
  45. bills
    October 18, 2006

    very true, Rick.  For PHP this is relatively simple.  Use the session.save_path in the php.ini file.  I'm not sure how or if this is possible with Access, for example.  ADO is opening the file in the temporary directory behind the scenes, and I'm not sure if there is a way to change the directory it uses.

  46. Nevada
    October 20, 2006
    This sounds really nice and should make my life troubleshooting much easier. On a related not I'd be interested in seeing what improvements have been made in IIS7 for logging. Both of the screen shots look really nice. The second one looks a little long but then again it has lots of good information. Would it be possible to have each of those sections be collapsible? I'm thinking of the way IE7 has the "More Information" section that you can expand on a 404 error or the "Show more tab shortcuts" section when you hit Ctrl+T to open a new tab. Maybe have the "Most likely causes", "What you can try", and "Links & More Information" sections collapsed by default and the "Error Summary" and "Detailed Error Information" sections expanded by default.
  47. Chuck
    October 20, 2006
    I don't see SMTP (usually a part of IIS) on Vista RC1, build 5728. I've also been told it isn't on RC2. Is SMTP being moved out from underneath IIS 7.0?
  48. Matt Milner
    October 20, 2006
    I like the proposed formatting MUCH better. It is a lot cleaner, provides a nice segmentation of the details and therefore makes it easier for me to find what I am looking for. Very helpful to have the offending module and the links to the error database. Very cool stuff.
  49. bills
    October 20, 2006

    Hi Chuck - the SMTP server has always fit under the 'IIS' umbrella, but wasn't actually owned by the IIS team.  The folks that owned it have decided to no longer ship it in Vista (the Windows client sku) and instead are only shipping it in Longhorn Server.

  50. Hiroshi Okunushi's blog
    October 22, 2006

    IISについては色々な歴史があります。話す機会がある度に情報収集を繰り返していますが、最近チェックできていなかった http://www.iis.net でいくつか製品チームからのブログでピックアップしてみます。ASP.NETをずっと追いかけている方は

  51. Hiroshi Okunushi's blog
    October 22, 2006

    IISについては色々な歴史があります。話す機会がある度に情報収集を繰り返していますが、最近チェックできていなかった http://www.iis.net でいくつか製品チームからのブログでピックアップしてみます。ASP.NETをずっと追いかけている方は

  52. Tom Pester
    October 23, 2006
    Looks very useful. Can we also add information to the error database ourselves? Some moderation would be in order but do you think this would be a good idea in essence?
  53. bills
    October 23, 2006

    Tom - that is a great idea.  I'll be sure to pass it along to the guys who are designing the error database to make sure to think about doing that.  at a minimum we will provide the ability to send feedback on the errors.  thanks!

  54. BrettBlog - 4000 GET Requests per second on Vista
    October 23, 2006

    PingBack from http://brettblog.com/PermaLink,guid,e14a8de5-e619-456a-8560-9474c5403c0a.aspx

  55. ChrisMorrow
    October 24, 2006
    The new look is a huge improvement, and I also like Tom's idea from above. I'm curious if the 'Things to try' could also be extended for the errors so in scenarios on a hosted environment we could plug in our own 'things to try' that related to the hosted package they've purchased. Somewhat along the same concept used in the MOM 2005 tool where you can plug in your own troubleshooting information. Great stuff !!!
  56. bills
    October 24, 2006

    Thanks Chris!  Glad you like them.  While you can't extend the 'things to try', you can customize the 'view more information' link to have it point to your own database.  maybe that gets you close enough?

  57. ChrisMorrow
    October 24, 2006

    Understood. When you say customize the link would that link be statically defined or is there a way to append which exception/error happened and potentially another attribute like which environment (i.e. product code)?

    It's still good to know that it's customizable and we can route the user to our system for more help.

    Thanks Bill.

  58. Hatim
    October 24, 2006
    ASP.Net error pages are way better than the old asp error ones and these ones you are proposing is definitely a step up. What I would suggest is a less graphicy interface. maybe something simpler. (but that's just my taste). Maybe the ability to expand and collapse the blocks. I also like the idea of being able to customize the blocks like with more information and/or add more blocks.
  59. bills
    October 24, 2006

    Chris - unfortunately there won't be a way to append more data to the errors, that information is baked into the detailed errors module at compile time.  but the 'more information' link is customizable, so you can point users at it for any additional info.

    Hatim - the new errors don't use any graphics and are pretty simple HTML/CSS, but I can see how some may not like them.  As always, it is hard to choose one style that everyone likes.  But the good news is the 'custom errors', as always, are fully customizable so your customers will only see the errors as you want them to be seen. :)

  60. Seth
    October 25, 2006
    Ah, yes, finally – no need to license a server OS for development workstations. Too bad that someone @ MS decided that VS 2003 will not run on Vista…
  61. rstrahl
    October 27, 2006
    Bill this sounds great. Sounds like you've taken some of the feedback on request and site restrictions into account and rolled them into the high and skus at least. That's great - now I can hopefully stop running my laptop on the server platform ...
  62. Steve Schofield Weblog
    October 31, 2006

    It has been a while since I geeked on IIS7.I was checking out Mike Volodarsky blogfor the latest and

  63. BillS' IIS Blog
    October 31, 2006

    I'm attending ZendCon today and giving a demo in the keynote presentation by Andi Gutmans, one of

  64. All About Interop
    October 31, 2006

    Bill Staples of Microsoft blogged on the newly announced partnership between Zend and Microsoft, one

  65. alexbarnett.net blog
    October 31, 2006

    Microsoft and Zend have issued a press release on news regarding collaboration between the two companies

  66. Server: Microsoft-IIS/7.0\r\n
    October 31, 2006

    IIS hits another milestone yesterday with new collaboration with Zend - The PHP Company . This is hot

  67. tecosystems
    November 1, 2006

    BillS' IIS Blog : PHP on IIS7 w/FastCGI Bill gave an excellent demo of some of the new PHP support here at the Zend conference (tags: zendconference2006 IIS PHP Microsoft) P@ Log » Blog Archive » Migrating to WordPress...

  68. tecosystems
    November 1, 2006

    Been an eventful day, to say the least, at the first non-tutorial day of Zend's annual gathering of a couple of hundred PHP developers and vendors. Not in terms of announcements, necessarily, though Zend did unveil both a hosted solution...

  69. ScottGu's Blog
    November 1, 2006

    I've blogged several times in the past about how cool IIS 7.0 is. Many of my posts have highlighted some

  70. Mischa Kroon
    November 1, 2006
    Does this mean IIS will become the best / fastest choice for hosting PHP applications soon ?
  71. 菊池 Blog
    November 1, 2006

    IIS7 の FastCGI は激速らしい

  72. bills
    November 1, 2006

    Mischa: I certainly hope so!

  73. Mike Moore
    November 1, 2006
    Hey Bill, this is great news. Have you guys benchmarked Ruby on Rails performance on IIS7 using FastCGI?
  74. bills
    November 1, 2006

    Hey Mike: nope, we haven't had a chance to test Ruby yet (just getting it out the door in time for ZendCon was a big effort).  Let us know if you get a chance to try it out, and how it looks.

  75. Ancora Imparo
    November 1, 2006

    Microsoft is cranking out a lot of stuff. Two things I am very eagerly awaiting are Linq and IIS 7.0.

  76. 菊池 Blog
    November 1, 2006

    re: IIS7 の FastCGI は激速らしい

  77. Fiorano.net
    November 2, 2006

    M icrosoft kondigde een paar dagen geleden een Technical Preview Release van FastCGI voor IIS aan. Deze

  78. JrzyShr Dev Guy
    November 2, 2006

    The Zend/PHP Conference & Expo is going on this week out in San Jose, California. Bill Hilf, from

  79. TrackBack
    November 2, 2006
  80. orson
    November 3, 2006

    This is GREAT news! Really groovy development. Microsoft is putting its might to support and enhance an open source technology like PHP5 for the first time. Finally, wisdom dawns on the behemoth regarding the win-win situation for web- developer centric enhancements like the kernel-mode cacheing for php applications! SUN better look out now......

  81. scottgu
    November 3, 2006

    我过去写过几个博客帖子,都是写 IIS 7.0 是多么地酷的。我的很多帖子着重于 IIS7 给 ASP.NET 和 .NET 开发人员带来的新机遇,譬如集成的管道模型,统一的web.config 配置,集成的管理工具体验等。它真的将给开发人员开辟出巨大的机遇,以及提供给大家一个可以无限定制的web服务器。

  82. pablo
    November 4, 2006

    don't make the headers (Error Summary, Detailed Error Information, etc.) look like buttons.

  83. Technology Articles
    November 6, 2006

    Today, Microsoft and Zend announced a joint technical preview aimed at providing best-ever support for running PHP applications on IIS in a reliable, and hi-performance way. This article explains how to use the Microsoft IIS FastCGI technical preview

  84. TrackBack
    November 7, 2006
  85. BillS' IIS Blog
    November 8, 2006

    My first experiment with building a Windows Sidebar gadget was more for show than anything. Launching

  86. BillS' IIS Blog : Introducing IIS Stats v1.0 for Windows Sidebar
    November 8, 2006

    PingBack from http://blogs.iis.net/bills/archive/2006/11/08/introducing-iis-stats-v1-0-for-windows-sidebar.aspx

  87. Jeff Wilcox's Blog on Microsoft UIFx
    November 8, 2006

    With the release of Windows Vista, the next generation Microsoft Platform for web developers looking

  88. DK
    November 9, 2006

    I spent a looong time trying to figure out why I couldn't get PHP 4.4.x working with IIS 7... and I never could. Switched to PHP 5, used the same configuration steps and it worked fine.

    In researching this topic, I never came across any warning about PHP 4.4.x - so maybe this will save someone the headache. Just use PHP 5.

  89. bills
    November 9, 2006

    DK - here are a few tips to get PHP4 to work using the same method described above.

    1) extract php-4.4.4-win32.zip to c:\php4 directory

    2) copy the php4isapi.dll from the c:\php4\sapi directory into c:\php4

    3) rename c:\php4\php.ini-dist to php.ini and copy it to c:\windows

    4) map *.php to the c:\php4\php4isapi.dll using the steps above (subtitute it for php5isapi.dll above)

    If you still have problems, try the PHP forum on forums.iis.net, and we'll help troubleshoot.

  90. BillS' IIS Blog
    November 9, 2006

    Thanks to some small tweaks we made in RC1, it is now easier than EVER to get PHP working on IIS. Here

  91. BillS' IIS Blog
    November 9, 2006

    Thanks to some small tweaks we made in RC1, it is now easier than EVER to get PHP working on IIS. Here

  92. ScottGu's Blog
    November 9, 2006

    As you might have already heard, earlier today Microsoft released to manufacturing (aka RTM'd) Windows

  93. Mirror blog entries from the industry
    November 9, 2006

    As you might have already heard, earlier today Microsoft released to manufacturing (aka RTM'd) Windows

  94. DotNetKicks.com
    November 9, 2006

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  95. Ganesh Anekar - PSS
    November 9, 2006

    Very Cool...Would it be possible to add stats on who(user) is connected? How to reset these stats?

    Thanks!

    Ganesh

  96. bill
    November 9, 2006

    Hey Ganesh - you can reset the stats by stopping 'w3svc' service and restarting it, or using 'iisreset /restart'.  I'm not sure we expose the name of authenticated users anywhere, I'd have to dig into that one.

  97. scottgu
    November 10, 2006

    星期一,我们发布了ASP.NET AJAX(即Atlas)的Beta2版本。你可以在 http://ajax.asp.net 网站上了解更多的细节,可以在这里下载这个版本。

  98. Roger Meier
    November 10, 2006

    FastCGI support on IIS is just a great Idea! Thank's

    On the preview Release I miss some advanced features(eg. IP, Portnumber) used for distributed environments.

    please have a look at lighttpd's FastCGI Configuration:

    http://trac.lighttpd.net/trac/wiki/Docs%3AModFastCGI

  99. Arnold Smit
    November 15, 2006

    First I used PHP5 as ISAPI.

    On my test server i have experimented with the new FastCGI extention, and i was suprised how much inprovement that was.

    It was way faster than the ISAPI.

    Nowdays i also use PHP5 in combination with Eaccelerator and FastCGI.

    It is very stable and astonishingly fast.

    This is the website were you can download the Windows binaries for Eaccelerator.

    http://www.sitebuddy.com/PHP/Accelerators/eAccelerator_windows_binaries_builds

    The official site is.

    http://eaccelerator.net/

    If you want a speed boost i realy sugest using PHP as FastCGI with the Eaccelerator Extention

  100. Windows Server Division WebLog
    November 17, 2006

    Last Tuesday in front of over 4000 attendees, Jeffrey Snover and Bob Muglia announced the release of

  101. server-side
    November 22, 2006

    Before hopping on the plane and starting my Thanksgiving vacation, here are some highlights about the new IIS7 Native Output Cache, PHP, FastCGI, and other stuff ...

  102. server-side
    November 22, 2006

    Before hopping on the plane and starting my Thanksgiving vacation, here are some highlights about the new IIS7 Native Output Cache, PHP, FastCGI, and other stuff ...

  103. hirsuwano's Blog
    November 24, 2006

    IIS7へのPHPのインストール方法が記述されています。http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspxIIS5、IIS6でのスクリプトマッピングの追加とほぼ同様な手順で行えます。Webサイト全体か特定のアプリケーションのみPHPのスクリプトマッピングを追加する ...

  104. TobinTitus
    December 1, 2006

    I've written two blog posts on how to use and extend the IIS managed SDK within PowerShell.

    Check out:

    Accessing Microsoft.Web.Administration through PowerShell (Part I)

    http://blogs.iis.net/tobintitus/archive/2006/11/30/powershell-and-microsoft-web-administration.aspx

    and

    Extending Microsoft.Web.Administration through PowerShell (Part II)

    http://blogs.iis.net/tobintitus/archive/2006/12/01/more-on-iis-7-administration-with-powershell.aspx

  105. Hiroshi Okunushi's blog
    December 4, 2006

    実は説明の中でこれに興味を持っていただいた方がいらっしゃって一体どうやって動いてるんだろう?というのが議論になりました。そこで少し情報収集。。。 まずはIISの親分Bill Staplesのところへ http://blogs.iis.net/bills/archive/2006/10/31/PHP-on-IIS.aspx

  106. iis
    December 11, 2006

    Lead Program Manager Eric Deily announced a preview of an updated XSL with an all new look and feel for

  107. iis
    December 11, 2006

    On its own, IIS7 already has a great management story. The new Web server ships with a totally rewritten

  108. Alex Highton
    December 12, 2006

    With Vista RTM I get the following error;

    C:\>c:\windows\system32\inetsrv\appcmd set config -section:applicationPools /[nme='DefaultAppPool'].processModel.loadUserProfile:false

    ERROR ( message:Configuration error Filename: \\?\C:\Windows\system32\inetsrv\config\applicationHost.config

    Line Number: 0

    Description: Cannot read configuration file

    . )

  109. bills
    December 13, 2006

    Alex: make sure you run this command line in an 'elevated' cmd window.  Right click on "Command Prompt" in start menu and choose "Run as Administrator"

  110. iis
    December 13, 2006

    Windows Vista Release Candidate (RC) 1 is out the door with a fresh new build of IIS7 . This is an exciting

  111. Daniel
    December 18, 2006

    I setup PHP 5 to map to the file on IIS 7 and I am able to get the php pages loaded on my localhost. But I get a blank page, any ideas?

    Daniel

  112. K. Scott Allen
    December 19, 2006

    I find the Sidebar gadgets in Windows Vista appealing. I never thought this would happen. I've looked...

  113. Mirror blog entries from the industry
    December 19, 2006

    I find the Sidebar gadgets in Windows Vista appealing. I never thought this would happen. I've looked

  114. tlvranas
    December 27, 2006

    I have tried the above several times with the exception of re-setting the location of the temp folder and I still can' get the sessions (i think that is the problem) to work.  I have Vista, PHP 5? MySQL (latest) and coppermine running.  I ran the install so I know the SQL works, and as far as I can tell everything is working.  I can login to copermine, however, when it reloads it doe snot appea to be setting the session values to know I am logged in.

    Ideas?

  115. Shani elharrar
    December 30, 2006

    Thanks. thats nice.

  116. Hoster Poster
    January 5, 2007

    Not particularly new news now, but if you haven't started investigating PHP on Windows yet, here's

  117. Fredy
    January 7, 2007

    Hi Bill - i followed your instructions and php seems to work; however i can't get phpInfo() to display. All i get is a blank page...

    I'm running Vista RC2...

  118. IanH
    January 11, 2007

    The first solution didn't work for me and I had to use the second option of disabling the user profile for the app pool. This allowed my asp pages to read an Access db but does not allow them to write to the db. I get the old 'operation must use an updatable query' error.

    I've checked file and folder permissions and they all allow IUSR correctly.

    Also tried Process Monitor to isolate the problem but can't see anything obvious, although there are various 'name not found' errors when IE looks at register keys.

    What else needs to be set??

  119. Keyvan Nayyeri
    January 16, 2007

    I just saw this item on IIS community and could get my interest. Joy Of Code has done a great job on

  120. Keyvan Nayyeri
    January 16, 2007

    I just saw this item on IIS community and could get my interest. Joy Of Code has done a great job on

  121. cnblogs.com
    January 18, 2007

    IIS7伴随着Vista已经悄悄来临,学习的时候我也摘录了一些有关于此的文章。 不敢独享,还是贴出来大家共享吧! 初识IIS7 A Quick Look at IIS 7 这篇文章中浅显地介绍的IIS7的一些新特性,很容易就能对IIS7的特性有一个初略的了解。

  122. cnblogs.com
    January 19, 2007

    IIS7伴随着Vista已经悄悄来临,学习的时候我也摘录了一些有关于此的文章。 不敢独享,还是贴出来大家共享吧! 初识IIS7 A Quick Look at IIS 7 这篇文章中浅显地介绍的IIS7的一些新特性,很容易就能对IIS7的特性有一个初略的了解。

  123. Ring
    January 19, 2007

    IIS7伴随着Vista已经悄悄来临,学习的时候我也摘录了一些有关于此的文章。不敢独享,还是贴出来大家共享吧!初识IIS7AQuickLookatIIS7这篇文章中浅显地介绍的IIS7的...

  124. Ring
    January 19, 2007

    IIS7伴随着Vista已经悄悄来临,学习的时候我也摘录了一些有关于此的文章。不敢独享,还是贴出来大家共享吧!初识IIS7AQuickLookatIIS7这篇文章中浅显地介绍的IIS7的...

  125. Keith Smith's Blog
    January 29, 2007

    The DownloadCENTER at IIS.net is an inclusive community destination for discovering new components, modules

  126. Windows Server Division WebLog
    January 29, 2007

    I've just read over on Bill Staple's IIS blog that the new DownloadCENTER is now live on IIS.net . This

  127. mvolo
    January 29, 2007

    Haha! I beat you by a week with <a href="http://mvolo.com/blogs/serverside/archive/2007/01/21/Get-nice-looking-directory-listings-for-your-IIS-website-with-DirectoryListingModule.aspx">my directory listing module post</a>, where I mentioned this one as the motivation for me to write my own.

    The main difference is that all of the web content it generates is outside of the module in an aspx template - and with IconHandler, you get nice file icons for all your content.  I can feel the competition heating up :)

  128. mvolo
    January 29, 2007

    Ops, make that link http://mvolo.com/blogs/serverside/archive/2007/01/21/Get-nice-looking-directory-listings-for-your-IIS-website-with-DirectoryListingModule.aspx.

  129. bill Staples
    January 30, 2007

    yeah, yeah, Mike.  That's great and all if you want to muck around with aspx templates.  but you already knew I'm a simple man...

  130. zzhumphreyt
    January 30, 2007

    Thanks for mentioning this!  I'd say logging on a developer machine is critical when you're trying to debug an application.  Oh well, nice to hear SP1 will include this.

  131. Brian Goldfarb's Blog
    February 1, 2007

    We are always hard at work improving the experience around our online properties. IIS.net has been getting

  132. All About Interop
    February 6, 2007

    I upgraded my work machine, back in October. My old standby IBM Thinkpad T30, after years of loyal service,

  133. BillS' IIS Blog
    March 28, 2007

    Carlos and I spoke at the Microsoft Technology Summit yesterday, a conference dedicated to influential

  134. BillS' IIS Blog
    March 28, 2007

    Carlos and I spoke at the Microsoft Technology Summit yesterday, a conference dedicated to influential

  135. danieli
    April 14, 2007

    Here’s where we used to be when it came to interoperability. 1980 was the best of times and it was the

  136. Fabien's Blog
    April 21, 2007

    En surfant sur le blogs de la team IIS j'ai vu que Bill Staples avait posté un gadget assez sympas (il

  137. Fabien's Blog
    April 21, 2007

    En surfant sur le blogs de la team IIS j'ai vu que Bill Staples avait posté un gadget assez sympas (il

  138. BillS' IIS Blog
    April 25, 2007

    Today we're very excited to announce the Beta 3 release of IIS7 as part of Longhorn Server. IIS7 is the

  139. BillS' IIS Blog
    April 25, 2007

    Today we're very excited to announce the Beta 3 release of IIS7 as part of Longhorn Server. IIS7 is the

  140. iis
    April 25, 2007

    Today we're very excited to announce the Beta 3 release of IIS7 as part of Longhorn Server. IIS7 is the

  141. Jimiz - All things IIS
    April 25, 2007

    A great post over at iis.net discusses what is new and great about IIS 7.0 beta 3 (out today) http://blogs.iis.net/bills/archive/2007/04/25/what-s-new-in-iis7-beta-3.aspx

  142. John
    April 26, 2007

    Great news! I had an issue with WAS on IIS7/Vista that I was wondering if its been addressed in Longhorn server. When i mapped another protocol to an IIS7 site for activating a WCF service, everything was fine until i attempted to un-map http, at which point the service no longer worked and working with the site in IISAdmin would fail. Is it going to be possible to unmap http from a site? Thanks!

  143. bills
    April 26, 2007

    John - send me an email and I'll help you figure out what may be wrong.  this is certainly not expected behavior.

  144. A developer's strayings
    April 26, 2007

    If a picture is better than 1000 words, what about a 3 minutes video? Lot of new stuff is coming for

  145. Blog du Tristank
    April 26, 2007

    Tons of cool new things in Longhorn Beta 3 on the IIS front , including: ... the first beta of our new

  146. bills
    April 26, 2007

    Ruby Rod - check out this post for how to get Ruby on top of IIS7 FastCGI:  http://mvolo.com/blogs/serverside/archive/2007/02/18/10-steps-to-get-Ruby-on-Rails-running-on-Windows-with-IIS-FastCGI.aspx

    It's here today.  :)

  147. Hiroshi Okunushi's Blog ☆ミ
    April 26, 2007

    Virtualization、管理(田辺さん)、PowerShell、ターミナルサービスが目立って人が入っていたような気がしました。やはり関心高いですね。(^。^)y-.。o○ 私のIIS7.0もかなりの数のお客様がご入場くださいました。ありがとうございます!実はIISとしては今日米国で大きな動きがいくつかありましてその内容も盛り込もうとしたり、会場ではIIS7が初めてのお客様も多かった関係でやはり時間が足りないセッションになってしまったという反省をしております。もうそろそろIISだけで複数セッション必要な時期が来たと思っています

  148. Hiroshi Okunushi's Blog ☆ミ
    April 26, 2007

    Virtualization、管理(田辺さん)、PowerShell、ターミナルサービスが目立って人が入っていたような気がしました。やはり関心高いですね。(^。^)y-.。o○ 私のIIS7.0もかなりの数のお客様がご入場くださいました。ありがとうございます!実はIISとしては今日米国で大きな動きがいくつかありましてその内容も盛り込もうとしたり、会場ではIIS7が初めてのお客様も多かった関係でやはり時間が足りないセッションになってしまったという反省をしております。もうそろそろIISだけで複数セッション必要な時期が来たと思っています

  149. Glenn Berry
    April 26, 2007

    Great news. I am looking forward to trying out IIS 7.

  150. Ruby Rod
    April 26, 2007

    "FastCGI with 'other' dynamic languages..."

    Just go ahead and say it: Ruby on Rails. Now when is there going to be an IIS7 specific FastCGI implementation of RoR?

  151. BillS' IIS Blog
    April 26, 2007

    One of my favorite new features which of IIS7 that we announced yesterday with the Beta 3 release is

  152. ServerSide
    April 26, 2007

    You may have noticed a lapse in activity on my blog - for the past month or two, I&#39;ve been completely

  153. David
    April 26, 2007

    Okay, a new FTP server - but what about the WebDAV support that was pulled from the Vista version of IIS7? Isn't that coming back in Beta 3?

    I really hope it is...

  154. » New FTP Server Beta with FTP/SSL, Membership Authentication, and …
    April 26, 2007

    PingBack from http://testsubdomain.netmoviehost.com/new-ftp-server-beta-with-ftpssl-membership-authentication-and/

  155. Windows Server Division WebLog
    April 26, 2007

    Today we reach another major milestone on the road to Windows Server "Longhorn" with the availability

  156. bills
    April 26, 2007

    David: WebDAV is another project we have going...expect more news on it soon.

  157. Jimiz - All things IIS
    April 27, 2007

    The new version of FTP (version 7) for IIS will include support for secure ftp (please read earlier article

  158. Colin Bowern
    April 27, 2007

    Is there any information that speaks to what is new in WMS on Longhorn?

  159. Rakki MK - IIS, ASP, ASP.NET
    April 27, 2007

    The Windows Longhorn server team has released LH Server Beta 3 version. And Bills has more information

  160. Rakki MK - IIS, ASP, ASP.NET
    April 27, 2007

    The Windows Longhorn server team has released LH Server Beta 3 version. And Bills has more information

  161. bills
    April 27, 2007

    Hi Colin - duh, my draft somehow left that out.  I've edited my post, and added the new beta 3 capabilities above.

  162. Danilo Bordini - IT Pro Expert - Microsoft Brasil
    April 27, 2007

    Com a liberação do LHS Beta 3 essa semana, o IIS 7.0 também apresenta muitas novidades para os IT Pros.

  163. Colin Bowern
    April 27, 2007

    Any traction in expanding the media support?  Adobe charges tens of thousands of dollars for Flash streaming services.  It would be great to see QuickTime, Real, Flash in addition to Windows Media on the same server.  Having to run several streaming servers it expensive.

  164. Sergio Tarrillo's Blog -> enhancements
    April 28, 2007

    de verdad, fue sin querer queriendo :$. Vía un post de Daniel Matey, me enteré de la liberación de Windows...

  165. SergioTarrillo's RichWeblog
    April 28, 2007

    de verdad, fue sin querer queriendo :$. Vía un post de Daniel Matey , me enteré de la liberación de Windows

  166. bkchung's WebLog
    April 28, 2007

    BillS' IIS Blog Beta 3 Released Learn what's new in IIS7! Vista의 IIS7은 개발을 가능하게 해주는 목표로 출시된 반면, Longhorn

  167. bkchung's WebLog
    April 28, 2007

    BillS' IIS Blog Beta 3 Released Learn what's new in IIS7! Vista의 IIS7은 개발을 가능하게 해주는 목표로 출시된 반면, Longhorn

  168. bkchung's WebLog
    April 28, 2007

    BillS' IIS Blog Beta 3 Released Learn what's new in IIS7! Vista의 IIS7은 개발을 가능하게 해주는 목표로 출시된 반면, Longhorn

  169. Darren
    April 28, 2007

    Hi BIll,

    You showed how to use "netsh http show cache" in a previous blog.  Do you know if you will be including an API or cmd based call to invalidate an item from cache?  Such as netsh http invalidate <url>" .  If not, this would be tremendously useful.

  170. » Free IIS7 Web Hosting
    April 28, 2007

    PingBack from http://testsubdomain.netmoviehost.com/free-iis7-web-hosting/

  171. ScottGu's Blog
    April 28, 2007

    This week we shipped IIS 7.0 Beta 3 as part of the Windows "Longhorn" Server release. IIS 7.0 is the

  172. BillS' IIS Blog
    April 28, 2007

    I've been getting ready for MIX and this is one demo I'm excited to give. Tomorrow I fly out to Las Vegas,

  173. BusinessRx Reading List
    April 28, 2007

    This week we shipped IIS 7.0 Beta 3 as part of the Windows "Longhorn" Server release. IIS 7.0 is the

  174. ASP.NET
    April 28, 2007

    This week we shipped IIS 7.0 Beta 3 as part of the Windows "Longhorn" Server release. IIS 7.0 is the

  175. bills
    April 28, 2007

    Darren: you can flush a cache entry for a URL using the new native module API.  They are APIs in httpserv.h - namely IHttpServer::NotifyConfigurationChange to flush all cache entries related to a particular url or IHttpServer::FlushKernelCache to flush kernel cache entry for a particular url.   See http://www.iis.net/default.aspx?tabid=2&subtabid=25&i=938&p=1 to get started.

  176. APAC Hoster Evangelist
    April 29, 2007

    IIS 7 Go Live After months of preparing IIS7 for the release of Windows Server Codename "Longhorn" Beta

  177. Noticias
    April 29, 2007

    Junto con el release de la tercera beta de Windows Server &quot;Longhorn&quot; la semana pasada, Microsoft

  178. DotNetKicks.com
    April 30, 2007

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  179. DotNetKicks.com
    April 30, 2007

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  180. DNN Deployment
    April 30, 2007

    http://blogs.iis.net/bills/archive/2006/10/31/PHP-on-IIS.aspx

  181. BillS' IIS Blog
    May 1, 2007

    I'm pleased to announce that we have released a beta version of the FPSE extensions for IIS7. We partnered

  182. spiderwebwoman
    May 1, 2007

    Great news at BillS&#39; IIS Blog: FrontPage Server Extensions (FPSE) for IIS7 (beta) released! &quot;

  183. IIS Team On Tour
    May 1, 2007

    It’s Day 2 of MIX07 and I finally have some time to stop and reflect on the whirlwind of announcements,

  184. IIS Team On Tour
    May 1, 2007

    It’s Day 2 of MIX07 and I finally have some time to stop and reflect on the whirlwind of announcements,

  185. 武眉博
    May 1, 2007

    FreeIIS7BetaHosting MaximumASP

    ...

  186. BillS' IIS Blog
    May 1, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  187. BillS' IIS Blog
    May 1, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  188. BillS' IIS Blog
    May 1, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  189. Joycode@Ab110.com
    May 2, 2007

    【原文地址】 IIS 7.0 Beta3 Ships with a Go-Live License 【原文发表日期】 Saturday, April 28, 2007 6:33 PM 这个星期,我们发布了作为Windows

  190. Fiorano.net
    May 2, 2007

    W indows Server &quot;Longhorn&quot; zal voorzien worden van een nieuwe versie van de FTP server. In

  191. BillS' IIS Blog
    May 2, 2007

    IIS7 has a new output cache feature that can cache dynamic content (output from your ASP.NET, Classic

  192. BillS' IIS Blog
    May 2, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  193. BillS' IIS Blog
    May 2, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  194. BillS' IIS Blog
    May 2, 2007

    I got a lot of requests for the presentation and demo notes from my session at MIX, so here goes. If

  195. » MIX '07: IIS7 for Developers Demos and Powerpoint
    May 2, 2007

    PingBack from http://testsubdomain.netmoviehost.com/mix-07-iis7-for-developers-demos-and-powerpoint/

  196. » IIS7 Output Caching for Dynamic Content - Speed Up Your ASP and …
    May 2, 2007

    PingBack from http://testsubdomain.netmoviehost.com/iis7-output-caching-for-dynamic-content-speed-up-your-asp-and/

  197. Stephen Pope
    May 3, 2007

    Really useful article! we've been doing a lot of investigation into caching performance internally so this info comes at a really good point ! Time to go install longhorn and test it with our sites ! :P

    (Also I was trying to paste this to friends to read but the formatting seems to have freaked out slighly and some words are not visible on the right (IE7) - i read this originally via RSS)

  198. Alles over Hosting en Software + Services
    May 3, 2007

    Hi All, This is once again a posting in English. Yesterday and today I must have spend over 3...

  199. Benixin
    May 3, 2007

    Built-in FastCGI support for PHP and other dynamic languages....

    IIS运行PHP网站以后IIS不停的报错,不知道什么原因。 我试过了PHP的所有版本,都很不稳定。

  200. Adlai Maschiach
    May 7, 2007

    Browsing the IIS.NET blogs I just came across a post : BillS' IIS Blog - MIX '07: IIS7 for Developers

  201. BillS' IIS Blog
    May 7, 2007

    I ran across Apache at 56% - what is wrong? by /home/liquidat this weekend, and the resulting Digg thread

  202. BillS' IIS Blog
    May 7, 2007

    I ran across Apache at 56% - what is wrong? by /home/liquidat this weekend, and the resulting Digg thread

  203. liquidat
    May 7, 2007

    Interesting read, even for people like me who do not have much knowledge and in-depth-views about the topic.

    I just discovered your blog through a back link and want to use the opportunity to ask a set of questions:

    What do you answer customers who ask you after the vendor lock-in? In case of IIS you have to use Windows as the underlying system, and you cannot switch it. In case of Apache, you can use whatever you want. If there are such customers, what do you tell them?

    (Starting from that it is unlikely that you release a Linux version of IIS anytime soon).

    The other question is in a similar direction:

    Microsoft's history is not the most popular one regarding MS's attempts to spread into a new field of software technology: when it entered a new field, it usually killed all other competitors through at least debatable methods. Also sometimes by providing superior technology, but often enough by the usual methods only a monopolist can use.

    What do you answer people who are afraid about that topic? What is MS's stand on Firefox in this regard? How can we be *sure* that the IIS will not implement techniques which can only be used by the IE or Windows programs in general?

    Sure, I know the MS-Firefox talsk of the last months, but these might as well have been just flashs and nothing else.

    If you wonder where these questions come from or why I am so critical with MS: I pointed that out at my blog. From my point of view the major people at MS are still Bill Gates and Steve Ballmer, not the people who invited the Firefox developers or the people who tried to implement common standards in IE7.

    I would appreciate if you could take some time to at least write down what you think about such or similar concerns.

  204. bills
    May 7, 2007

    Hi liquidat - thanks for stopping by.  I enjoyed your original blog post and the resulting discussion so much it motivated me to post this entry.  I welcome input from all sides of the debate.

    Just wanted to get one thing out of the way before rumors spread: you're right - there is no version of IIS for Linux planned anytime soon.  :)  I smile only because we have a huge investment in the underlying OS and our goal is to make IIS the best possible Web server out there for Windows customers.  

    Of course, that does mean that we require Windows, so if you want to use IIS, you'll have to buy a copy of Windows.  It turns out that for many people, this isn't a problem.  They've already decided for one reason or another to choose  Windows, and so choosing IIS is a pretty natural option.  For them, we want IIS to be not just a default choice, but something they really enjoy and get a lot out of.

    For others who are trying to decide on a platform to build on, you're right that they can choose IIS on Windows, or Apache and any other supported OS.  That may sound like an easy choice to you, but it turns out that it is pretty complicated for most customers.  "Vendor lock-in" as you phrase it is one thing to consider, but it is a question of priority for most people.  In considering it, one has to ask: how often do I really plan to change OS platforms?  Is it really important to my business that I am able to move from one server OS to another on a frequent basis?  

    For some people the answer may be "yes".  For most customers that I talk to, the more pragmatic questions are ones like:  where am I going to invest my time and money?  what is my organization already familiar with and capable of using?  What are the features and capabilities of the rest of the software stack, from developer tools and frameworks to administration and management tools... from databases and identity to performance and scalability... from security track record and support options to total cost of ownership and much, much more.  Answers to these questions tend to be more important than who / where you're getting your software from.  

    I say all of this without trying to downplay the ultimate transparency and cross-platform freedom that open source software like Apache provides, and there are certainly more than a few who prioritize these requirements very high.  For many customers who choose Windows, the power of having an integrated stack for developing, deploying, managing Web applications, and the convenience of having one vendor to secure, support and assist them is a top priority.  And thank heavens for them, they pay my bills. ;)

  205. liquidat
    May 8, 2007

    Hi Bills, thanks for the detailed answer :)

  206. Kevin
    May 8, 2007

    Hi Bill,

    I work for a hoster I read with interest the App Pool per site as being the default config for new websites.

    How does this compare with IIS6 in terms of performance, resource utilisation and management practicalities?

    Doing this on IIS 6 is a management and tuning nightmare particularly when we host roughly 800-1000 sites per server.

    Cheers

    Kev

  207. bills
    May 8, 2007

    Kev -

    I have great news for you.  We've focused a lot on the shared hosting scenario, and we have a dedicated test bench to simulate it here and we've been pushing the scalability.  Of course, the numbers you get will depend on a lot of factors, but we are pushing well beyond the limits you describe. 

    If you want to read more about how we recommend hosters do shared hosting on IIS7, we've just published a whitepaper here: http://www.iis.net/articles/view.aspx/Deploy-an-IIS7-Server/Deployment-for-Web-Hosters/Shared-Hosting-on-IIS7?tabid=1.  I have a dedicated team of technical experts ready and willing to help you get started like other hosters have with the IIS7 GoLive (http://iis.net/goLive).  If you're interested, send me an email and I'll get you in touch with them. (click the email link at the top of the page).

    thanks-

    bill

  208. Kenty2006
    May 8, 2007

    Yepp... fact is close to 80% of the world's servers run Apache... and one of the many good reasons they do is because we can use mod_rewrite and have "normal" search-friendly URLS while taking advantage of the server-side functionality of PHP.

  209. bills
    May 8, 2007

    Hi Kenty-

    Not to pick knits, but your "fact" is off by a few bits. :)

    The netcraft survey cited tracks the marketshare of Web servers by counting Web sites, and clearly shows Apache at 56%, not 80%.  http://news.netcraft.com/archives/2007/05/01/may_2007_web_server_survey.html  And if you consider that many Web hosters run multiple "sites" on a single server, and that most hosters probably run Linux, you quickly realize that the number of actual Apache "servers" (not sites!) on the internet is even less than 56%.  

    In any case, I do agree that friendly URLs through the use of mod_rewrite is a very good thing, and you can expect to see similar functionality built on top of IIS7 in the near future.  In addition, as I mentioned, IIS now has fast and reliable support for PHP (in fact, you may be quite surprised if you do a side-by-side performance test), so customers can enjoy PHP on Windows and IIS every bit as much as they do on Linux/Apache.

  210. Neil Hutson - Longhorn Server for developers
    May 8, 2007

    The debate rolls on. I guess this must be the 11th year since Microsoft shipped its first IIS web platform.

  211. 69° media solutions
    May 9, 2007

    Mit Windows Vista hat Microsoft im November letzten Jahres bereits die nächste Generation seines Webservers "Internet Information Services", kurz IIS, released. Ende dieses Jahres (oder irgendwann kurz danach ;-)) wird dann das "echte" Release mit de

  212. Simon
    May 10, 2007

    And CrytsalTech too. http://www.crystaltech.com

  213. Dan Kahler
    May 12, 2007

    This is a fantastic announcement.  One thing I can't tell from your announcement - do you currently plan to include the enhanced FTP server as an "in the box" component in the Windows "Longhorn" Server RTM release, or will it still be a separate download at RTM?

  214. bills
    May 13, 2007

    Hi Dan - the FTP server will be available for free on the web for download - fully supported from Microsoft - at Longhorn Server RTM.  

  215. Will Smith
    May 19, 2007
    Querystring values as well as headers? Interesting. That could be a great option for many dynamic pages, regardless of language. Others, however, obviously could vary their response by additional factors such as cookie values. Along the lines of caching, what would be interesting to see would be taking the concept of a dynamic 'page' and turning it into a dynamic ‘process’ that could be set to run and stay active until a sleep time is reached, but this process could have resources already loaded and ready, therefore potentially increasing response time. In other words a process that stays awake and listens for repeated requests and is ready to serve them, rather than several different threads or processes opening up, loading resources, processing a request and then quitting, only to restart again. I dare say it might be possible that in some rare cases the CPU cycles required to load the darn page are more than to process the actual request! Come to think of it, I might need to brush up on my ASP.NET, as it may already do that or something similar…
  216. Rob
    May 20, 2007
    Bill - thanks for posting this. It made a very interesting and informative read! As someone who's primarily a windows developer/user who only uses Linux based web hosting (my personal site for example) because it's generally cheaper when comparing two feature-sets, all the work that's been done in IIS7 has given me hope. I strongly believe that (licensing costs aside) a big part of the reason for the price differential between Linux and Windows hosting has been the fact that IIS has traditionally been harder to manage in a hosting environment than Linux. Distributed configuration and a much more modular architecture are definately a big step towards removing this difference, so thankyou! One final thing - I may've missed it in my searches, but it seems remarkably hard to configure IIS7 to host classic ASP with the same behaviours that you get by default in downlevel versions, any chance you could blog about this? With flexibility comes additional complexity I guess!
  217. bills
    May 21, 2007

    Hi Rob - just posted on the subject here: blogs.iis.net/.../tips-for-classic-asp-developers-on-iis7.aspx

  218. Rob
    May 22, 2007
    Bill, brilliant - thank you for this!
  219. TrackBack
    May 22, 2007
  220. TrackBack
    May 22, 2007
  221. TrackBack
    May 22, 2007
  222. Frank Lopes
    May 22, 2007

    When I tried

    %windir%\system32\inetsrv\appcmd set config -section:applicationPools /[name='DefaultAppPool'].processModel.loadUserProfile:false

    I got an error:

    ERROR ( hresult:80070005, message:Command execution failed. Access is denied. )

    What am I doing wrong?

  223. bills
    May 22, 2007

    Hi Frank.  make sure you run all of the commands above in an 'elevated' command prompt.  To do this, click your "start" button, type in 'cmd', then right click on the command prompt icon and choose 'run as administrator'.  Only administrators can change IIS configuration, so you must elevate to administrator in order to run the commands.  

  224. Johanb
    May 23, 2007
    Thanks for your info. I've managed to get everything up and running with Vista/IIS7/Classic ASP/ASP.NET1.1 (after MUCH struggling, coming from XP). I've also managed to install SQL Server 2000 although it's not a supported configuration from Microsoft. I have an old web application with a mix of ASP/ASP.NET and it's working BUT for one thing. I get this message on some of my pages: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified /includes/opendb.asp, line 12 I use a DSN-less connection string. The SQL Server is running SP4 and is running in Mixed-mode. My main issue here, I think, is that IIS 7 has a new line-up of user accounts, (IUSR?), ASPNET and the groups IIS_IUSRS and IIS_WPG. This confuses me (and my SQL server) a bit. Could you elaborate a little bit on how to configure the IIS accounts regarding SQLserver or maybe give me some pointers to other web resources which might cover it?
  225. bills
    May 24, 2007

    Hi Johanb - could you email me some ASP code that reproduces the issue, and we'll take a look.  It is hard to say what may cause this issue, without seeing the underlying code, but it doesn't look like a permissions issue off-hand.  Seeing a repro of the issue would help us narrow it down.  

  226. TrackBack
    May 24, 2007
  227. EWoersch
    May 24, 2007

    That music was pretty annoying...  I still think Windows Server Server Edition

  228. jbwillers
    May 28, 2007
    Hi there Bill, Thanks for the advice above, it did come in very handy during each stuble block of getting IIS 7 to run with my ASP sites. Ok I have migrated my XP & IIS5 ASP sites over to my new Vista machine and ran into a wall. I've got IIS running, installed ASP, made other changes as mentioned above BUT now got stuck with this error and can't seem to find any solutions out there: Microsoft JET Database Engine error '80004005' 'C:\inetpub\wwwroot\mmcdb\mmc.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides. /mmc/Default.asp, line 15 As you can see IIS misses a '\' (supposed to be 'C:\inetpub\wwwroot\mmc\db\mmc.mdb') when generating the ASP to link to my Database, so no wonder it can't find it! I'm sure it's something small or stupid I'm doing wrong but as I said this worked fine on old machine.
  229. bills
    May 28, 2007

    Hi jbwillers - glad the post helped.  That is a strange issue.  Could you post or email me the code which generates the path, so I can try to reproduce the issue?  

  230. jbwillers
    May 29, 2007
    Thank for the quick reply: For clarification the Database is 'bosbokDb.mdb' which resides in a folder 'bosbokDb'. Most importantly this code works 100% in XP, so I don't think it's the code. If you want to I can give you the FTP details to the site, you can download the whole lot. - But I'm sure you DO have a life... ;-) The first 20 lines or so of Default.asp reads as follows: =========== <> "") Then rsSiteDetails__MMColParam = Request("MM_EmptyValue") End If %> =========== As I said I think it's a mis-interpretation by VISTA/IIS/Whatever of my Connection string, which reads: =========== =========== Thanks for the help. JB
  231. bills
    May 29, 2007

    Hi jb - it looks like you may have found a bug, we're looking into it.  In the mean time, you can fix this bug in your code pretty easily.  The last line is key.  Change it from:

    ="& request.servervariables("APPL_PHYSICAL_PATH") & "bosbokDb/bosbokDb.mdb"

    to:

    ="& request.servervariables("APPL_PHYSICAL_PATH") & "\" & "bosbokDb/bosbokDb.mdb"

    that should do it.  I'll let you know what we find.

  232. jbwillers
    May 29, 2007
    Heaven's are opening, whites doves are flying around, skimpy clad girls are frolicking in the fields...much appreciated!
  233. Derek
    May 30, 2007

    I'm working on a classic .asp project and can't seem to connect to the  database using

    <%

    Connect_String="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("CFMH_PARTNERING.mdb")&";Persist Security Info=False"

    %>

    I'm getting this error: Microsoft JET Database Engine error '80004005'

    Unspecified error

    I'm trying to disable user profiles using your script:

    %windir%\system32\inetsrv\appcmd set config -section:applicationPools /[name='DefaultAppPool'].processModel.loadUserProfile:false

    However I'm getting an error message that states:

    ERROR <message:Unkown config section "applicationPools/[name='DefaultAppPool'].processModel.loadUserProfile:false".

    I don't have any experience working with ISS, so any help would be appreciated

  234. bills
    May 30, 2007

    Hi Derek -

    Looks like you may have accidently dropped the space between the section and property parameters.  Try the command again and make sure there is a space between applicationPools<space>/[name... so the entire command is like this:

    %windir%\system32\inetsrv\appcmd set config /section:applicationPools /[name='DefaultAppPool'].processModel.loadUserProfile:false

  235. Bahadir ARSLAN
    May 30, 2007
    Hi, Firstly thanks for your helps. But i tried everything that you suggest, but still same error. "Unspesified Error" Am i the one, who couldn't solve this problem?
  236. bills
    May 30, 2007

    Bahadir: are you using ASP and Access?  Are you seeing Microsoft JET Database Engine error '80004005' or something else?

  237. SUR
    May 31, 2007
    If your classic asp website wont connect to your sql express 2005 database then i would suggest changing the authentication mode to mixed mode as described here: http://cfpayne.wordpress.com/2006/07/21/changing-authentication-in-sql-server-2005-express/
  238. Zahra
    May 31, 2007
    I am moving my website from IIS 6 to IIS 7.0. It is written using ASP Classic and uses a DLL written in Foxpro 8.0. I tried suggestion from a lot of blogs but it doesn't seem to work. After enable scripterrortobrowser i get this error message: Server object error 'ASP 0177 : 80020009' Server.CreateObject Failed /Default.asp, line 2 80020009
  239. bills
    May 31, 2007

    Hi Zahra - what does line 2 look like?  What is the object you are trying to create with Server.CreateObject?

  240. Zahra
    June 1, 2007
    Bill, default.asp line 2: SET ox = server.CREATEOBJECT("webstd7.test") my entire code is in a DLL written in Visual Fox pro 6.0. Server.createobjects creates an instance of DLL. I am only using two asp pages default.asp and action.asp.
  241. bills
    June 1, 2007

    Hi Zahra - error 80020009 typically means a recordset error of some kind?  I assume foxpro has been installed and the object has been properly registered on the box?  if you could email me a bit of code and the COM object you are using which reproduces the issue, I can have someone here take a look at it.  Or you could try calling our support team: blogs.iis.net/.../where-do-i-go-for-iis-support.aspx they really rock!

  242. Ian Ringrose
    June 4, 2007

    IIS booting from flash and then getting all the files (including config) from a file server would be GREAT for big web farms!  (A lot less hard disks to fail.)  

    However without Asp.net there is not much point as very few web sites are 100% static content.

  243. bills
    June 4, 2007

    Hi Ian -

    Yep, having IIS7 on server core is a great step towards having stateless front-end servers!  We are working hard to get ASP.NET in server core, with some future release.  Fortunately, classic ASP and PHP applications should run just fine on Server Core, for the web application developers who choose those languages.

  244. Mirco
    June 4, 2007
    So, is support for (ASP).NET planned for RTM? Or after that?
  245. bills
    June 4, 2007

    Hi Micro - we're still evaluating what it will take, so I can't say for sure.  I'm sure you can imagine: we want it there as soon as possible.

  246. Fernik
    June 4, 2007
    Mmm I understand that enabling support for ASP.net may add other dependencies to Server Core, since some .net classes are merely managed wrappers of unmanaged DLLs. And this unmanaged DLLs may not be part of Server Core currently. I hope you can workarounf this to enable full ASP.net supoert including asp ajax axtensions, WCF and WWF services. And if you have time add PowerShell.
  247. TrackBack
    June 4, 2007
  248. nijinsky
    June 4, 2007
    Hi Does not ISAPI module work?
  249. bills
    June 4, 2007

    nijinsky: definitely!  ISAPI still works just fine, as well as the new native extensibility interface: CHTTPModule, which is a super-set of isapi filter and extension, and offers a completely async model.  See mvolo.com/.../IIS7-modules-vs.-IIS6-ISAPI-_2300_10_3A00_-C_2B002B00_-Class_2D00_based-encapsulation-model.aspx for more info.

  250. figuerres
    June 5, 2007
    very cool, yeah get .net on it.... perhaps a ".Net Core" -- as in just the .net bits that play well in the core environment. much like the silverlight is a striped down .net or .net cf for ppc / ce OS -- take out namespaces that will not run so you trim down the size...
  251. Eli Allen
    June 5, 2007
    somewhat off topic but Notepad.exe doesn't have a dependancy on the shell? Sounds like .net for server core would require a new .net framework in the sense that the compile would have to target a cutdown framework that is lacking all the wrappers as Fernik mentions. Without that it would be too easy to accidentaly use part of the framework that wouldn't work but if they do that hopefully that framework would be usable on all OSes to be able to get IIS to use that while other .net apps can use the normal framework making testing easier.
  252. Dave
    June 5, 2007

    I am really interested to see how this feature works out in the long run, so far it seems great especially for specialized servers.  However I am curious about one thing, obviously there would be no local gui administration tools, but will remote gui based tools still be usable or do those rely on the shell itself also?  While I am a big fan of command line tools, occasionally you just need to dive into the gui to get some things done or to troubleshoot a problem.

  253. Frederic Dumesle
    June 5, 2007
    II7 without .NET support is very bad. Please provide a clear schedule on .NET availability on Core. It must include full powershell support. You cannot evangelize core versus Linux without powershell. This should a requirement from the beginning. Good Luck
  254. bills
    June 5, 2007

    Hi Dave - unfortunately the remote administration service also requires the .NET framework, so it won't be supported until we get .NET on there.  

  255. bills
    June 5, 2007

    Eli: yep, notepad.exe works just fine on server core.  

  256. Dizzledorf
    June 6, 2007
    Just FYI, it's its. http://www.writingcenter.emory.edu/its.html
  257. bills
    June 6, 2007

    thanks Dizzledorf!

  258. Pam Newberry
    June 7, 2007
    I'm just trying to get a web site other than the default web site to work. I read somewhere to use port 81 so I set it up with port 81 and am trying to access it using the following http://localhost:81/testsite1.com/ I get http error 404.0 Not found error. Under the inetput/wwwroot/ directory I have the testsite1.com subdirectory which contains an index.asp file. Any suggestions or a URL for help would be most appreciated. Thanks
  259. bills
    June 7, 2007

    Hi Pam.  If you have set up the site on port 81, you’ll need to connect to this address:  http://localhost:81/testsite1.com/">localhost/testsite1.com

    Probably a better way to do this is to move testsite1.com directory to the \inetpub directory.  I would also rename it to just “testsite1” – windows doesn’t like directories with .com at the end.  Then I would create a new site on port 81 and point it to \inetpub\testsite1.  Then you can access it by going to http://localhost:81/  

    Last, if you want to access it with a different name, edit your \windows\system32\drivers\etc\hosts file and register a new host header, then set the site up with a host header instead of a different port.  You can have unlimited host header sites on vista.

    hope this helps -

  260. TrackBack
    June 7, 2007
  261. pjnewberry
    June 9, 2007

    Hi Bills..thanks for your help. So let me back up now and try to do this the correct and easiest way. Let's say I want to have 3 web sites that I want to work with. In IIS5.1 (XP pro) I just changed one by one the home directory under IIS to point to the directory I wanted under inetpub/wwwroot. But now with iis7.0 are you saying I would just need to add entries to my hosts file to look at the 3 sites. Then what would be the URL to get them. I don't want to have to move my files to the inetput/wwwroot directory to get them to work. I want to just have subdirectories under that..one for each site. Are you saying all I need is an entry in the hosts table, one for each site. What would the IP be? And what address would I use to access them? Feel free to direct me to someplace that has this info. Again..thanks for the help. Pam

  262. pjnewberry
    June 9, 2007
    Bills..No need to respond to my last question. I was finally able to wrap all the pieces together and get things to work. To change from one web site to another will require a change each time but until I figure a way to do it without making that change this works. 1. In IIS manager select default web site under Web sites. Right click and select Advanced Settings. Under physical path, change the directory to the desired location of the site files. If needed, a change may be made to the default document on the main page of the IIS manager. 2. If you receive the ""An error occurred on the server when processing the URL. Please contact the system administrator" the problem is probably minor. To get a more detailed error message, open IIS Manager. Right click on default web site and look at the last entry. It should be Switch to content View. If it does not say that, click the switch to ... and get the features view. Select the ASP icon under the IIS section. Under compilation select the + sign by Debuggin Properties and set Send Error To Browser to TRUE. You will now have a message that will help you fix the problems. There it is..one way to get multiple sites to work. If you have another way, I'd like to hear about it.
  263. Ralph
    June 10, 2007
    In your comment: this is usually the case when you haven't installed the ASP component. Go to where you installed IIS and look under IIS/WWW Services/Application Development/ASP and install it. :) I am having trouble understanding this. I am using vista of course. Did you mean that this is under the Turn windows features on and off section of the control panel? Ralph
  264. bills
    June 11, 2007

    Hi Ralph - see this article on how to install IIS on Vista:  www.iis.net/.../Install-IIS7-on-Vista

  265. Coder32
    June 13, 2007

    Hi. I love you man. Thanks thanks thanks............ Best Regards

  266. narasimham gadde
    June 13, 2007
    Thank you for giving good information on IIS7.0
  267. NiEL
    June 13, 2007
    Hi. Hope you can help me, I'm a newbie to ASP. My code works previously in XP but not in Vista. I get this error: Server.MapPath() error 'ASP 0175 : 80004005' Disallowed Path Characters /bullet/account/connection.inc, line 4 The '..' characters are not allowed in the Path parameter for the MapPath method.
  268. bills
    June 14, 2007

    Hi Niel.  Can you also show or send what you have in connection.inc line 4?

  269. cb
    June 15, 2007

    Thank you for giving good information on IIS7.0

  270. Pichopper
    June 15, 2007
    Hi there! I am wanting to know if IIS7.0 under Vista will allow me to host more than one website on the same machine. I have a machine that I want to host at home with my personal website on it, and another with a photogallery - I don't want the two to be on the same domain name. Please would you let me know what I would need to do? I know that this can be done in Server 2003, but I also want to use the machine to play my music at home! (Multitasking to the limit!) Thanks
  271. bills
    June 15, 2007

    Hi Pichopper -

    Yes! IIS7 will allow you to host more than one Web site at a time.  See this post: blogs.iis.net/.../How-I-fell-in-love-with-Vista-this-weekend-_2800_or-why-you_2700_re-gonna-love-IIS7_2F00_Vista-for-Web-development_2900_.aspx for more info on other features you may be interested in.

  272. J_
    June 16, 2007
    I tried to sign up at http://www.gate.com/iis7/. But it was not possible.
  273. bills
    June 17, 2007

    Niel - thanks for sending me the code from your script.  This error:

    Server.MapPath() error 'ASP 0175 : 80004005' Disallowed Path Characters /bullet/account/connection.inc, line 4 The '..' characters are not allowed in the Path parameter for the MapPath method.

    is caused by the "Parents paths disabled by default" section I describe above.  I've updated my blog to reflect this error as another symptom.  Try enabling parent paths.

  274. EWoersch
    June 20, 2007
    Seems to be working for me, did you try one of the other providers?
  275. TrackBack
    June 20, 2007
  276. TrackBack
    June 20, 2007
  277. TrackBack
    June 20, 2007
  278. TrackBack
    June 20, 2007
  279. TrackBack
    June 20, 2007
  280. TrackBack
    June 20, 2007
  281. TrackBack
    June 20, 2007
  282. TrackBack
    June 20, 2007
  283. TrackBack
    June 20, 2007
  284. Keith Combs
    June 20, 2007
    WOW !!! Look at all those trackbacks and love. Now you need to give us the dirty scoop on how well the migration went, what happened you didn't expect, etc. How about I fly up there an video some interviews?
  285. bills
    June 20, 2007

    Hi Keith - I'd be happy to introduce you to the ms.com guys next time you're around. ;)

  286. J_
    June 21, 2007
    Maximum ASP works well. I don't know how you have made it to create an account on www.gate.com/iis7/.
  287. Erik Sargent
    June 21, 2007
    99.83% availability is great. What was it under IIS6? How much of an improvement is this? 99%+ of hosted App’s upgraded without any change required - can they share the couple of changes that they did have to make. At least categories of changes, so we can look for the same gotchas in our upgrade planning? Or is there already a resource for that?
  288. TrackBack
    June 21, 2007
  289. TrackBack
    June 21, 2007
  290. TrackBack
    June 22, 2007
  291. Seth Wolf
    June 27, 2007
    Do you know if the FTP for IIS7 module has be integrated in this version of the Server 2008 build? In the previous, beta 3, the new FTP was a separate download.
  292. bills
    June 27, 2007

    Hi Seth -

    The plan for the FTP7 server is to ship it as a web download.  Unfortunately, due to resource / schedule constraints it did not make the cut-off for Windows 2008.  It will run on Vista, however, as well, once we release it.

  293. Aaron Fleming
    June 27, 2007

    SSL supported in the FTP service with IIS 7 ?

  294. bills
    June 27, 2007

    Hi Aaron -

    Yes, the new ftp server (www.iis.net/.../default.aspx) supports FTP over SSL and will be installable on server core.  The current beta only supports beta 3, and will not install on this latest CTP, but will be updated in the future.  The built-in FTP server does not support FTP/SSL, however.  

  295. Been waiting for this for far too long
    June 29, 2007

    Having posted on a wrong blog entry I'll enter it here too :-)

    Again, this is great, great, great news. I would be shocked if you guys could please check out what Dare has posted on Google infrastructure.

    Being thin and having an extremelly low memory footprint (thin as in NT 3.51 or 4.0 or similar) is certainly the way forward. No shell, no page faults, no RPC rountrips, no hangs, no WMI, nothing that eats stability or exposes more surfaces.

    PE 2.0 is a great start but not enough.

    People are building their own boxes and out of Linux pieces and it is all about cost and overhead and total control. I hope this attempt, long overdue, finally nails it

    Also having MSMQ infrastructure iincluded (please, please without any AD or Domain controller RPC synchronicity) along with fastest path to net I/O (whether HTTP(S), TCP with easy stream crypto  or even some forms of reliable multicast PGM or anything) should be a HUGE selling point.

    I have posted the below on the wrong blog :

    -------------------------------------------------------------------

    I cannot believe it, no plans for .NET framework: AWESOME! YES!

    If you guys could only get the footprint down to under 32MB on core install that would be even more cool.

    Please, please, please make this OS the fastest and thinnest by default.

    No WMI either please.

    No junk that isn't required, so we have an answer to Linux.

    No RPC or AD or shell junk that blocks the entire box. Or a CD-ROM or floppy disk hang Windows is famous for. No Name Resolution by default would be GREAT!

    We only need the fastest TCP/IP and HTTP stack on the planet (and lowest latency otherwise what's it the point).

    Cheers.

  296. Cannot wait
    June 29, 2007
    Oh yes, the affinity, CPU control, pool control and similar especially for multihomed environments should make this even more attractive. Some Winsock2 overhaul would be ideal so we can cater for Web and internal I/O without any synchronisation on any path. Cheers
  297. TrackBack
    June 29, 2007
  298. Keivan
    July 2, 2007

    Where can I as a TechNet subscriber download WMS for Windows 2008 June CTP. I can download the server but I can't find WMS.

    I've tried WMS Beta 3 but it can't install on CTP.

    /Keivan

  299. bills
    July 3, 2007

    Keivan - you can download WMS here:  www.iis.net/.../default.aspx

  300. Keivan
    July 4, 2007

    I've tried this link several times but I allways recieve a error message when trying to request that page. It seams that the page is locked.

  301. overred
    July 5, 2007

    good but my pc cann't install it

  302. Keivan
    July 6, 2007

    I just got an answer from MS support station that I'm not enrolled in Windows 2008 beta program and there for can't download WMS for June CTP. I still can access Windows 2008 from TechNet but I can't find WMS.

  303. arthur
    July 6, 2007

    when I try

    the link for the June CTP install of WMS I always get the following error:

    Page Not Found

    The content that you requested cannot be found or you do not have permission to view it.

    If you believe you have reached this page in error, click the Contact Us link at the bottom of the page to report the issue and include this ID in your e-mail: 5c0c8dae-67a0-4551-b24f-47febb15eeaa

  304. dd
    July 6, 2007
    I could not help and notice that the crowd immediatelly jumped on SHELL-LESS NT and started screaming: "Oh, no, when is my .NET going to be on?" Well I am ready to stuff the entire MS platform if anything remotely looking like CLR approaches it. Frankly it was enough, 10 years and people still love their Java-like overbloat. Do the right thing and challenge people you lost to Linux. And challenge them technically to the bone.
  305. joshua arnstein
    July 12, 2007

    can't wait try it out

  306. popalia
    July 19, 2007
    where I can downloads Windows media service for XP ? please help..
  307. bills
    July 19, 2007

    Sorry popalia - WMS only runs on the server operating system.

  308. Chris Crowe [IIS MVP]
    August 25, 2007

    I see that you have forgot to include New Zealand in your list of countries to visit, I guess it is just a typo!

  309. Joona
    August 27, 2007

    You really should come to Helsinki, Finland too!

  310. Catto
    August 27, 2007
    Hey Now Bill, Good Luck on the road show. Any thoughts on why so few hosters support .NET 3.0 framework? Will IIS7 make a change in this regards? Thx Catto
  311. Jorke Odolphi
    August 29, 2007
    Chris, you can come visit our Sydney session, we won't mind a couple of extra kiwi's :)
  312. Jess
    August 29, 2007
    We registered after hostingcon for the Fort Lauderdale show, can't wait!
  313. Tobin Titus
    August 29, 2007
    You get the award for fitting "much it up" in a blog post! ;)
  314. senloe
    September 7, 2007
    I've seen this list of components a few places (including the kb article) but under Secutity, there is no Windows Authentication option. I have every IIS option checked and still receive the error above. Any thoughts on why I can't install still? Is vista requiring I be joined to a domain in order to select Windows Authentication?
  315. bills
    September 7, 2007

    Hi Senloe - it sounds like you have Vista Home Premium or basic.  Unfortunately those editions of Windows Vista do not come with Windows authentication built-in for IIS.  You will need to upgrade to the Professional or Ultimate editions.  See www.iis.net/.../IIS7-Features-and-Windows-Vista-Editions for more information on which features of IIS are available for the various editions of Vista.

  316. George E. Borders
    September 24, 2007
    The last entry on this page is suppose to point to "Failed Request Tracing". It does not, instead it points to the Secuity video. Can you fix this please?
  317. bills
    September 24, 2007

    Thanks for catching this George - it has been fixed!

  318. php devblog
    October 2, 2007

    Thanks for good point vision.

  319. php devblog
    October 2, 2007
    Well done !
  320. Andy Brudtkuhl
    October 4, 2007
    People still use FrontPage? J
  321. TrackBack
    October 11, 2007
  322. TrackBack
    October 11, 2007
  323. Jerry Garcia
    October 20, 2007
    Any known issues with FPE on IIS7 or Vista?
  324. bills
    October 22, 2007

    Hi Jerry - as far as I know there aren't any known issues.  Be sure and let us know if you see anything - check out the publishing forum on forums.iis.net

  325. Alex
    October 22, 2007
    The news about CardSpace is pretty good, too bad they're not going to implement it natively, that would give it's usage a real boost.
  326. yahoo webhosting » Microsoft Announces Interoperability Improvements for PHP and …
    October 25, 2007

    Pingback from  yahoo webhosting &raquo; Microsoft Announces Interoperability Improvements for PHP and &#8230;

  327. Luciano Castro
    October 28, 2007

    Frontpage extensions su IIS7

  328. Scott Hanselman's Computer Zen
    October 29, 2007
  329. rick.james
    November 1, 2007

    Introduction There are many caches available to web applications. Today I will play with the http.sys

  330. Scott Hanselman
    November 2, 2007

    Hello Dear Reader. I have been working with IIS7 for a while and I&#39;m convinced that it&#39;s the

  331. Drew's IIS Blog
    November 2, 2007

    You may have heard about the new interoperability improvements for PHP and Microsoft technologies that

  332. Drew's IIS Blog
    November 2, 2007

    You may have heard about the new interoperability improvements for PHP and Microsoft technologies that

  333. Noticias externas
    November 2, 2007

    You may have heard about the new interoperability improvements for PHP and Microsoft technologies that

  334. Noticias externas
    November 2, 2007

    You may have heard about the new interoperability improvements for PHP and Microsoft technologies that

  335. Web 2.0 - Social Media - Internet News - Blogging » IIS7 in the Community…11/7/2007
    November 7, 2007

    Pingback from  Web 2.0 - Social Media - Internet News - Blogging &raquo; IIS7 in the Community&#8230;11/7/2007

  336. hawaythelads
    November 7, 2007

    Hi Bill,

           I am currently reading Shahrams book and will be writing a review as soon as I finish this one too, so far I`m impressed with the content and the depth.  I´m also speaking in the UK on IIS7 for developers.

    Really loving IIS7 and looking forward to covering more topics in detail.

    Cheers

    Andrew

  337.   IIS7 in the Community…11/7/2007 by nookli
    November 7, 2007

    Pingback from  &nbsp; IIS7 in the Community&#8230;11/7/2007&nbsp;by&nbsp;nookli

  338. » IIS7 in the Community...11/7/2007 Learn IIS7 Hosting
    November 8, 2007

    Pingback from  &raquo; IIS7 in the Community...11/7/2007 Learn IIS7 Hosting

  339. developercast.com » Bill Staples’ Blog: IIS7 in the Community
    November 8, 2007

    Pingback from  developercast.com &raquo; Bill Staples&#8217; Blog: IIS7 in the Community

  340. 65files » Blog Archive » IIS7 in the Community…11/7/2007
    November 8, 2007

    Pingback from  65files  &raquo; Blog Archive   &raquo; IIS7 in the Community&#8230;11/7/2007

  341. directab » IIS7 in the Community…11/7/2007
    November 9, 2007

    Pingback from  directab    &raquo; IIS7 in the Community&#8230;11/7/2007

  342. tips on how to blog » How To Blog -
    November 10, 2007

    Pingback from  tips on how to blog &raquo; How To Blog -

  343. Radoslaw Zawartko » PHP@Windows - ISAPI vs fastCGI vs Phalanger
    November 10, 2007

    Pingback from  Radoslaw Zawartko &raquo; PHP@Windows - ISAPI vs fastCGI vs Phalanger

  344. Mike Volodarsky's ServerSide
    November 12, 2007

    Just over a year after the we first announced the FastCGI (see the first ever blog post about it: mvolo.com/.../Making-PHP-rock-on-Windows_2F00_IIS.aspx

  345. FastCGI for IIS is Released, PHP On IIS Faster Than On Apache
    November 13, 2007

    Pingback from  FastCGI for IIS is Released, PHP On IIS Faster Than On Apache

  346. » IIS7 Videos on Channel 9 Learn IIS7 Hosting
    November 14, 2007

    Pingback from  &raquo; IIS7 Videos on Channel 9 Learn IIS7 Hosting

  347. ASP.NET AJAX Team Blogs
    November 14, 2007

    I&#39;ve fallen behind on my weekly link-listing series - apologies for the delay. ASP.NET ASP.NET RSSToolkit

  348. ASP.NET AJAX Team Blogs
    November 14, 2007

    I&#39;ve fallen behind on my weekly link-listing series - apologies for the delay. ASP.NET ASP.NET RSSToolkit

  349. FastCGI for IIS Final Released, Congratulations to the IIS Team! at The NeoSmart Files
    November 15, 2007

    Pingback from  FastCGI for IIS Final Released, Congratulations to the IIS Team! at  The NeoSmart Files

  350. 4sysops - Server Core supports IIS7 in the Windows Server 2008 June CTP-Does it make sense?
    November 16, 2007

    Pingback from  4sysops -   Server Core supports IIS7 in the Windows Server 2008 June CTP-Does it make sense?

  351. 4sysops - Server Core supports IIS7 in the Windows Server 2008 June CTP-Does it make sense?
    November 16, 2007

    Pingback from  4sysops -   Server Core supports IIS7 in the Windows Server 2008 June CTP-Does it make sense?

  352. kodeexii.net » Blog Archive » LAMP.. WAMP.. WIMP.. WISP
    November 20, 2007

    Pingback from  kodeexii.net  &raquo; Blog Archive   &raquo; LAMP.. WAMP.. WIMP.. WISP

  353. BillS' IIS Blog
    November 20, 2007

    Dennis Chung wrote up a great blog post with step-by-step instructions for how to install Windows-IIS

  354. SuperJogos - Todos os jogos da internet » Running WordPress on Windows ‘08 Server Core with IIS7 + PHP + MySQL
    November 20, 2007

    Pingback from  SuperJogos - Todos os jogos da internet &raquo; Running WordPress on Windows &#8216;08 Server Core with IIS7 + PHP + MySQL

  355. Jengates Blog » Blog Archive » links for 2007-11-20
    November 20, 2007

    Pingback from  Jengates Blog  &raquo; Blog Archive   &raquo; links for 2007-11-20

  356. Brian
    November 21, 2007

    Don't you think this is really awful, NOT being able to run ASP.NET on Server core but being able to run PHP and MySQL? I guess you will at some time be able to run Mono on it ...

    I know many people have already complained about this, but it is really awful.

  357. developercast.com » Dennis Chung’s Blog: Server Core + IIS7 + PHP + MySQL (and Wordpress)
    November 21, 2007

    Pingback from  developercast.com &raquo; Dennis Chung&#8217;s Blog: Server Core + IIS7 + PHP + MySQL (and Wordpress)

  358. NVI LifeStyle » Accommodements raisonnables : PHP et Vista
    November 21, 2007

    Pingback from  NVI LifeStyle &raquo; Accommodements raisonnables : PHP et Vista

  359. bills
    November 21, 2007

    Hi Brian -

    We're working with the .NET team to get it on Server Core.  No ETA yet, but we will get it there.  

  360. Zend Technologies » Blog Archive » Zend Framework: Launch, ZendCon, Roadmap, and ZF 1.1
    November 21, 2007

    Pingback from  Zend Technologies  &raquo; Blog Archive   &raquo; Zend Framework: Launch, ZendCon, Roadmap, and ZF 1.1

  361. sf devblog
    November 22, 2007

    I have to read this book :) Thx for information.

  362. Dennis Chung
    November 23, 2007

    Yes, i absolutely agree that Server Core should be able to host .Net apps.

    The other point that we make here is that PHP users have an additional choice as a hosting platform. So you can embrace PHP on a Windows platform.

    An additional choice, with a low footprint, secure and yet easy to manage.

  363. A few things you may not already know
    November 25, 2007

    Le cordonnier; qui n'a décidément peur de rien; a pris deux décisions importantes, la première utiliser

  364. PHP Access Violation [ IIS + ISAPI ] - WHM cPanel Destek Platformu
    November 26, 2007

    Pingback from  PHP Access Violation [  IIS + ISAPI ] - WHM cPanel Destek Platformu

  365. tips on how to blog » How To Blog -
    November 29, 2007

    Pingback from  tips on how to blog &raquo; How To Blog -

  366. TechNet Blog CZ/SK
    December 1, 2007

    Security Microsoft and Novell Open Interoperability Lab www.microsoft.com/.../09-11MSNovellLabsPR.mspx

  367. TechNet Blog CZ/SK
    December 1, 2007

    Security Microsoft and Novell Open Interoperability Lab www.microsoft.com/.../09-11MSNovellLabsPR.mspx

  368. TechNet Blog CZ/SK
    December 1, 2007

    Security Microsoft and Novell Open Interoperability Lab www.microsoft.com/.../09-11MSNovellLabsPR.mspx

  369. Hosting en Software + Services
    December 10, 2007

    Hi All, This is once again a posting in English. Yesterday and today I must have spend over 3 hours figuring

  370. Wp Wordpress » Blog Archive » FastCGI for IIS is Released, PHP On IIS Faster Than On Apache
    December 16, 2007

    Pingback from  Wp Wordpress  &raquo; Blog Archive   &raquo; FastCGI for IIS is Released, PHP On IIS Faster Than On Apache

  371. How To Write A Summary
    December 30, 2007

    Pingback from  How To Write A Summary

  372. Technical RollUp
    January 2, 2008

    News Microsoft Internet Security and Acceleration Server Internet Security and Acceleration (ISA) Server

  373. PrideRock
    January 6, 2008

    IIS7伴随着Vista已经悄悄来临,学习的时候我也摘录了一些有关于此的文章。 不敢独享,还是贴出来大家共享吧!

  374. Port 25
    January 12, 2008

    We recently announced the addition of IIS7 to the Server Core installation of Windows Server 2008 (formerly known as Longhorn Server). Server Core is an important evolution of our server product and will include a variety of roles, such as print server

  375. luka.manojlovic.net » Blog Archive » Installing PHP on IIS7.0 on Windows server 2008
    January 22, 2008

    Pingback from  luka.manojlovic.net  &raquo; Blog Archive   &raquo; Installing PHP on IIS7.0 on Windows server 2008

  376. Adaptive-Techniques.net » Almost 4000 Requests/sec on Vista running IIS 7
    January 22, 2008

    Pingback from  Adaptive-Techniques.net  &raquo; Almost 4000 Requests/sec on Vista running IIS 7

  377. Note di programmazione DNW (blog di Rudy Azzan)
    January 23, 2008

    Tools - IIS Download center

  378. Jengates Blog » Blog Archive » links for 2008-02-04
    February 4, 2008

    Pingback from  Jengates Blog  &raquo; Blog Archive   &raquo; links for 2008-02-04

  379. Rob
    February 4, 2008

    Bill - congratulations, IIS7 is a monumental achievement in anyone's book. I'm looking forward to being able to transition all my development to 2k8 and IIS7 as soon as possible!

    Yes - even those crusty old Classic ASP applications too ;)

  380. Luciano.cl
    February 4, 2008

    Congratulations, I think that IIS7 will be a good tool to help us overcome our customers' expectations

  381. steve schofield
    February 4, 2008

    Thank you Bill and the IIS team for delivering an awesome web server!  

  382. Hiroshi Okunushi's Blog ☆ミ
    February 5, 2008

    ひとしお ってこの漢字なんだ。。。と感心している場合ではなくて、IIS7の親分 Bill Staplesがいわば「終わった。。。」的なブログを書いてますのでご紹介しておきます。また例によって奥主の独断と偏見

  383. Hagen
    February 5, 2008

    Congratulations to you and the team. I love your work. You really made a great release with IIS7.

  384. Dan
    February 5, 2008

    Congratulations.

  385. gices
    February 5, 2008

    I've been waiting to try this product, i think now is the time :)

  386. Ron
    February 5, 2008

    >IIS7 is finished

    I would use the word complete. "finished" makes it sound like IIS7 is dead!

  387. Salman
    February 5, 2008

    Congrats on the hard work, shipping IIS must be one heck of a project considering the scope of its usage!

  388. Mark Farina, Jr.
    February 5, 2008

    Congratulations!!

  389. Peter Schmidt
    February 5, 2008

    Thanks Bill - to you and the team for delivering a great product!

  390. Jeonho Yang
    February 6, 2008

    축하합니다.

  391. Jeonho Yang
    February 6, 2008

    축하합니다. 드디어 완성이군요.

  392. Jeonho Yang
    February 6, 2008

    Congratulations,축하합니다. 한국에서.....

  393. George S.
    February 6, 2008

    Congrats guys and thank you so much for your hard work.

    At last extension-less URL rewriting has become easy in ASP.NET!!!

  394. Jemm
    February 7, 2008

    Thanks! I've been waiting for this for a long time! :)

  395. Blog Team TechNet Italia
    February 7, 2008

    Ci riprendiamo un po' dal silenzio stampa :) (dovuto agli impegni del TechNet New Wave Tour e del Security

  396. blog.gerke-preussner.de
    February 8, 2008

    I finally had some time to upgrade the software for this blog and learned a couple interesting things in the process. This article explains how to install PHP in IIS 7.0 on the 64-bit version of Windows Vista and get Serendipity up and running.Installing

  397. Josh Stodola
    February 8, 2008

    I am looking forward to using it!

  398. jesse285
    February 8, 2008

    So this mean that my spaceship can now leave the the bayarea for our long ride to anywhere?

  399. Tao
    February 8, 2008

    I thing it Good!!!!!

  400. Chris Love's Official Blog - Professional ASP.NET
    February 9, 2008

    Earlier this week IIS 7 was approved as a finished product by the team at Microsoft . This is great news.

  401. Chris Adams
    February 9, 2008

    This is certainly cool news for customers.  It was fun being a part of your team Bill.  Congrats...

    -Chris

  402. chongtingfong@gmail.com
    February 10, 2008

    Hi,

    Will Windows Vista Business be able to update to the released version of IIS 7.0?

    Regards,

    CHONG Ting Fong

  403. Binero » Blog Archive » PHP p?? Windows Server 2008
    February 11, 2008

    Pingback from  Binero  &raquo; Blog Archive   &raquo; PHP p?? Windows Server 2008

  404. bills
    February 11, 2008

    Chong - yes, All versions of Vista that include IIS7 will automatically upgrade to be in sync with the server codebase when SP1 is installed.  

  405. bills
    February 11, 2008

    Ron: but if I said "complete" that would imply we are done with the product, there is nothing left to do, and it is time to move on... that simply isn't true.   :)

  406. Hugh
    February 12, 2008

    Hi

    I'd like to ask of the team can possibly direct me to any documentattion about EXACTLY what is needed in order to use VS 2008 to publish a website to a Server 2008 machine running IIS7.

    Sadly we hit a brick wall, and this simple basic operation just will not work, I am told that we need FrontPage Extensions, but do we? If so WHY can I use Publish to publish to localhots and that works fine?

    Given all the hype about IIS7, Vista, Server 2008 and VS 2008 it is incredibly frustrating too find that publish isnt working and that we may need FrontPage extensions from some 3rd paty.

    Can someone explain WHY anyone would need FrontPage extensions? what are these for in IIS7 and VS 2008?

    Sorry to post this here, but I can find nothing to help shed light on this.

  407. bills
    February 12, 2008

    Hugh, yes we are working on an article that will provide a complete story for how to setup WS08 to work smoothly with Visual Studio.  Look for it on IIS.net around launch later this month.  Thanks!

  408. Guilherme Carnevale - Premier Field Engineering
    February 13, 2008

    Versão final (RTM) do IIS7 esta disponível desde o dia 04/02/2008 ( blogs.iis.net/.../iis7-is-finished.aspx

  409. Alex Thissen Weblog Build 1.15.10.1971
    February 18, 2008

    It's not really difficult to run classic ASP on Internet Information Server 7, but there are some bumps

  410. Steve Ryan
    February 18, 2008

    Can you tell me whether the final FTP 7 version made it into the RTM build or is it only to be provided as a separate downloadable .msi?

  411. Mike
    February 20, 2008

    Did you sign it off with or without the new FTP service? I mean, is it still necessary to uninstall FTP from Windows Server 2008, download the "RC" from this site, and install this one, or is the new FTP part of Windows Server 2008?

  412. bills
    February 22, 2008

    Mike / Steve:  The new FTP server will be available for download on IIS.net soon.  It didn't make the cut-off for Windows 2008 (which was about a year ago) but will be freely available for download this coming week.

  413. Michael van Dijken's Hosting blog
    February 27, 2008

    When I started in the hosting industry as a product manager with Mail.com, Microsoft wasn’t even a footnote

  414. MS Big Launch « Maverick
    February 28, 2008

    Pingback from  MS Big Launch  &laquo; Maverick

  415. Server: Microsoft-IIS/7.0\r\n
    February 28, 2008

    It is official now :) lazy to type.... head over to Bill Staples blog post for more info :) Together

  416. Chris Knowlton's Blog
    February 28, 2008

    Today was a big day for IIS and WMS! As you may have seen among the many announcements, today we announced

  417. Noticias externas
    February 28, 2008

    Today was a big day for IIS and WMS! As you may have seen among the many announcements, today we announced

  418. IIS Media Delivery Blog
    February 28, 2008

    Today was a big day for IIS and WMS! As you may have seen among the many announcements, today we announced

  419. IIS 7.0 Server-Side
    February 28, 2008

    After 5 years in development, IIS 7.0 is finished . Personally, it is hard to believe that it is over.

  420. 4sysops - Why PowerShell, Servermanagercmd and co. don???t really rock on the command prompt
    February 28, 2008

    Pingback from  4sysops -   Why PowerShell, Servermanagercmd and co. don???t really rock on the command prompt

  421. MVolo's Blog
    February 28, 2008

    After 5 years in development, IIS 7.0 is finished ! Personally, it is hard to believe that it is over

  422. Technical RollUp
    March 2, 2008

    News Microsoft Internet Security and Acceleration Server The ISA Server Best Practices Analyzer (IsaBPA)

  423. Chris Knowlton's Blog
    March 6, 2008

    Hi, my name is Chris Knowlton, and I am a Lead Program Manager on the IIS team. I have been with Microsoft

  424. http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx
    March 17, 2008

    Pingback from  blogs.iis.net/.../How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx

  425. BillS' IIS Blog
    March 21, 2008

    One of the best parts of being on the IIS team is shipping great software.&#160; First there was IIS7

  426. BillS' IIS Blog
    March 21, 2008

    One of the best parts of being on the IIS team is shipping great software.&#160; First there was IIS7

  427. Alexei
    March 21, 2008

    I got following exception on (x86) Vista:

    "Method not found:

    'System.Collections.Generic.ICollection`1<System.String>Microsoft.Web.Management.Server.ManagementConfigurationPath.GetBindingProtocols(System.IServiceProvider)'.

  428. The things that are better left unspoken
    March 22, 2008

    Windows Web Server 2008 is the successor to Windows Web Server 2003. It has some interesting tricks up

  429. The things that are better left unspoken
    March 22, 2008

    Windows Web Server 2008 is the successor to Windows Web Server 2003. It has some interesting tricks up

  430. bills
    March 22, 2008

    Hi Alexei - you may need to install Vista SP1 in order for the modules to work.  Do you have SP1 installed?  Can you give more information on where and when the error is occurring?

  431. BillS' IIS Blog
    March 23, 2008

    IIS7 includes an all-new distributed configuration option, which allows for IIS7 configuration to be

  432. http://blogs.iis.net/bills/archive/2007/11/07/iis7-in-the-community-11-7-2007.aspx
    March 24, 2008

    Pingback from  blogs.iis.net/.../iis7-in-the-community-11-7-2007.aspx

  433. CarlosAg Blog
    March 24, 2008

    My last post talked about the Technical Preview release of the IIS 7.0 Admin Pack, and how it includes

  434. carlosag
    March 24, 2008

    My last post talked about the Technical Preview release of the IIS 7.0 Admin Pack, and how it includes

  435. Jeff
    March 24, 2008

    You can also read my blog posting "Configuring Virtual Directories with Directory Browsing in IIS7" at www.expta.com/.../configuring-virtual-directories-with.html

  436. mvolo
    March 25, 2008

    Nice post, I always enjoy the way Bill breaks it down.

    The post inspired me to answer another question I often get about backing up and restoring IIS 7.0 configuration - what happens when shared configuration is being used?

    Answer at mvolo.com/.../backing-up-and-restoring-IIS-7.0-shared-configuration.aspx.

    Thanks,

    Mike

  437. Robert Chr. de Leeuw
    March 26, 2008

    And how about .php files? How can i change the mimi enabling IIS to execute these files/

    Thanks and regards,

    Robert

    robert@rcdeleeuw.nl

  438. bills
    March 26, 2008

    Hi Robert -

    Mime types are configured for static content, so the Web server can alert the client (browser) in the header of the response what type of data to expect and render.  Mime types *are not* used for dynamic content, so you should never configure the Web server mime types to serve PHP, or IIS is likely to serve out your source code as plain text.  

    To configure PHP on IIS7, see this article:  learn.iis.net/.../using-fastcgi-to-host-php-applications-on-iis7

    To configure PHP on IIS6, see this article: learn.iis.net/.../using-fastcgi-to-host-php-applications-on-iis-60

  439. wisecarver
    March 27, 2008

    Thanks bro! ;-)

  440. PHP on IIS 7 - Dave’s Blog
    April 1, 2008

    Pingback from  PHP on IIS 7 - Dave&#8217;s Blog

  441. Peter Bucher
    April 2, 2008

    Andere sind über diesen Link sich genau so froh wie ich, als ich ihn gefunden habe :-) Darin werden Probleme

  442. Scott Whigham
    April 16, 2008

    Why does it block SQL 2005 in the first place?

  443. hosterposter
    April 16, 2008

    If you haven't heard, the new Web SKU is a special, low-priced version of Windows that is focused exclusively

  444. foobar
    April 16, 2008

    By "local", you mean that another server cannot access that instance of SQL Server?

    Also, what's with the 10 file connection limit?  Does this mean that if I have a NAS with WSS that the Web Edition can only have 10 simultaneous connections to it?  Is that 10 connection limit per server, or is that a global limit?

  445. Chris
    April 17, 2008

    Nice little article.

    Can you also define web.config to "hide" certain files/file extensions when directory browsing. e.g. I would like web.config not to appear in the directory listing (I know it is secure from download but it is confusing for end users etc.)

    Thanks.

  446. bills
    April 17, 2008

    Hi Scott -

    Windows Web 2008 doesn't block SQL server...but unfortunately SQL 2005 has a block in place during setup to prevent it from installing.  The patch we are providing works around that block so that you can still use the same SQL 2005 setup DVD or install package you have.  The only alternative would have been to re-release SQL 2005 with a modified setup, which would not have been very convenient for customers. :)

  447. bills
    April 17, 2008

    Hi Foobar -

    By "local" database, I mean the database can be used for Web applications that are running on the same server.  Windows Web 2008 is not meant for use as a database server, which accepts database connections from other remote servers.  

    I'm not sure what 10 connection limit you are referring to?

  448. bills
    April 17, 2008

    Hi Chris -

    Unfortunately there isn't a way to 'hide' files from within the directory listing module.  Our current directoryListingModule doesn't support that feature.  The good news is if you want you can easily replace our directoryListingModule with a custom one that does this.  Mike Volodarsky has some sample code for this up on his blog - http://mvolo.com/

  449. foobar
    April 17, 2008

    Bill, thank you for your answers.

    As for the 10 file connection limit, I can't seem to find it anymore on the Windows Server website.  I guess I was imagining things :)

  450. Vista, IIS7 and classic ASP/Access « snuke
    April 17, 2008

    Pingback from  Vista, IIS7 and classic ASP/Access &laquo; snuke

  451. Jack Bond
    April 21, 2008

    Is it possible/allowed to have 2 windows web server 2008 each running sql server have a mirrored database?

  452. microsoft » Blog Archive » SQL Injection Attacks on IIS Web Servers
    April 26, 2008

    Pingback from  microsoft  &raquo; Blog Archive   &raquo; SQL Injection Attacks on IIS Web Servers

  453. bills
    April 26, 2008

    Jack: yep, to the best of my knowledge that does meet the licensing requirements.

  454. The Microsoft Security Response Center (MSRC)
    April 26, 2008

    Hi there this is Bill Sisk. There have been conflicting public reports describing a recent rash of web

  455. SQL Injection Attacks on IIS Web Servers - BillS IIS Blog
    April 26, 2008

    Pingback from  SQL Injection Attacks on IIS Web Servers - BillS IIS Blog

  456. VolkerD
    April 26, 2008

    Pingback

  457. K. Brian Kelley - Databases, Infrastructure, and Security
    April 26, 2008

    The recent slate of attacks on IIS servers don&#39;t seem to be an attack directly against IIS or against

  458. Guy Barrette
    April 26, 2008

    There have been conflicting reports about SQL Server injection attacks and a possible new IIS vulnerability

  459. Guy Barrette's Blog
    April 26, 2008
  460. Hundreds of Thousands of Microsoft Web Servers Hacked « Smokey’s Security Weblog
    April 26, 2008

    Pingback from  Hundreds of Thousands of Microsoft Web Servers Hacked &laquo; Smokey&#8217;s Security Weblog

  461. Microsoft f?hlt sich nicht f?r die Webserver-Attacken verantwortlich - WinSupportForum
    April 26, 2008

    Pingback from  Microsoft f?hlt sich nicht f?r die Webserver-Attacken verantwortlich - WinSupportForum

  462. Clarifying SQL Web Server Attacks » D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more by Deepak Gupta.
    April 26, 2008

    Pingback from  Clarifying SQL Web Server Attacks &raquo; D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more by Deepak Gupta.

  463. Teste » Clarifying SQL Web Server Attacks ?? D' Technology Weblog …
    April 27, 2008

    Pingback from  Teste &raquo; Clarifying SQL Web Server Attacks ?? D&#39; Technology Weblog &#8230;

  464. fashion » Blog Archive » Clarifying SQL Web Server Attacks ?? D' Technology Weblog …
    April 27, 2008

    Pingback from  fashion  &raquo; Blog Archive   &raquo; Clarifying SQL Web Server Attacks ?? D&#39; Technology Weblog &#8230;

  465. Peter
    April 27, 2008

    Ahhh BS, what's all this hoopla about?! Just tell it like it is: A LOT of developers are just plain lazy and don't care enough to use parameterized queries; end of story.

  466. SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN
    April 27, 2008

    Pingback from  SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN

  467. MSBLOG
    April 27, 2008

    Pingback from  MSBLOG

  468. SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN
    April 28, 2008

    Pingback from  SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN

  469. Security Blog di Feliciano Intini
    April 28, 2008

    La blogosfera &quot;sicura&quot; (nome scherzoso con cui identifico l'insieme di blog/e-magazines in

  470. Microsoft Afasta Responsabilidade de Ataque Massivo
    April 28, 2008

    Pingback from  Microsoft Afasta Responsabilidade de Ataque Massivo

  471. Harry Waldron - My IT Forums Blog
    April 28, 2008

    A new major security attack occurred over the weekend, where over one half million web pages became infected

  472. Harry Waldron - Microsoft MVP Blog
    April 28, 2008

    A new major security attack occurred over the weekend, where over one half million web pages became infected

  473. Paintworkzstudio
    April 28, 2008

    Does denying access to the webserver, still allow a sql attack >?

  474. Developers at fault: SQL Injection attacks lead to wide-spread compromise of IIS servers | Zero Day | ZDNet.com
    April 28, 2008

    Pingback from  Developers at fault: SQL Injection attacks lead to wide-spread compromise of IIS servers |  Zero Day | ZDNet.com

  475. Massive Attack: Half A Million Microsoft-Powered Sites Hit With SQL Injection | MeltedCube
    April 28, 2008

    Pingback from  Massive Attack: Half A Million Microsoft-Powered Sites Hit With SQL Injection | MeltedCube

  476. Microsoft Report on SQL Injection Attacks on IIS Web Servers | ReadersZone
    April 28, 2008

    Pingback from  Microsoft Report on SQL Injection Attacks on IIS Web Servers | ReadersZone

  477. kazım
    April 28, 2008

    thank you

  478. John.B
    April 29, 2008

    Even if Microsoft is not at fault for the SQL injection attacks, the malware specifically targets Windows clients.

    Since the SQL injection attack is specific to T-SQL, wouldn't it be responsible to give developers and DBAs some hints to at least detect infections?  Other than using Google to find all 500,000 infected web pages?

  479. max stirner
    April 29, 2008

    if this is not due to an IIS-vulnerability, why does it only affect IIS-servers?

  480. Prepare for Corporate Layoffs » Blog Archive » Weak SQL coding techniques result in Huge SQL Injection attacks
    April 29, 2008

    Pingback from  Prepare for Corporate Layoffs  &raquo; Blog Archive   &raquo; Weak SQL coding techniques result in Huge SQL Injection attacks

  481. GarethWestern.com » Bookmarks for April 27th through April 29th
    April 29, 2008

    Pingback from  GarethWestern.com &raquo; Bookmarks for April 27th through April 29th

  482. Microsoft ?????????????????????????????????? ???????????????? ?????????????????????????? ?????????????????? ??????????
    April 29, 2008

    Pingback from  Microsoft ?????????????????????????????????? ???????????????? ?????????????????????????? ?????????????????? ??????????

  483. bills
    April 29, 2008

    Hi Max -

    the exploit code is specific to SQL server, which is normally found behind an ASP/ASP.NET application that has not followed best practices.  The exploit code doesn't work against mysql or other databases, which is why it appears to be an IIS/ASP/ASP.NET/SQL bug, but it is not.  The same exploit could have been done with code specific to mySQL or any other database.  

  484. SR - UK
    April 29, 2008

    John.B - MS do provide info for developer and DBAs either via MSDN:

    msdn2.microsoft.com/.../ms161953.aspx

    also via multiple blog entries, for example:

    http://blogs.msdn.com/raulga/

    problem is most Devs and DBAs are just not interested in doing the work...

  485. WordPress MU barcon.info | Microsoft ?????????????????????????????????? ???????????????? ?????????????????????????? ?????????????????? ??????????
    April 29, 2008

    Pingback from  WordPress MU  barcon.info | Microsoft ?????????????????????????????????? ???????????????? ?????????????????????????? ?????????????????? ??????????

  486. RobIII
    April 29, 2008

    I wrote some T-SQL to scan your entire server for "<script" in all databases.

    ================

    exec sp_msforeachdb '

    Print(''Scanning Database [?]'')

    DECLARE @T varchar(255), @C varchar(255)

    DECLARE Table_Cursor CURSOR FOR

    select a.name,b.name from [?].dbo.sysobjects a,[?].dbo.syscolumns b

    where a.id=b.id and a.xtype=''u'' and (b.xtype=99 or b.xtype=35 or b.xtype=231 or b.xtype=167)

    order by a.name, b.name

    OPEN Table_Cursor

    FETCH NEXT FROM Table_Cursor INTO @T,@C

    WHILE(@@FETCH_STATUS=0)

    BEGIN

    If Left(@T,1)<>''#''

    Begin

    Print('' Scanning Table [''+@T+''], Column: [''+@C+'']'')

    Exec(''if exists(select [''+@C+'']  from [?].dbo.[''+@T+''] where [''+@C+''] like ''''%<script%'''') print ''''>>> FOUND in [''+@T+''].[''+@C+'']'''''')

    End

    FETCH NEXT FROM Table_Cursor INTO @T,@C

    END

    CLOSE Table_Cursor

    DEALLOCATE Table_Cursor

    '

    ================

    Just search the printout for ">>> FOUND" to see in what table the malicious code was found.

    Be warned: this might take a LONG time!

  487. Out Of The Box
    April 29, 2008

    Don't know if you saw this, but it's certainly scary . There are several articles out about a massive

  488. shawnbass.com - Security blog
    April 29, 2008

    For those not familiar with SQL injection, it's in it's simplest form a method of injection a SQL statement into a database server by way of hiding it in a web parameter. There's a more detailed ...

  489. Massive Attack: Half A Million Microsoft-Powered Sites Hit With SQL Injection | Networking for Networkers
    April 29, 2008

    Pingback from  Massive Attack: Half A Million Microsoft-Powered Sites Hit With SQL Injection | Networking for Networkers

  490. Balássy György (MSDNKK)
    April 30, 2008

    Az utóbbi időben egyre több olyan hír jelent meg a világhálón, amelyek szerint durva hiba lehet a Windows

  491.   Developers at fault? SQL Injection attacks lead to wide-spread compromise of IIS servers — Instant Web Meetings.COM - Video Conference, Collaboration, E Learning, Unified Communications
    May 1, 2008

    Pingback from  &nbsp; Developers at fault? SQL Injection attacks lead to wide-spread compromise of IIS servers&nbsp;&#8212;&nbsp;Instant Web Meetings.COM - Video Conference, Collaboration, E Learning, Unified Communications

  492. Technical RollUp
    May 1, 2008

    News Microsoft Internet Security and Acceleration Server Forefront Threat Management Gateway, the Next

  493. Media player download || Fight Night: Round 3 » Vista download info
    May 3, 2008

    Pingback from  Media player download || Fight Night: Round 3 &raquo; Vista download info

  494. Download || WinRAR » Vista download info
    May 3, 2008

    Pingback from  Download || WinRAR &raquo; Vista download info

  495. ???????????????? ???? ?????????????? ?????????? ???? ????????-2008 - ????????????.Ru
    May 5, 2008

    Pingback from  ???????????????? ???? ?????????????? ?????????? ???? ????????-2008 - ????????????.Ru

  496. ???????????????? ???????????????? ??????????????????????????, ?? ???????????? ???????????? ???????????????? ???? ????????-2008 - ????????????.Ru
    May 5, 2008

    Pingback from  ???????????????? ???????????????? ??????????????????????????, ?? ???????????? ???????????? ???????????????? ???? ????????-2008 - ????????????.Ru

  497. ?????????? ?????????????? ?????????? ?? ????????-2008 - ????????????.Ru
    May 6, 2008

    Pingback from  ?????????? ?????????????? ?????????? ?? ????????-2008 - ????????????.Ru

  498. SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN | Alex McFarlane
    May 8, 2008

    Pingback from  SQL Infection Hits Over 500K Webpages, Infiltrates DHS And UN | Alex McFarlane

  499. Jon Galloway
    May 8, 2008

    h2.entry-title {font-size: 1.1em; clear:left;} ul.hfeed {list-style-type: none;} li.xfolkentry {clear

  500. how to unblock web
    May 8, 2008

    Pingback from  how to unblock web

  501. Joseph
    May 8, 2008

    A few of our legacy ASP application were affected by this outbreak. It was an accident waiting to happen though. The blame is on the poorly written code, not in SQL or IIS. Since it is too expensive (and difficult) to fix all code, you have to live with it. I found an interesting and free (GNU with source code) application for IIS that proved very efficient. I am still being attacked, but the filter has blocked the effects of such attacks.

    Installation and code can be found here:

    www.codeplex.com/IIS6SQLInjection

    The only bad thing is that it is not compatible with Windows 64 bits. I had to move all ASP application to a lesser server :(

  502. WPF Learning Experience
    May 10, 2008

    Pingback from  WPF Learning Experience

  503. apache iis net
    May 12, 2008

    Pingback from  apache iis net

  504. IIS7, PHP and WordPress on Vista « verb. sap.
    May 12, 2008

    Pingback from  IIS7, PHP and WordPress on Vista &laquo; verb. sap.

  505. Lomex
    May 14, 2008

    To answer the 10 connection limit.  I can`t speak for 2008 but 2003 had this same limit.  It`s for *incoming* file connections only and is implemented to stop people using the server as a file server to users over the file system and does not affect connections to and through IIS.

  506. install sql server
    May 14, 2008

    Pingback from  install sql server

  507. Vista, IIS7 and Classic ASP/Access « snuke
    May 14, 2008

    Pingback from  Vista, IIS7 and Classic ASP/Access &laquo; snuke

  508. Vista, IIS7 and Classic ASP/Access « snuke
    May 14, 2008

    Pingback from  Vista, IIS7 and Classic ASP/Access &laquo; snuke

  509. Vista, IIS7 and Classic ASP/Access « snuke
    May 14, 2008

    Pingback from  Vista, IIS7 and Classic ASP/Access &laquo; snuke

  510. Vista, IIS7 and Classic ASP/Access « snuke
    May 14, 2008

    Pingback from  Vista, IIS7 and Classic ASP/Access &laquo; snuke

  511. Yvonne
    May 15, 2008

    Once you recover your web server from the attack you are not done.  You may find that the seach engines now have cached pages for your site that include the malicious code.  Yahoo takes a simple e-mail.  Google takes an online form.  I have been fighting for 2 weeks to get Microsoft to remove cached pages that are now 6 weeks old from their Live Search.  

  512. Samuel Davis
    May 20, 2008

    Who should be responible for fixing a website that has recently been affect by an SQL injection attack?  Should it be the people responible for developing website or the company that purchased it?  We had a website developed a year ago and it's currently being hosted by the developer.  It has recently been attacked and now they want to charge us to fix it, but if this is due to their poor code shouldn't they be responible for fixing it?

  513. Anonymous
    May 20, 2008

    The above component do not work and fail if SQL is defined in form action:

    <form method="post" action="show.asp?PageID=123;Declare @a;Set @=123;Exec(@);">

    </form>

  514. Fred
    May 22, 2008

    It is important to learn how to implement best security practices and protect your database. There's a great tutorial test on www.microsoft.com/hellosecureworld7 where you can see an SQL Injection attack in action and learn ways to stop it. Look for the SQL Injection Lab.

  515. Heavy on the Technical
    May 24, 2008

    News Microsoft Internet Security and Acceleration Server Forefront Threat Management Gateway, the Next

  516. Microsoft Switzerland Security Blog
    May 28, 2008

    There s a lot of noise arround currently ongoig SQL injection attacks and even if that is quite an "old"

  517. Michael Howard on SQL Injection and my concerns on the most recent attacks | Zero Day | ZDNet.com
    May 29, 2008

    Pingback from  Michael Howard on SQL Injection and my concerns on the most recent attacks | Zero Day | ZDNet.com

  518. Roger's Security Blog
    May 30, 2008

    Well, there was quite some chatter over the last few weeks with regards to the massive defacements we

  519. servers
    May 31, 2008

    Pingback from  servers

  520. URLrewrite module for IIS7 - BillS IIS Blog
    May 31, 2008

    Pingback from  URLrewrite module for IIS7 - BillS IIS Blog

  521. Mojtaba
    June 1, 2008

    excellent.

    i have a question.

    is it possible for asp.net developers to use this functionality in their app ?(i mean they define their config in web.config) and asp.net do the rest?

  522. iis blog software
    June 1, 2008

    Pingback from  iis blog software

  523. iis blog software
    June 1, 2008

    Pingback from  iis blog software

  524. MSBLOG
    June 1, 2008

    Pingback from  MSBLOG

  525. Joe
    June 1, 2008

    Good lord, welcome to 1997.  Congratulations!

  526. ??pu??lar??m » Blog Archive » IIS7 Access Database Baglanti Sorunu
    June 1, 2008

    Pingback from  ??pu??lar??m  &raquo; Blog Archive   &raquo; IIS7 Access Database Baglanti Sorunu

  527. ??pu??lar??m » Blog Archive » IIS7 Access Database Baglanti Sorunu
    June 1, 2008

    Pingback from  ??pu??lar??m  &raquo; Blog Archive   &raquo; IIS7 Access Database Baglanti Sorunu

  528. ??pu??lar??m » Blog Archive » IIS Access Db sorunu
    June 1, 2008

    Pingback from  ??pu??lar??m  &raquo; Blog Archive   &raquo; IIS Access Db sorunu

  529. ??pu??lar??m » Blog Archive » IIS Access Db sorunu
    June 1, 2008

    Pingback from  ??pu??lar??m  &raquo; Blog Archive   &raquo; IIS Access Db sorunu

  530. ??pu??lar??m » Blog Archive » IIS7 Access Database Baglanti Sorunu
    June 1, 2008

    Pingback from  ??pu??lar??m  &raquo; Blog Archive   &raquo; IIS7 Access Database Baglanti Sorunu

  531. bills
    June 1, 2008

    thanks Joe!  I thought '97 was a good year too ;)

  532. bills
    June 1, 2008

    Hi Mojtaba - yes, all types of applications (ASP, ASP.NET, PHP, ColdFusion, PERL, Python, Ruby, etc.) can use this URLrewrite module from IIS.  Just install the URLrewrite module on any IIS7 server (Vista SP1 or Windows 2008 Server) and configure it for your site/application in web.config or using the IIS Manager tool.  See the tutorials listed in my blog for more help getting started.

  533. Vibro.NET
    June 1, 2008

    I am now focusing exclusively on identity &amp; services, true, but certain news about former interests

  534. 拝啓、サカモトと申します。
    June 1, 2008

    URL rewrite module for ore.

  535. How Do I Script / Automate IIS7 Configuration? (without writing code) - BillS IIS Blog
    June 1, 2008

    Pingback from  How Do I Script / Automate IIS7 Configuration? (without writing code) - BillS IIS Blog

  536. M Jannat
    June 2, 2008

    using System;

    using System.Text;

    using Microsoft.Web.Administration;

    internal static class Sample {

       private static void Main() {

           using(ServerManager serverManager = new ServerManager()) {

               Configuration config = serverManager.GetWebConfiguration(null);

               ConfigurationSection appSettingsSection = config.GetSection("appSettings");

               ConfigurationElementCollection appSettingsCollection = appSettingsSection.GetCollection();

               serverManager.CommitChanges();

           }

       }

    }

  537. どっとねっとふぁんBlog
    June 2, 2008

    Now Available: URL Rewriter Tech Preview 1 URLrewrite module for IIS7 IIS7用にURLリライトモジュールが提供されるようです。...

  538. Mojtaba
    June 2, 2008

    thanks for your answer and guides about asp.net url rewrting.i am currently use an open source dll for it (urlrewriter.net)

  539. Andrew Storrs
    June 2, 2008

    Thank you for including the mod_rewrite rule converter, it was the first thing I went looking for. :)

  540. My Space In The Net » Blog Archive » URLrewrite module for IIS7
    June 2, 2008

    Pingback from  My Space In The Net  &raquo; Blog Archive   &raquo; URLrewrite module for IIS7

  541. managing change
    June 2, 2008

    Pingback from  managing change

  542. Mike
    June 2, 2008

    Well, that was about time. Of course there's the small issue of having to upgrade to Windows Server 2008 to get any of this, but that's typical Microsoft.

  543. Robert Folkesson
    June 2, 2008

    Den senaste tiden har en mängd sajter blivit infekterade av en SQL Injection-attack som använder SQL

  544. Mike C.
    June 2, 2008

    I am genuinely conflicted by this news. I want to feel good about it, I really do, but I can't see giving you guys credit for finally matching a feature that Apache has had for many years. Not only are you late to the game on this feature, you are doing it in a way that it totally different than the de facto standard (you don't have an "import my .htaccess file" capability? You don't think this would be HUGELY useful?) Moreover, YOU ONLY FREAKING SUPPORT IIS7 WITH THIS!!! A lot of people are still using IIS6 and won't be upgrading anytime soon (hell, some of us are still using IIS5 and aren't upgrading because it still works).

    Bill: please consider making and shipping something akin to mod_write for IIS6. Even this "made different than the standard for no good reason" will do if that's the only option.

  545. Hiroshi Okunushi's Blog ☆ミ
    June 2, 2008

    Bill Staplesのブログで紹介されています。 blogs.iis.net/.../urlrewrite-module-for-iis7.aspx

  546. bills
    June 2, 2008

    Hi Mike-

    We only intend to ship this feature for IIS7, because it was designed to integrate seamlessly with the new IIS7 extensibility model.  Unfortunately we can't do this level of integration with IIS6 due to architectural reasons.  In addition, there is a great solution already out there for IIS5/6 users with http://www.isapirewrite.com/ .  Be sure and check out that product. 

    Also, you may have missed it in my post, but there is definitely an 'import .htaccess mod_rewrite rules'.  See this link:  learn.iis.net/.../importing-apache-modrewrite-rules

    thanks,

    bill

  547. MSDEPLOY.EXE
    June 2, 2008

    Yay.  You blogged about me.  ;-)

  548. jonrandahl
    June 3, 2008

    Thanks Bill!

    Coming into the arena pretty recently has caused me no amounts of headaches trying to understand which is what and why! This is a very insightful plethora of information which I will refer to again and again!

    Out of curiosity, is there any feeds we could subscribe to that list easily broken down by their specificity?

  549. Pietro Brambati Blog
    June 3, 2008

    Una domanda tipica che mi viene fatta quando parlo di IIS 7 è se esista qualche meccanismo di rewrite

  550. Brian Smith
    June 3, 2008

    Scott,

    I've gotten the above to work but I'm curious as to the ramifications of Step #4.  Does that mean now that ASP.NET v1.1 apps will ignore any IIS configurable setting in their web.config files?  I'm a tad confused.

    Thanks!

  551. yuety.xie
    June 3, 2008

    不错;)

  552. bills
    June 3, 2008

    Hi Jon -

    Check out the feature-name link for more specific information on the features themselves.  We're working on a single page / RSS feed which will provide a consolidated view of the features available for download for IIS7, in the mean time you might want to subscribe to www.iis.net/.../rss.aspx which is an RSS feed of all downloads that get submitted (including community sponsored downloads)

  553. bills
    June 3, 2008

    Hi Brian,

    By default ASP.NET 1.1 would throw an exception if it detect configuration it didn't recognize.  By adding this configuration tag, it will ignore the configuration inside <system.webServer> where all IIS configuration is stored.  If you think about it, that is ok.  ASP.NET doesn't need to know anything about IIS configuration.  It doesn't read or pay attention to IIS configuration and doesn't care that IIS and ASP.NET now share the same configuration file.  

  554. Drew's IIS Blog
    June 3, 2008

    Today I presented a session at TechEd Developer in Orlando title “What’s New in IIS7 for Developers”

  555. Binero » Blog Archive » Skydda din webbplats
    June 5, 2008

    Pingback from  Binero  &raquo; Blog Archive   &raquo; Skydda din webbplats

  556. jonrandahl
    June 6, 2008

    Thanks Bill,

    sorry for the delay in response, life, work and all that!

    That feed is now part of my daily read, can't wait for the consolidated one!

    Thank you for your time and patience!

  557. bkchung's WebLog
    June 6, 2008

    물론 Silverlight 2 베타 2 , MEF 6월 CTP , Windows Search 4.0 , Parallel Extension 6월 CTP , 코드명 Velocity ,

  558. Anonymous
    June 6, 2008

    Hi, is this rewrite module something that can be used on hosted solutions? (Is it a dll that I can import into my bin folder of my project and use it?) Or will I have to get my hosted provider to install it on my IIS7 account? Thanks

  559. security features of windows server
    June 6, 2008

    Pingback from  security features of windows server

  560. Airline Travel » URL Rewrite Module
    June 8, 2008

    Pingback from  Airline Travel &raquo; URL Rewrite Module

  561. Kirk Allen Evans's Blog
    June 8, 2008

    No, we didn't directly port Mod-Rewrite to IIS7. But there is a great implementation of a URL rewriter

  562. Anonymous
    June 8, 2008

    I've literally just found out about FTPv7 :o

    I was disappointed Windows Server 2008 shipped with IIS6' FTP manager. This should definitely be included in a service pack (integrated with the Windows Server Roles and Features system). That would be the icing on the cake.

  563. bills
    June 8, 2008

    Hi Anonymous - this module is a native-code global module and would need to be installed by your hoster.  Once installed, it can be configured in your local web.config of the site/application, however.  For a managed code rewrite module that can be deployed in the bin directory of your application, see http://urlrewriter.net

  564. bills
    June 8, 2008

    Hi Anonymous - yes the FTP server built into Windows 2008 is the same old FTP server from IIS6 (and IIS5, and IIS4...) not much changed over the years, which is why we rewrote it from scratch.  FTP7 is a major update with lots of new features, unfortunately it didn't make the Windows 2008 schedule.  We won't be able to add it to a service pack, but you can expect to see it in Windows 2008 R2 once it comes out.

  565. Anonymous
    June 9, 2008

    I'm not sure if this happens when you install the builtin FTPv6 on Windows Server 2008, but when you install FTPv7 it does not create a rule to allow FTP in the Windows Firewall. This would be the icing on the cake.

  566. Real World Performance Data on IIS7: BillS IIS Blog
    June 9, 2008

    Pingback from  Real World Performance Data on IIS7: BillS IIS Blog

  567. free site builder
    June 10, 2008

    [...] ...

  568. Hiroshi Okunushi's Blog ☆ミ
    June 11, 2008

    IIS 製品開発チームが出しているOOB(Out-Of-Bound)ツール群のうち、Microsoft Web Deployment Tool(MSDeploy)の最新ビルド(まだベータです。)が公開されています。

  569. What I Learned Today: Programming, Research, Life
    June 11, 2008

    As I get used to my new laptop with Vista (not as bad as everyone has indicated ...), I found the following page extremely helpful in setting up a local instance of IIS 7 on the laptop for devel ...

  570. wisecarver
    June 12, 2008

    Awesome. ;-)

    Ready to try IIS7 / Windows Server 2008?

    Want an honest incentive?

    Go to www.discountasp.net/signup

    Use this promotion code: WISEMX

    (You'll get an entire year for the price of just 6 months.)

     Salute,

       Mark Wisecarver

       Technical Evangelist for http://DiscountASP.NET

  571. » re: DiscountASP.NET offers beta IIS Manager extensions
    June 12, 2008

    Pingback from  &raquo; re: DiscountASP.NET offers beta IIS Manager extensions

  572. How to manage IIS7 remotely from Windows Vista
    June 12, 2008

    Pingback from  How to manage IIS7 remotely from Windows Vista

  573. » How to manage IIS7 remotely from Windows Vista
    June 12, 2008

    Pingback from  &raquo; How to manage IIS7 remotely from Windows Vista

  574. Najlepsze Programy, Recenzje, Informacje. » Blog Archive » How to manage IIS7 remotely from Windows Vista
    June 12, 2008

    Pingback from  Najlepsze Programy, Recenzje, Informacje.  &raquo; Blog Archive   &raquo; How to manage IIS7 remotely from Windows Vista

  575. Rovastar
    June 13, 2008

    Great advert Bill. You getting commission? ;)

  576. WindowsObserver.com » Blog Archive » Windows Vista Google Alerts for 13 June 2008
    June 13, 2008

    Pingback from  WindowsObserver.com  &raquo; Blog Archive   &raquo; Windows Vista Google Alerts for 13 June 2008

  577. Anonymous
    June 13, 2008

    Must have a different Vista from me. I go to Control Panel and I don't have an option called Programs

  578. Anonymous
    June 13, 2008

    Hi Bills,

    It is to old to back again to old technologies, in this case to old .NET Framework, don;t know are anyone whats to use ASP.NET 1.1 at all when a lot of new features has ASP.NET 2.0 and .NET Frameworks 3.5 also. We developed in days new website with latest IIS7 and .NET Framework 3.5 technology for auto and moto advertises with sending MMS message supported with video: automms.lt/auto_advertises. So, not sure if at all neads write any articles for .NET 1.1, but it good to hear old good porgramming languages news and work arrounds :]

  579. bills
    June 14, 2008

    Hi Anonymous - make sure you click on 'control panel home' view on the left hand side of control panel.  if you have switched to 'classic view' you won't see it.

  580. » re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows 2008
    June 14, 2008

    Pingback from  &raquo; re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows 2008

  581. » ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows 2008
    June 14, 2008

    Pingback from  &raquo; ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows 2008

  582. Windows Vista News » ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows …
    June 15, 2008

    Pingback from  Windows Vista News  &raquo; ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows &#8230;

  583. Najlepsze Programy, Recenzje, Informacje. » Blog Archive » ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows …
    June 15, 2008

    Pingback from  Najlepsze Programy, Recenzje, Informacje.  &raquo; Blog Archive   &raquo; ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows &#8230;

  584. » ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows …
    June 15, 2008

    Pingback from  &raquo; ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and Windows &#8230;

  585. Windows Vista News » ?? ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and …
    June 15, 2008

    Pingback from  Windows Vista News  &raquo; ?? ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and &#8230;

  586. » Najlepsze Programy, Recenzje, Informacje. ?? Blog Archive …
    June 15, 2008

    Pingback from  &raquo; Najlepsze Programy, Recenzje, Informacje. ?? Blog Archive &#8230;

  587. » ?? ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and …
    June 15, 2008

    Pingback from  &raquo; ?? ?? ?? re: How to install ASP.NET 1.1 with IIS7 on Vista and &#8230;

  588. Владимир Лещинский
    June 16, 2008

    Посвящается моим студентам, жалующимся на высокую требовательность к качеству кода при сдаче лабораторных

  589. bills
    June 16, 2008

    Rovastar - nope, no commission.  But I do value partners who are willing to test our early bits and give us feedback, especially in real-world environments like this.  It makes the product better for everyone.  And I welcome any other hosters to email me if they are interested in doing the same.

  590. Владимир Лещинский
    June 17, 2008

    Что же ты делаешь с нами великий и могучий ... IIS 7 ? Или URLRewriter уже пришел... Не знаю по какой

  591. All About Interop
    June 18, 2008

    A couple weeks ago, Bill Staples made a splash when he announced a Rewrite Module for IIS7: blogs.iis.net/.../urlrewrite-module-for-iis7.aspx

  592. BillS IIS Blog
    June 18, 2008

    With so many cool new capabilities in IIS7 , and even more new features coming out all the time , it

  593. BillS IIS Blog
    June 18, 2008

    With so many cool new capabilities in IIS7 , and even more new features coming out all the time , it

  594. » How to Migrate from IIS 6 to IIS 7
    June 18, 2008

    Pingback from  &raquo; How to Migrate from IIS 6 to IIS 7

  595. » How to Migrate from IIS 6 to IIS 7 A C One: What The World Is Saying About A C One
    June 18, 2008

    Pingback from  &raquo; How to Migrate from IIS 6 to IIS 7 A C One: What The World Is Saying About A C One

  596. 2 Be 3 » Blog Archive » How to Migrate from IIS 6 to IIS 7
    June 18, 2008

    Pingback from  2 Be 3  &raquo; Blog Archive   &raquo; How to Migrate from IIS 6 to IIS 7

  597. BillS IIS Blog
    June 18, 2008

    With so many cool new capabilities in IIS7 , and even more new features coming out all the time , it

  598. iis
    June 18, 2008

    With so many cool new capabilities in IIS7 , and even more new features coming out all the time , it&#39;s

  599. How to Migrate from IIS 6 to IIS 7: BillS IIS Blog
    June 18, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7: BillS IIS Blog

  600. Marinautics » Blog Archive » How to Migrate from IIS 6 to IIS 7: BillS IIS Blog
    June 19, 2008

    Pingback from  Marinautics  &raquo; Blog Archive   &raquo; How to Migrate from IIS 6 to IIS 7: BillS IIS Blog

  601. ?? How to Migrate from IIS 6 to IIS 7 AC One: What The World Is … | Air Condition Service and Supplies in Your City
    June 19, 2008

    Pingback from  ?? How to Migrate from IIS 6 to IIS 7 AC One: What The World Is &#8230; | Air Condition Service and Supplies in Your City

  602. After 7 » Blog Archive » How to Migrate from IIS 6 to IIS 7
    June 19, 2008

    Pingback from  After 7  &raquo; Blog Archive   &raquo; How to Migrate from IIS 6 to IIS 7

  603. After 7 » Blog Archive » After 7 ?? Blog Archive ?? How to Migrate from IIS 6 to IIS 7
    June 19, 2008

    Pingback from  After 7  &raquo; Blog Archive   &raquo; After 7 ?? Blog Archive ?? How to Migrate from IIS 6 to IIS 7

  604. After 7 » Blog Archive » After 7 ?? Blog Archive ?? After 7 ?? Blog Archive ?? How to Migrate …
    June 20, 2008

    Pingback from  After 7  &raquo; Blog Archive   &raquo; After 7 ?? Blog Archive ?? After 7 ?? Blog Archive ?? How to Migrate &#8230;

  605. Jonas Stawski
    June 20, 2008

    Classic ASP on Vista

  606. Jonas Stawski
    June 20, 2008

    Classic ASP on Vista

  607. Jonas Stawski
    June 20, 2008

    Classic ASP on Vista

  608. Jonas Stawski
    June 20, 2008

    Classic ASP on Vista

  609. After 7 » Blog Archive » After 7 ?? Blog Archive ?? After 7 ?? Blog Archive ?? After 7 …
    June 21, 2008

    Pingback from  After 7  &raquo; Blog Archive   &raquo; After 7 ?? Blog Archive ?? After 7 ?? Blog Archive ?? After 7 &#8230;

  610. MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz - ntoolz.net

  611. Security Advisory 953818 Posted | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  Security Advisory 953818 Posted | Network Toolz - ntoolz.net

  612. Questions about Web Server Attacks | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  Questions about Web Server Attacks | Network Toolz - ntoolz.net

  613. AMD Talk » MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz …
    June 22, 2008

    Pingback from  AMD Talk &raquo; MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz &#8230;

  614. May 2008 Advance Notification | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  May 2008 Advance Notification | Network Toolz - ntoolz.net

  615. » Security Advisory 953818 Posted | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  &raquo; Security Advisory 953818 Posted | Network Toolz - ntoolz.net

  616. » MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz …
    June 22, 2008

    Pingback from  &raquo; MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz &#8230;

  617. The latest SQL Injection Attacks | Network Toolz - ntoolz.net
    June 22, 2008

    Pingback from  The latest SQL Injection Attacks | Network Toolz - ntoolz.net

  618. Pregnant Man » MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz …
    June 22, 2008

    Pingback from  Pregnant Man &raquo; MSRC Blog: Microsoft Security Advisory (950627) | Network Toolz &#8230;

  619. Network Tools - ntoolz.net » Blog Archive » certificate mapping auth problem
    June 22, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; certificate mapping auth problem

  620. Network Tools - ntoolz.net » Blog Archive » March 2008 MS08-014 Re-release
    June 22, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; March 2008 MS08-014 Re-release

  621. Network Tools - ntoolz.net » Blog Archive » How do you create client certificates?
    June 22, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; How do you create client certificates?

  622. Network Tools - ntoolz.net » Blog Archive » Cannot manage Entreprise CA that is in parent domain from child domain
    June 22, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; Cannot manage Entreprise CA that is in parent domain from child domain

  623. Network Tools - ntoolz.net » Blog Archive » Questions about Web Server Attacks
    June 22, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; Questions about Web Server Attacks

  624. Network Tools - ntoolz.net » Blog Archive » eLineStudio Site Composer Multiple Vulnerabilities
    June 23, 2008

    Pingback from  Network Tools - ntoolz.net  &raquo; Blog Archive   &raquo; eLineStudio Site Composer Multiple Vulnerabilities

  625. Error: 18456, Severity: 14, State: 16. | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  Error: 18456, Severity: 14, State: 16. | Network Tools - ntoolz.net

  626. » Network Tools - ntoolz.net ?? Blog Archive ?? Cannot manage …
    June 23, 2008

    Pingback from  &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? Cannot manage &#8230;

  627. » Network Tools - ntoolz.net ?? Blog Archive ?? Questions about Web …
    June 23, 2008

    Pingback from  &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? Questions about Web &#8230;

  628. » Network Tools - ntoolz.net ?? Blog Archive ?? eLineStudio Site …
    June 23, 2008

    Pingback from  &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? eLineStudio Site &#8230;

  629. The latest SQL Injection Attacks | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  The latest SQL Injection Attacks | Network Tools - ntoolz.net

  630. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  631. Archive » Network Tools - ntoolz.net ?? Blog Archive ?? eLineStudio Site …
    June 23, 2008

    Pingback from  Archive &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? eLineStudio Site &#8230;

  632. Archive » Network Tools - ntoolz.net ?? Blog Archive ?? Questions about Web …
    June 23, 2008

    Pingback from  Archive &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? Questions about Web &#8230;

  633. Archive » Network Tools - ntoolz.net ?? Blog Archive ?? Cannot manage …
    June 23, 2008

    Pingback from  Archive &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? Cannot manage &#8230;

  634. Archive » Network Tools - ntoolz.net ?? Blog Archive ?? How do you create …
    June 23, 2008

    Pingback from  Archive &raquo; Network Tools - ntoolz.net ?? Blog Archive ?? How do you create &#8230;

  635. MS08-030 Re-released for Windows XP SP2 and SP3 | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  MS08-030 Re-released for Windows XP SP2 and SP3 | Network Tools - ntoolz.net

  636. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  637. June 2008 Monthly Release | Network Tools - ntoolz.net
    June 23, 2008

    Pingback from  June 2008 Monthly Release | Network Tools - ntoolz.net

  638. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  639. Microsoft Security Advisory (904420): Win32/Mywife.E@mm - 2/1/2006 | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  Microsoft Security Advisory (904420): Win32/Mywife.E@mm - 2/1/2006 | Network Tools - ntoolz.net

  640. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  641. lonevvolf
    June 24, 2008

    I can't seem to get lazy matching working on the HTTP_COOKIE header field.  I'm trying to match on a cookie like this:

    COOKIE_NAME=(.*?);

    but the lazy matching always takes all the cookies until the end.  If I use this:

    COOKIE_NAME=(.*?;)

    I get the cookie value, but with a semicolon attached.

    When I test the first case in Expresso, it works correctly.  Is this a bug in the rewrite module?

  642. » Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? Questions …
    June 24, 2008

    Pingback from  &raquo; Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? Questions &#8230;

  643. A E » Blog Archive » Microsoft Security Advisory (904420): Win32/Mywife.E@mm - 2/1/2006 …
    June 24, 2008

    Pingback from  A E  &raquo; Blog Archive   &raquo; Microsoft Security Advisory (904420): Win32/Mywife.E@mm - 2/1/2006 &#8230;

  644. » MS08-030 Re-released for Windows XP SP2 and SP3 | Network Tools …
    June 24, 2008

    Pingback from  &raquo; MS08-030 Re-released for Windows XP SP2 and SP3 | Network Tools &#8230;

  645. lonevvolf
    June 24, 2008

    Never mind...found the problem there.  I just need a way to edit the header fields now, and I'm all set!  :S

  646. Archive » Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? How do you …
    June 24, 2008

    Pingback from  Archive &raquo; Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? How do you &#8230;

  647. Archive » Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? Cannot …
    June 24, 2008

    Pingback from  Archive &raquo; Archive ?? Network Tools - ntoolz.net ?? Blog Archive ?? Cannot &#8230;

  648. IAS and RAS server certificate enrollment | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  IAS and RAS server certificate enrollment | Network Tools - ntoolz.net

  649. Server Core in our Security Bulletins | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  Server Core in our Security Bulletins | Network Tools - ntoolz.net

  650. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 24, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  651. Wade Hilmo
    June 24, 2008

    The IIS team has some street smarts when it comes to security. We learned quite a few lessons the hard

  652. Hanif’s Blog » Blog Archive » Common ASP Classic Error in IIS 7.0
    June 24, 2008

    Pingback from  Hanif&#8217;s Blog  &raquo; Blog Archive   &raquo; Common ASP Classic Error in IIS 7.0

  653. Anonymous
    June 26, 2008

    Site www.gotdotnet.ru/.../552493.aspx crash Opera.

    Thanks.

  654. Anonymous
    June 26, 2008

    thanks ur ways work a lot for my installtion

  655. Steve Huff's Blog
    June 26, 2008

    Getting PHP, MySQL, IIS, and Vista to Play Nicely

  656. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 26, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  657. Questions about Web Server Attacks | Network Tools - ntoolz.net
    June 26, 2008

    Pingback from  Questions about Web Server Attacks | Network Tools - ntoolz.net

  658. Anonymous
    June 30, 2008

    Hi Bills...

    Thanks for your dokumentation...

    how can i create a wildcardhandler for 1.1 in iis7?

    you know this?

    thanks JC

  659. Blog Team TechNet Italia
    July 8, 2008

    Vi vorrei segnalare tre informazioni (spero utili) su Internet Information Services 7.0, la versione

  660. how to make vista run faster
    July 8, 2008

    Pingback from  how to make vista run faster

  661. ms maps live
    July 9, 2008

    Pingback from  ms maps live

  662. Archive » New Trends ?? Blog Archive ?? gate.com
    July 9, 2008

    Pingback from  Archive &raquo; New Trends ?? Blog Archive ?? gate.com

  663. BillS IIS Blog
    July 9, 2008

    In last a few weeks, the IIS team has released 3 IIS extensions updates: &#183; URL Rewrite Module CTP1

  664. Archive » Archive ?? New Trends ?? Blog Archive ?? gate.com
    July 9, 2008

    Pingback from  Archive &raquo; Archive ?? New Trends ?? Blog Archive ?? gate.com

  665. Archive » Buy Cd Mp3 Player ?? Blog Archive ?? Basic Connection-You are My Love
    July 9, 2008

    Pingback from  Archive &raquo; Buy Cd Mp3 Player ?? Blog Archive ?? Basic Connection-You are My Love

  666. New IIS7 Releases: URL Rewrite, Application Routing and Load Balancing, and PowerShell Cmd-lets: BillS IIS Blog
    July 9, 2008

    Pingback from  New IIS7 Releases: URL Rewrite, Application Routing and Load Balancing, and PowerShell Cmd-lets: BillS IIS Blog

  667. Viktar
    July 9, 2008

    Finally, we are going to have URL Rewrite Module like Apache server.

    No more httpmodules and missing styles or images.

    Viktar | Web developer Blog http://www.karpach.com

  668. Anonymous
    July 10, 2008

    I downloaded

    I will definately give a try

    Joggee

    http://blog.joggee.com

  669. IIS 7.0 Rewrite Module… hahahaha | Blog@ITPiMP.Network
    July 10, 2008

    Pingback from  IIS 7.0 Rewrite Module&#8230; hahahaha | Blog@ITPiMP.Network

  670. quick question regarding c and php. - TalkPHP
    July 10, 2008

    Pingback from  quick question regarding c and php. - TalkPHP

  671. net 2 0 install error
    July 10, 2008

    Pingback from  net 2 0 install error

  672. Ultracet.
    July 11, 2008

    Ultracet.

  673. About propecia online information uk.
    July 11, 2008

    Propecia online information uk. Propecia specifications. Propecia. Propecia uk medix plus forum. Propecia hypertension. Propecia side effects fre. Propecia online uk. Buy propecia buy cheap propecia online.

  674. DotNetKicks.com
    July 12, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  675. » Buy Cd Mp3 Player ?? Blog Archive ?? Basic Connection-You are My Love Basic: What The World Is Saying About Basic And Their Music
    July 12, 2008

    Pingback from  &raquo; Buy Cd Mp3 Player ?? Blog Archive ?? Basic Connection-You are My Love Basic: What The World Is Saying About Basic And Their Music

  676. Finding SQL Injection with Scrawlr | IT & Network Security Blog
    July 13, 2008

    Pingback from  Finding SQL Injection with Scrawlr | IT &amp; Network Security Blog

  677. Zolpidem.
    July 13, 2008

    Zolpidem.

  678. Zolpidem.
    July 13, 2008

    Zolpidem.

  679. Baka.Blog
    July 15, 2008

    &#160; blogs.iis.net/.../new-iis7-releases-url-rewrite-application-routing

  680. redmoon
    July 15, 2008

    一个用于手动生成Podcast的RSS种子的小Web应用。用到了如下几个技术:SQLServer2005Express基本数据库结构为:其中UserId等于aspnet_Users表中...

  681. Scott Hanselman's Computer Zen
    July 15, 2008
  682. Scott Hanselman's Computer Zen
    July 15, 2008
  683. Readed By Wrocław NUG members
    July 15, 2008

    I really like the IIS7 team at Microsoft. They&#39;re cool people, but the what I like is that IIS7 is

  684. Readed By Wrocław NUG members
    July 15, 2008

    I really like the IIS7 team at Microsoft. They&#39;re cool people, but the what I like is that IIS7 is

  685. ASPInsiders
    July 15, 2008

    I really like the IIS7 team at Microsoft. They're cool people, but the what I like is that IIS7 is so

  686. ASPInsiders
    July 15, 2008

    I really like the IIS7 team at Microsoft. They're cool people, but the what I like is that IIS7 is so

  687. GavinGee's Blog
    July 16, 2008

    All details relocated from the IIS.NET website: IIS7 is faster and more efficient than any other version

  688. GavinGee's Blog
    July 16, 2008

    All details relocated from the IIS.NET website: IIS7 is faster and more efficient than any other version

  689. links for 2008-07-17 « Praveen’s Blog
    July 17, 2008

    Pingback from  links for 2008-07-17 &laquo; Praveen&#8217;s Blog

  690. 2008 Pwnie Award nominees announced | Zero Day | ZDNet.com
    July 21, 2008

    Pingback from  2008 Pwnie Award nominees announced | Zero Day | ZDNet.com

  691. Vishal Sood
    July 21, 2008

    I have been recently reading about the entire RESTful web services and constantly looking at how we can

  692. Il blog del team MSDN Italia
    July 27, 2008

    Nuove funzionalit&#224; per IIS7 a supporto degli scenari video che vanno a sommarsi al Media Pack per

  693. Giuseppe Guerrasio
    July 27, 2008

    Nuove funzionalit&#224; per IIS7 a supporto degli scenari video che vanno a sommarsi al Media Pack per

  694. net framework redistributable package
    July 29, 2008

    Pingback from  net framework redistributable package

  695. How to Migrate from IIS 6 to IIS 7 - Global Point Forum
    August 5, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - Global Point Forum

  696. How to Migrate from IIS 6 to IIS 7 - Global Point Forum
    August 5, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - Global Point Forum

  697. How to Migrate from IIS 6 to IIS 7 - Global Point Forum
    August 5, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - Global Point Forum

  698. 木野狐(Neil Chen)
    August 7, 2008

    在vista上配置asp.net1.1,问题层出不穷。主要问题在于vs2003比较依赖于IIS.参考:www.cublog.cn/.../showart.php...

  699. 木野狐(Neil Chen)
    August 9, 2008

    在vista上配置asp.net1.1,问题层出不穷。主要问题在于vs2003比较依赖于IIS.参考:www.cublog.cn/.../showart.php...

  700. CodersBarn.com
    August 9, 2008

    SQL Server 2005 on Windows Server 2008

  701. How to Migrate from IIS 6 to IIS 7 - Global Point Forum
    August 9, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - Global Point Forum

  702. Using PHP in IIS Server-- Daily Gems
    August 13, 2008

    Pingback from  Using PHP in IIS Server-- Daily Gems

  703. Team Blogs at Microsoft
    August 14, 2008

    132 Microsoft Team blogs searched, 105 blogs have new articles in the past 30 days. 641 new articles

  704. Team Blogs at Microsoft
    August 14, 2008

    132 Microsoft Team blogs searched, 105 blogs have new articles in the past 30 days. 641 new articles

  705. DotNetKicks.com
    August 15, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  706. MHanif.Com - Blog » Blog Archive
    August 15, 2008

    Pingback from  MHanif.Com - Blog  &raquo; Blog Archive

  707. If broken it is, fix it you should
    August 19, 2008

    I know I'm a little late in the game, but I decided that after vacation it was finally time for me to

  708. Nazim's IIS Security Blog
    August 21, 2008

    About 2 months ago we released the beta for UrlScan v3.0 to address customer concerns with automated

  709. carlosag
    August 21, 2008

    Yesterday I was having a conversation with Anil Ruia who happens to be the ARR (Application Request Routing

  710. winkingzhang
    August 22, 2008

    YesterdayIwashavingaconversationwithAnilRuiawhohappenstobetheARR(ApplicationRequest...

  711. Demystifying The Code
    August 22, 2008

    ( click here for an index of the complete series, as well as supporting screencasts ) ( click here for

  712. Shadow Security » Microsoft actualiza URLScan para contrarrestar los ataques masivos sobre sus servidores
    August 22, 2008

    Pingback from  Shadow Security &raquo; Microsoft actualiza URLScan para contrarrestar los ataques masivos sobre sus servidores

  713. Function1
    August 23, 2008

    On my journey to get ALI Collab Notification working for us again, I came across this little gem: as far as I can tell, ALI Collab Notifications are broken out of the box when using IIS 6 (or 7) because...

  714. Lexapro weight.
    August 25, 2008

    Lexapro. Lexapro withdrawal.

  715. MiniNoticias » Blog Archive » Microsoft actualiza URLScan para contrarrestar los ataques masivos sobre sus servidores
    August 26, 2008

    Pingback from  MiniNoticias  &raquo; Blog Archive   &raquo; Microsoft actualiza URLScan para contrarrestar los ataques masivos sobre sus servidores

  716. Mike Borozdin's Blog
    August 27, 2008

    ASP.NET Myths Busted

  717. NACSE
    August 27, 2008

    A new view on Windows Vista - A developers perspective

  718. ?????????weblog » Blog Archive » ?????????ASP.NET?????????
    August 28, 2008

    Pingback from  ?????????weblog &raquo; Blog Archive   &raquo; ?????????ASP.NET?????????

  719. Russ' Tool Shed - Russ Fustino
    August 30, 2008

    Thanks for a great road trip in Jacksonville FL, Columbia SC and Des Moines Iowa… Here are the links

  720. Hiroshi Okunushi's Blog ☆ミ
    August 31, 2008

    今年は3日目に実施となった私のセッションですが、デモをやりきれませんでしたねー。お約束通り、ここで不足分も含め、カバーしていきますので適宜 ご覧いただければと思います。 まず、実施したセッションの内容を整理します。

  721. meadow.sekhu.net - land of the rising moo
    September 1, 2008

    Pingback from  meadow.sekhu.net - land of the rising moo

  722. NACSE
    September 1, 2008

    A new view on Windows Vista - A developers perspective

  723. TechNet Blog CZ/SK
    September 3, 2008

    Security News Inside the Windows Vista Kernel go.microsoft.com By Mark Russinovich,

  724. TechNet Blog CZ/SK
    September 3, 2008

    Security News Inside the Windows Vista Kernel go.microsoft.com By Mark Russinovich,

  725. How to Migrate from IIS 6 to IIS 7 - EXPERTS ADVICE FORUM
    September 8, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - EXPERTS ADVICE FORUM

  726. Technical RollUp
    September 26, 2008

    News Microsoft Internet Security and Acceleration Server and Intelligent Application Gateway 2007 The

  727. Technical RollUp
    September 26, 2008

    News Microsoft Internet Security and Acceleration Server and Intelligent Application Gateway 2007 The

  728. Dr. Tom Shinder’s Blog » Blog Archive » UrlScan 3.0 Released - Blocks SQL Injection Attacks
    September 28, 2008

    Pingback from  Dr. Tom Shinder&#8217;s Blog  &raquo; Blog Archive   &raquo; UrlScan 3.0 Released - Blocks SQL Injection Attacks

  729. Recent Links Tagged With "rewrite" - JabberTags
    September 30, 2008

    Pingback from  Recent Links Tagged With "rewrite" - JabberTags

  730. How to Migrate from IIS 6 to IIS 7 - EXPERTS ADVICE FORUM
    October 3, 2008

    Pingback from  How to Migrate from IIS 6 to IIS 7 - EXPERTS ADVICE FORUM

  731. BillS IIS Blog
    October 6, 2008

    I've heard several people ask where to buy IIS7 and Windows 2008. First, if you want to download and

  732. Anonymous
    October 6, 2008

    Sounds like a great product and something that is very beneficial like you noted in the content about having to go chase this and then go chase that.  The only problem I have is that I have not upgraded to Vista yet due to need for VB6, VS2003 and other applications that won't work on Vista.  How about those of us that are stuck with XP Pro due to Vista limitations?  Only supports Vista and Server 2008.  Why not XP Pro and Server 2003 too?  This all goes to my one very big and key issue with Microsoft, you all create some very beneficial programs, but you create them for the latest and greatest.  We all can't just upgrade instantly to the latest and greates though.

    Overall though, the MS Web Platform looks like it will be very beneficial to those that it supports.

  733. shados
    October 7, 2008

    Hi, I've been interested in the web editions of Windows Server ever since I first heard of it for WinServer 2003, as the price is more than reasonable. One thing I'm curious about however: I know it supports things such as Sharepoint, and you can do most things you'd expect a web app to do.

    Does that mean Team Foundation Server can be installed on it? I mean, it IS just a web app, but it integrates deep, so I'm curious if something would be missing (or if it would break an EULA or another)

  734. rakkimk
    October 7, 2008

    If you are a web deployment guru, and looking to reduce your burden of downloading lot of software, configuring


  735. October 7, 2008

    If you are a web deployment guru, and looking to reduce your burden of downloading lot of software, configuring

  736. Anonymous
    October 8, 2008

    Hi, I've been interested in the web editions of Windows Server ever since I first heard of it for WinServer 2003, as the price is more than reasonable. One thing I'm curious about however: I know it supports things such as Sharepoint, and you can do most things you'd expect a web app to do.

  737. Installer IIS , ASP.NET , Visual Web Developper , SQL Express et d’autres logiciels en une seule fois | Micka39
    October 8, 2008

    Pingback from  Installer IIS , ASP.NET , Visual Web Developper , SQL Express et d&rsquo;autres logiciels en une seule fois | Micka39

  738. Scott Hanselman's Computer Zen
    October 10, 2008
  739. ASPInsiders
    October 10, 2008

    Last year I noticed that there were 11 ways to get to my blog. Literally 11 different URLs and it wasn't

  740. Community Links 10/11/2008: URL Rewrite, ASP.NET, Extensibility, Diagnostics, WordPress: BillS IIS Blog
    October 12, 2008

    Pingback from  Community Links 10/11/2008: URL Rewrite, ASP.NET, Extensibility, Diagnostics, WordPress: BillS IIS Blog

  741. Dew Drop - October 12, 2008 | Alvin Ashcraft's Morning Dew
    October 12, 2008

    Pingback from  Dew Drop - October 12, 2008 | Alvin Ashcraft's Morning Dew

  742. DotNetKicks.com
    October 13, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  743. Windows Server team Blog
    October 13, 2008

    I've just read over on Bill Staple's IIS blog that the new DownloadCENTER is now live on IIS.net . This

  744. dlawlor
    October 14, 2008

    Bill-

    Thanks for the recognition, I try hard to help people get things up and running as easily as possible.  I appreciate the good words!

    Dave

  745. you've been HAACKED
    October 14, 2008

    Web Platform Installer

  746. Microsoft presenta Silverlight 2.0 e tenta la comunit?? Eclipse « marko’s weblog
    October 15, 2008

    Pingback from  Microsoft presenta Silverlight 2.0 e tenta la comunit?? Eclipse &laquo; marko&#8217;s weblog

  747. Anonymous
    October 15, 2008

    I'm new to PHP and recently setup my local machine with PHP and MySQL for doing development.  I was sort of stuck when I needed to post my work for the user to test and review.  After looking around a bit I found a site that hosts PHP and MySQL apps.  I was surprised that it was free - it seems they're offering the service at no cost until 2012.  At that point they'll change over to a fee-based service.  However, in the meantime, it's a great place to do anything from demo and sandbox right up to posting sites for real.

    Their pitch is as follows:

    "This is absolutely free, there is no catch. You get 350 MB of disk space and 100 GB bandwidth. They also have cPanel control panel which is amazing and easy to use website builder. Moreover, there is not any kind of advertising on your pages."

    Check it out using this link:

    www.000webhost.com/83188.html

    Important:  There's one catch in that you must make sure you visit the account every 14 days - otherwise the account is marked 'Inactive' and the files are deleted!!!

    Thanks and good luck!

  748. BillS IIS Blog
    October 15, 2008

    A few weeks ago I announced the availability of the Microsoft Web Platform Installer (Web PI) in Beta

  749. BillS IIS Blog
    October 15, 2008

    A few weeks ago I announced the availability of the Microsoft Web Platform Installer (Web PI) in Beta

  750. Weblogul lui Zoli
    October 16, 2008

    Ziceam acum două săptămâni că pe microsoft.com/web am publicat Web Platform Installer. Ei bine, de azi

  751. mvolo
    October 16, 2008

    Bill, this is a super valuable feature to add to the IIS platform!  It will help manage the configuration complexity and insure predictable results for people using these applications in the real world.  

    I only wish we had this when IIS 7.0 was being released, it would have made troubleshooting forum posts a lot easier :)

  752. Chris Knowlton's Blog
    October 17, 2008

    Yesterday, we released the new Microsoft Web Application Installer, or Web AI, at www.microsoft.com/web

  753. Bill Staples’ Blog: Quick Install of the World’s Most Popular Web Applications on IIS7 : Dragonfly Networks
    October 17, 2008

    Pingback from  Bill Staples&#8217; Blog:  Quick Install of the World&#8217;s Most Popular Web Applications on IIS7 : Dragonfly Networks

  754. Anonymous
    October 20, 2008

    i only wish that i can have this quick install of worlds most popular web application on IIS7

  755. Anonymous
    October 23, 2008

    i wish it could work on windows xp pro

  756. How to install PHP on IIS « Xinyustudio
    October 24, 2008

    Pingback from  How to install PHP on IIS &laquo; Xinyustudio

  757. wsspectacular
    October 24, 2008

    I recently deployed a SharePoint extranet using Microsoft Office Search Server Express 2008 (MSSX), which

  758. Hosam Kamel
    October 24, 2008

    After announcing Microsoft Web Platform Installer (Web PI) in Beta Bill Staples announcing another tool

  759. Hosam Kamel
    October 24, 2008

    After announcing Microsoft Web Platform Installer (Web PI) in Beta Bill Staples announcing another tool

  760. Anonymous
    October 27, 2008

    i only want to be able to access  IIS7

  761. Work at home business.
    October 28, 2008

    Work at home.

  762. Anonymous
    October 28, 2008

    Just reading this today. A very big thumbs up for the gr8 work on this web AI tool. I need to get the setup asap. Can someone provide the link to the download page. thanks a 'mill.

  763. BillS IIS Blog
    October 28, 2008

    I am excited to announce an innovative new IIS7 feature called “ IIS Smooth Streaming ”, which will be

  764. bills
    October 28, 2008

    Check it out here:  www.microsoft.com/.../WebApplicationInstaller.aspx

  765. Віктор Шатохін [MSFT]
    October 28, 2008

    Сегодня были сделаны следующие анонсы: IIS Smooth Streaming www.microsoft.com/.../10-28AdaptiveStreamingPR.mspx

  766. DotNetKicks.com
    October 30, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  767. IIS??? Web Deployment Tool Beta 2 Released: BillS IIS Blog
    October 30, 2008

    Pingback from  IIS??? Web Deployment Tool Beta 2 Released: BillS IIS Blog

  768. No1 Microsoft Fan
    October 30, 2008

    The Web Deployment team had a big ‘coming out’ party yesterday at the PDC and announced immediate availability

  769. Anonymous
    October 31, 2008

    This is seriously awesome!!!

    We were just about to write some script to automate deployment but now it's taken care of for us :)

  770. Schweizer IT Professional und TechNet Blog
    October 31, 2008

    Schauen Sie Videos über das Web? Diese Fähigkeit kann mit der Microsoft Technologie, mit Windows Media

  771. Preview: IIS7 Smooth Streaming extension im Einsatz zusammen mit Akamai | MS Tech News
    October 31, 2008

    Pingback from  Preview: IIS7 Smooth Streaming extension im Einsatz zusammen mit Akamai | MS Tech News

  772. barbiepurl
    November 1, 2008

    Great job wonderful and it is really going to be useful for all.

    ---------------

    Barbie Purl

    <a href="http://www.drivenwide.com"rel="dofollow">Consumer generated media</a>

  773. Technical RollUp
    November 1, 2008

    News Microsoft Internet information Server IIS’ Web Deployment Tool Beta 2 Released The Web Deployment

  774. Technical RollUp
    November 1, 2008

    News Microsoft Internet information Server IIS’ Web Deployment Tool Beta 2 Released The Web Deployment

  775. November 2008 - Technical Rollup Mail - Internet | MS Tech News
    November 1, 2008

    Pingback from  November 2008 - Technical Rollup Mail - Internet | MS Tech News

  776. nateirwin.net » Blog Archive » Windows Server 2008’s "Server Core" Functionality
    November 2, 2008

    Pingback from  nateirwin.net  &raquo; Blog Archive   &raquo; Windows Server 2008&#8217;s &quot;Server Core&quot; Functionality

  777. Swiss MSDN Team Blog
    November 3, 2008

    Last week Microsoft announced a new Web server technology, called Internet Information Services 7.0 (IIS7.0)

  778. Internet Information Services (IIS) 7.0 Smooth Streaming | MS Tech News
    November 3, 2008

    Pingback from  Internet Information Services (IIS) 7.0 Smooth Streaming | MS Tech News

  779. Como Funciona o Site Microsoft.com « .. DROPS LIGHT ..
    November 4, 2008

    Pingback from  Como Funciona o Site Microsoft.com  &laquo; .. DROPS LIGHT ..

  780. Adventures in IIS, Commerce and whatever else comes into my head.
    November 5, 2008

    You may have heard about the new tools available for getting up and running quickly on IIS 7 on Windows

  781. IIS7 URL Rewrite Extension is finished ??? download now!: BillS IIS Blog
    November 10, 2008

    Pingback from  IIS7 URL Rewrite Extension is finished ??? download now!: BillS IIS Blog

  782. 2008 November 11 - Links for today « My (almost) Daily Links
    November 11, 2008

    Pingback from  2008 November 11 - Links for today &laquo; My (almost) Daily Links

  783. Find New IIS7 Extensions at http://www.iis.net/extensions/: BillS IIS Blog
    November 11, 2008

    Pingback from  Find New IIS7 Extensions at http://www.iis.net/extensions/: BillS IIS Blog

  784. No1 Microsoft Fan
    November 11, 2008

    Goodies&#160; :-) The Microsoft IIS team is doing a great job the with IIS7 modules. They’ve created

  785. No1 Microsoft Fan
    November 11, 2008

    Goodies&#160; :-) The Microsoft IIS team is doing a great job the with IIS7 modules. They’ve created

  786. wisecarver
    November 11, 2008

    blogs.windowsclient.net/.../new-iis7-extensions.aspx

  787. Dew Drop - November 12, 2008 | Alvin Ashcraft's Morning Dew
    November 12, 2008

    Pingback from  Dew Drop - November 12, 2008 | Alvin Ashcraft's Morning Dew

  788. web design studio
    November 13, 2008

    Thanks for post! Good listing!

    Ivan, http://web-impress.com

  789. DotNetKicks.com
    November 14, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  790. IIS7 Request Routing and Load Balancer Release Candidate Available for Download: BillS IIS Blog
    November 14, 2008

    Pingback from  IIS7 Request Routing and Load Balancer Release Candidate Available for Download: BillS IIS Blog

  791. Anonymous
    November 14, 2008

    Isn't this just what you would do with an F5?, not sure I like the idea of the "web server" being responsible for routing, LB, HA, etc.

  792. Reflective Perspective - Chris Alcock » The Morning Brew #223
    November 14, 2008

    Pingback from  Reflective Perspective - Chris Alcock  &raquo; The Morning Brew #223

  793. IIS7 Request Routing and Load Balancer Release Candidate Available … | bestwebhostingservices.com
    November 14, 2008

    Pingback from  IIS7 Request Routing and Load Balancer Release Candidate Available &#8230; | bestwebhostingservices.com

  794. Pou’s IT Blog » Windows XP 架設 SMTP Server
    November 18, 2008

    Pingback from  Pou&#8217;s IT Blog &raquo; Windows XP &#26550;&#35373; SMTP Server

  795. Happy Birthday to Barry Wise, SEO Rock Star - Barry Wise NJ SEO and Marketing Consultant
    November 19, 2008

    Pingback from  Happy Birthday to Barry Wise, SEO Rock Star - Barry Wise NJ SEO and Marketing Consultant

  796. Why IIS7? Top 12 cool features??? : BillS IIS Blog : IIS.net
    November 21, 2008

    Pingback from  Why IIS7? Top 12 cool features??? : BillS IIS Blog : IIS.net

  797. Anonymous
    November 21, 2008

    good stuff

  798. BillS IIS Blog
    November 24, 2008

    In case you haven’t already heard the news, ASP.NET will now be enabled on Windows Server Core starting

  799. DotNetKicks.com
    November 24, 2008

    You've been kicked (a good thing) - Trackback from DotNetKicks.com

  800. LyalinDotCom
    November 24, 2008

    This is REALLY excellent news. Great job teams!

  801. Anonymous
    November 24, 2008

    I don't believe xp is supported because IIS 7 can't run on xp!

  802. Anonymous
    November 24, 2008

    Bill that is great news.  Will Windows 7 also have the .NET Framework built in?  How will updates to the framework be maintained since it is headless?

    Thanks,

    Greg Finzer

    Kellerman Software

    Cutting Edge Email Validation

    www.kellermansoftware.com/p-37-NET%20Email%20Validation.aspx

  803. Microsoft Web Platform Installer Release Candidate ??? Now works with XP and Windows 2003! : BillS IIS Blog : IIS.net
    November 24, 2008

    Pingback from  Microsoft Web Platform Installer Release Candidate ??? Now works with XP and Windows 2003! : BillS IIS Blog : IIS.net

  804. ASP.NET supported on Server Core - Windows Server 2008 R2 : BillS IIS Blog : IIS.net
    November 24, 2008

    Pingback from  ASP.NET supported on Server Core - Windows Server 2008 R2 : BillS IIS Blog : IIS.net

  805. bills
    November 24, 2008

    Greg,

    Yep, the .NET framework will be built-in to Windows 7 (the server released of Win7 is called Windows Server 2008 R2, and will also have .NET fx built-in).  Windows Update works on Windows Server Core just the same as with standard server, so updates are applied in the same way.  See this blog for more info: blogs.technet.com/.../default.aspx

  806. bills
    November 24, 2008

    XP is supported, but Web PI installs IIS 5.1 on XP...which is the supported version of IIS on that platform.  Likewise, it installs IIS6 on Windows 2003.

  807. ASP.NET supported on Server Core - Windows Server 2008 R2 : BillS … | bestwebhostingservices.com
    November 24, 2008

    Pingback from  ASP.NET supported on Server Core - Windows Server 2008 R2 : BillS &#8230; | bestwebhostingservices.com

  808. Anonymous
    November 24, 2008

    What about XP Home? Will IIS 5.1 be installed on XP Home?

  809. bills
    November 24, 2008

    Unfortunately XP home is not supported.  IIS 5.1 is only available on XP Professional and above.  If your computer can run it, I recommend going to Vista Premium or above, where IIS7 is available.

  810. Anonymous
    November 24, 2008

    Will MSSQL be supportet as well in core mode now that we have a subset of .net ?

  811. AMD Talk » Microsoft Web Platform Installer Release Candidate ??? Now works …
    November 24, 2008

    Pingback from  AMD Talk &raquo; Microsoft Web Platform Installer Release Candidate ??? Now works &#8230;

  812. Microsoft Web Platform Installer Release Candidate ??? Now works … | kozmom
    November 24, 2008

    Pingback from  Microsoft Web Platform Installer Release Candidate ??? Now works &#8230; | kozmom

  813. bills
    November 24, 2008

    RE: SQL Server... we're working on it...nothing to announce yet

  814. Anonymous
    November 25, 2008

    iis7.0 no run for  xp

  815. Anonymous
    November 25, 2008

    Thank you for listening, as I said before, what we need is a complete blackbox server administred completely from an external computer via an external server manager. The Gui has no business on a server what so ever.

  816. Anonymous
    November 25, 2008

    Initial attempt to run the wpilauncher.exe generate:

    Cannot load product.xml from go.microsoft.com/fwlink

    which in turn renders:

    www.microsoft.com/.../WebProductList_RC.xml

    I suspect my XP host lacks <insert components here?>

  817. Dew Drop - November 25, 2008 | Alvin Ashcraft's Morning Dew
    November 25, 2008

    Pingback from  Dew Drop - November 25, 2008 | Alvin Ashcraft's Morning Dew

  818. Dew Drop - November 25, 2008 | Alvin Ashcraft's Morning Dew
    November 25, 2008

    Pingback from  Dew Drop - November 25, 2008 | Alvin Ashcraft's Morning Dew

  819. Things to do overload | Where's Lou
    November 25, 2008

    Pingback from  Things to do overload | Where's Lou

  820. ASP.NET Français Blogs
    November 25, 2008

    Information intéressante que je vous partage, et que j’en profite pour me noter mentalement pour une

  821. Madden NFL 09 E3 2008 PS3 Trailer
    November 26, 2008

    Pingback from  Madden NFL 09 E3 2008 PS3 Trailer

  822. Anonymous
    November 26, 2008

    I just installed Win 2003 Server Enterprise clean, but this error immediately pops up after running the install:

    The 'META' start tag on line 3 does not match the end tag of 'HEAD'. Line 4, position 3.

    Then it exits.

  823. Kostenloser WEB Space
    November 27, 2008

    Andere haben Werbebanner in gratis Web Spaces vorgesehen.

  824. ma_khan
    November 27, 2008

    Bill,

    Somethings that confuses me is the word sub-set of .Net framework. Will we be able to use all the features with in ASP.Net after deployment ??

    Also, now that we can run Windows PowerShell within Server Core, how do we go about using the IIS 7 PowerShell Provider... is it the same way as in standard windows server 2008

    Regards,

    MA Khan

  825. 4sysops - Windows Server 2008 R2 new features - the complete list - Part 3: IIS 7.5 and Performance
    November 27, 2008

    Pingback from  4sysops -   Windows Server 2008 R2 new features - the complete list - Part 3: IIS 7.5 and Performance

  826. Anonymous
    November 28, 2008

    このサイトは``ああ

  827. Anonymous
    November 28, 2008

    Japan is not small people

  828. Microsoft Web Platform Installer Release Candidate ??? Now works … | deleteblog.com
    November 29, 2008

    Pingback from  Microsoft Web Platform Installer Release Candidate ??? Now works &#8230; | deleteblog.com

  829. bills
    November 29, 2008

    Those of you experiencing issues, please also post this information to forums.iis.net/1155.aspx.  thanks!

  830. bills
    November 29, 2008

    ma_khan

    Yes, ASP.NET and powershell should work just the same as on standard server.  By 'subset', Microsoft means that the UI-aspects of the framework, such as Winforms or WPF, are not supported on server core, just as the Shell and other UI administration tools are not supported on the local server (though remote administration from them works fine).  Hope this helps clarify -

    bill

  831. microsoft sql server | SUN.com
    November 29, 2008

    Pingback from  microsoft sql server  | SUN.com

  832. iis | Apple.com
    November 29, 2008

    Pingback from  iis  | Apple.com

  833. Anonymous
    December 1, 2008

    I've installed Visual C#Express and .NET Framework 3.51. But running the MS Web Platform Installer under XP SP2+ (german) produces an german error-message. On english: "The 'META' start tag on line 3 does not match the end tag of 'HEAD'. Line 4, position 3". Then it exits. Reading the other comments it should be a known bug, any solution?

  834. Como Instalar PHP sobre IIS7 at Guerratopia
    December 1, 2008

    Pingback from  Como Instalar PHP sobre IIS7 at Guerratopia

  835. Anonymous
    December 2, 2008

    I tried to install WebPI on XP sp3, All installation was good.

    but I got error of "Cannot load Microsoft.Web.Administration, Version=7.0.0.0, Culture=neutral, PulicKeyToken=....

    when I click the server listed in Connections at IIS Manager.

    Absoluttely I logged in as Administrator, ...

    Someone had the same problem, but no right answers, see forums.iis.net/.../1868520.aspx

  836. choyer
    December 2, 2008

    Thanks for the great feedback.  We've investigated the issue, "The 'META' start tag on line 3 does not match the end tag of 'HEAD'. Line 4, position 3."  This is an issue on our side that we will be resolving in our next release.

    As a workaround in the meantime you should go to your local app data directory and delete any xml files with "productCache" in the title.  On Windows 2003 the location is here:  <%systemdrive%>\Documents and Settings\<username>\Application Data\Microsoft\Web Platform Installer .  If this still does not fix your issue please report it on the forums and we can continue to help you there!  forums.iis.net/1155.aspx Thanks.

  837. Anonymous
    December 7, 2008

    I also had this META tag error on W2K8 (x64) - resolved by deleting the productCache file in AppData\Local\Microsoft'Web Platform Installer

  838. Start-up your Web business with Microsoft BizSpark : BillS IIS Blog : The Official Microsoft IIS Site
    December 8, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS Blog : The Official Microsoft IIS Site

  839. Start-up your Web business with Microsoft BizSpark : BillS IIS … | kozmom
    December 8, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230; | kozmom

  840. Anonymous
    December 8, 2008

    Hey Bill,

    If I understand this correctly, it is not intented for consultants, is it? If I have a business that develops custom solutions for other business I can't use this, right?

    Does BizSpark have a requirement similar to what the Empower has, where you need to develop a commercial product using Microsoft technologies? How will that process look like?

    Thanks in advance,

    Tom

  841. AMD Talk » Start-up your Web business with Microsoft BizSpark : BillS IIS …
    December 8, 2008

    Pingback from  AMD Talk &raquo; Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230;

  842. Start-up your Web business with Microsoft BizSpark : BillS IIS … | crmcourses.com
    December 8, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230; | crmcourses.com

  843. Start-up your Web business with Microsoft BizSpark : BillS IIS … | bestwebhostingservices.com
    December 9, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230; | bestwebhostingservices.com

  844. Start-up your Web business with Microsoft BizSpark : BillS IIS … | forexintraday.com
    December 9, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230; | forexintraday.com

  845. Start-up your Web business with Microsoft BizSpark : BillS IIS … | forexintraday.com
    December 9, 2008

    Pingback from  Start-up your Web business with Microsoft BizSpark : BillS IIS &#8230; | forexintraday.com

  846. Anonymous
    December 9, 2008

    what are the costs involved for the company for first 3 years. Would be great if there is a break down. Also will Microsoft own any software or other property of the business by providing this service?

  847. Anonymous
    December 9, 2008

    We enrolled in BizSpark about 2 weeks after it was announced.  It's been exactly as advertised.  We set up a Windows Server 2008 server, added SQL Server 2008 and Team Foundation Server 2008, and installed Visual Studio 2008 Team Edition Team Suite (I think that's the name) on 3 developer machines.  All for $100 due 3 years from now?  Can't beat *that* deal with a stick.

  848. Anonymous
    December 9, 2008

    The revenue requirement should increase some. Some start-ups may make more than a million in revenue but the expenses makes it way less. There is always open-source and developers willing to wrestle with help-forums if Microsoft does not help them.

  849. bills
    December 9, 2008

    Tom:  if you "sell" a product or service to your customers, you likely qualify.  If you "sell" your labor consulting for another company, then BizSpark is probably not the right program for you.

    Anonymous:  RE: costs.  At the end of the three years you owe Microsoft USD$100 if you are still using the software.  That is the only charge for being in the program, and Microsoft assumes no ownership of the company or the products / services you build.

  850. kkfrost
    December 10, 2008

    Hello Bill,

    I'm very interested in this opportunity but there aren't really any of the Network partners in my area.  I've tried using the contact button to reach you and submitted for assitance the other day with no reply.

    If you aren't close to any of the partners listed, what's the best way to get the ball rolling on this?

    Thanks.

  851. bills
    December 10, 2008

    Kris, and to all those who have sent me mail interested in the program.  Thanks for your interest!  Due to overwhelming response I am a bit backed up, but I will process your requests the next few days.  You should be hearing from my shortly!  Thanks!

  852. Anonymous
    December 10, 2008

    Does the business have to be Technology oriented. I have been developing a website geared towards commerce but continue to run into short falls. Alos what roll will the sponsor play it this opportunity.

  853. bills
    December 10, 2008

    Hi Anonymous - the start-up business does not have to target 'technology' as a solution, just offer products or software as a service to their customers (as opposed to consulting services where the labor is for sale).  The sponsor simply nominates interested parties into the program.  Those who sign-up are responsible for self-validating that they meet the eligibility requirements.  

  854. Anonymous
    December 11, 2008

    I have signed up to the Bizspark program and was wondering if there was any special licensing available for Virtual Earth.

    I have seen blogs.microsoft.fr/.../25120.aspx which suggests a fee of around 6500€ a year which for our startup is a little steep. I have some really good ideas that could definately improve our product using Virtual Earth but until I have approximately 50 customers the cost will be too high.

    Regards

    Russell

  855. bills
    December 11, 2008

    Russell, thanks for the feedback!  We'll work with the Virtual Earth team to see if we can get some kind fo discount for BizSpark members.  While we don't have anything right now, you may have seen there are other Live service discounts available for BizSpark members:

    Bizspark and Cloud Services

    Web services and platforms are a growing, and rapidly evolving, part of software solutions. Processing “in the cloud”  provides capabilities as diverse as mapping, identity management, storage and spam filtering. These capabilities can complement existing applications or provide the basis for completely new ones.  Bizspark includes access to Microsoft’s current services and will continue to add new ones as they arrive.

    Bizspark today includes access to Live Platform Services and also to the Community Technical Preview (CTP) of Microsoft’s new Azure Services Platform that was announced on Oct xx at the Microsoft Professional Development Conference (PDC).

    The Azure Services Platform is the collection of Foundational, Developer and Live Platform Service such as Windows Azure, Live Mesh, Compute Services, Storage Services, Workflow Services, Identity Services, Connectivity Services, SQL Data Services. All developers will have access to the Azure Services Platform developer tools which includes the local development fabric. The Windows Azure operational capacity will be limited during the initial CTP, but will expand rapidly. Bizspark participants, will receive preferential access to the Azure Services Platform CTP.  To sign up for the CTP, Bizspark  participants should enroll and profile with the same LiveId they used to enroll in Bizspark . During the CTP, access will be assessed and assigned on a company-by-company basis and will be confirmed as capacity becomes available.

    Live Platform Services (LiveID, messaging, etc) are mostly free up to certain limits and are available at http://dev.live.com . Bizspark participants should enroll using their BizSpark LiveID and will qualify for higher limits for one year of use. Specifically:

    • 1M Unique Users (UU)/month for personal data API’s and 1M UU/month for Communications services (like WLML) for US

    • 1M UU/month for personal data API’s and 500K UU/month for communications services everywhere else

  856. rpooley
    December 11, 2008

    Thanks for that Bill. I have been meaning to look at the Azure Services Platform.

    Typically we are beginning to sign up clients so migration to the Azure Platform may have to wait until we have a stable release.

    I made the mistake of implementing some nice features using Virtual Earth presuming that the licensing would not be a problem, It wasn't till I was thinking about releasing it that I checked the licensing! Doh.

    This may be a big ask but if I was thinking about migrating our application to the Azure platform what kind of time would be required? We are using SQL Server 2008 - Linq to SQL and ASP.NET MVC.

  857. bills
    December 11, 2008

    The good news is Azure is great for building ASP.NET applications.  It fully supports ASP.NET framework running in medium trust levels.  It currently does not support SQL Server directly in Azure, but does support SQL data service through SSDS.  See www.microsoft.com/.../data.mspx

  858. Віктор Шатохін [MSFT]
    December 12, 2008

    Давно мечтаешь создать что-то новое? Есть идея и есть желание ее реализовать? Тогда тебе в BizSpark.

  859. Віктор Шатохін [MSFT]
    December 12, 2008

    Давно мечтаешь создать что-то новое? Есть идея и есть желание ее реализовать? Тогда тебе в BizSpark.

  860. ?????????weblog » Blog Archive » ?????????ASP.NET?????????
    December 13, 2008

    Pingback from  ?????????weblog &raquo; Blog Archive   &raquo; ?????????ASP.NET?????????

  861. blogring.org
    December 13, 2008

    Related Blog Entries

  862. blogring.org
    December 13, 2008

    Related Blog Entries

  863. Сергей Лутай
    December 15, 2008

    В наше время трудно представить интернет без видео-контента. И с каждым днем его становится все больше

  864. IIS7??????PHP?????????LAMP?????????100?????? at 5IVI4I_I_60Y
    December 16, 2008

    Pingback from  IIS7??????PHP?????????LAMP?????????100??????  at 5IVI4I_I_60Y

  865. IIS7??????PHP?????????LAMP?????????100?????? at 5IVI4I_I_60Y
    December 16, 2008

    Pingback from  IIS7??????PHP?????????LAMP?????????100??????  at 5IVI4I_I_60Y

  866. blogring.org
    December 16, 2008

    fastcgi+iisに関するブログをまとめています。

  867. Anonymous
    December 17, 2008

    while create a asp.net website on local host then it is displaying following messge

    unable to create web site 'http://localhost/website'. Cannot access the web site's disk path 'Website'.

    sushilkin@hotmail.com

  868. Anonymous
    December 18, 2008

    Same on Vista Business x32.

  869. stimpy77
    December 19, 2008

    How long will this offer be available?

    I asked this at a local user group (AZGroups) meeting but the answer I was given was "as I said before, the membership lasts for 3 years", which isn't what I asked.

    I need to know how long the offer is available because I *do plan* to enter into business selling online services and making heavy use of .NET to do so, so I could really benefit, but it may not be for a year or so. I'd like to know that I'm safe if I don't act right now, prematurely. Greater to my concern is that the business plan has not fully materialized so I fear not being accepted into the program if I attempt to try right now, and I make a terrible bullsh***er. :)

    Jon

  870. Anonymous
    December 20, 2008

    Hi Bill,

    2 quick questions:

    1: When you say, "in business for less than 3 years" when do you start the count? For example, we incorporated last year, but during that time we were still developing our application. We didn't start selling it until this year.

    2. After 3 years, you wrote, "Startups can continue to use the development tools they previously obtained through the program."

    I assume that means we can keep the software free-of-charge and continue using it? Meaning we don't have to pay for new development licenses?

    (Of course hopefully we'll have made enough to purchase it by then, but I would like to plan for any future budget expenditures as well :))

    Thanks for the help!

  871. Anonymous
    December 21, 2008

    Hi,

    Does the business have to be developing web software?  Can it be a windows application sold over the internet?

    Thanks

  872. Anonymous
    December 23, 2008

    Hi,

    I am developing a Windows application.  Would I be eligible for BizSpark?  Also, what exactly does the BizSpark Startup Program Guide mean when it says "How long can I participate in BizSpark?

    For three years (renewed annually), unless the Startup goes public..." (the goes public part)?  What does it mean "to go public"?

  873. Anonymous
    December 24, 2008

    same meta error on win 2003 server web edition and win 2008 server web edition. workaround doesn't work as there is no such directory present!

  874. Anonymous
    December 27, 2008

    Bill, What I and I think a lot of business people need is a quick way to get an ecommerce suite of apps up and running without depending on a lot of IT people. For example, I would like to setup a web store that accepts PayPal and Amazon payments, plus SEO, RSS, etc. so I can sell downloadable videos, T-shirts, etc.. Each product would have customer ratings and comments, like Magento offers for PHP.

  875. Anonymous
    December 29, 2008

    Hi Jon,

    We don't have an end date planned for the program, so for now it will be available for the foreseeable future.  We're waiting to see what the response to the program is and hear feedback from members to determine effectiveness.  thanks,

    bill

  876. bills
    December 29, 2008

    Re "in business 3 years" I would think it is from the time you start doing business (eg selling your product or service).

  877. Crystal Reports 2008, ASP.Net and impersonation « Serge’s Technology View
    December 30, 2008

    Pingback from  Crystal Reports 2008, ASP.Net and impersonation &laquo;  Serge&#8217;s Technology View

  878. Happy Birthday to Barry Wise, SEO Rock Star
    December 31, 2008

    Pingback from  Happy Birthday to Barry Wise, SEO Rock Star

  879. Anonymous
    January 1, 2009

    I'd like to suggest that the license be amended so that the requirements are: 'You can use the software obtained through the BizSpark program for three years from the date you enroll.'

    Eliminate the company in business for < 3 years requirement.

  880. Anlan Blog » Blog Archive » ASP Classico o ASP.NET ?
    January 3, 2009

    Pingback from  Anlan Blog  &raquo; Blog Archive   &raquo; ASP Classico o ASP.NET ?

  881. BillS IIS Blog
    January 5, 2009

    I was reminded the other day just how many classic ASP applications and developers there are out there

  882. Technical RollUp
    January 6, 2009

    News Microsoft Internet information Server Start-up your Web business with Microsoft BizSpark Starting

  883. Technical RollUp
    January 6, 2009

    News Microsoft Internet information Server Start-up your Web business with Microsoft BizSpark Starting

  884. How to Run Windows & IIS in the Cloud on Amazon EC2 (in 15 mins … | Legal Webmastering
    January 13, 2009

    Pingback from  How to Run Windows &amp; IIS in the Cloud on Amazon EC2 (in 15 mins &#8230; | Legal Webmastering

  885. How to Run Windows & IIS in the Cloud on Amazon EC2 (in 15 mins) : BillS IIS Blog : The Official Microsoft IIS Site
    January 13, 2009

    Pingback from  How to Run Windows &amp; IIS in the Cloud on Amazon EC2 (in 15 mins) : BillS IIS Blog : The Official Microsoft IIS Site

  886. Anonymous
    January 13, 2009

    thanks for the post. this is great for getting a box/machine set up and running.

  887. dlawlor
    January 13, 2009

    Great Article Bill - I am hoping also that Amazon moves quickly to  implement IIS 7

    Dave

  888. Anonymous
    January 14, 2009

    i thought 2003 did use iis7... hmm... at least its a fully featured 6 if not allowing multiple sites etc.

  889. bills
    January 14, 2009

    Note: Windows 2003 includes IIS6 and allows for as many web sites as you want.

  890. Anonymous
    January 14, 2009

    The killer for me on this is price.  $800/mo for a low-end windows server is hard to justify.

  891. How to Run Windows, IIS and ASP.NET in the Cloud on Amazon EC2 (in …
    January 14, 2009

    Pingback from  How to Run Windows, IIS and ASP.NET in the Cloud on Amazon EC2 (in &#8230;

  892. Anonymous
    January 14, 2009

    Very interesting and helpful! Thanks.

    Does anyone know how the costs are computed? Is the meter running as long as the instance is running? Or only when the CPU is accessed? I'm a little confused.

  893. Weblogul lui Zoli
    January 14, 2009

    Cică durează 15min. Detalii aici . Bill Staples ne promite că va scrie despre avantajele și dezavantajele

  894. How to Run Windows, IIS and ASP.NET on Amazon EC2 (in 15 mins) | IT Management and Cloud Blog
    January 14, 2009

    Pingback from  How to Run Windows, IIS and ASP.NET on Amazon EC2 (in 15 mins)  | IT Management and Cloud Blog

  895. Cloud Droplets #42 Monday is a Great Day for a Cloud Press Release | IT Management and Cloud Blog
    January 14, 2009

    Pingback from  Cloud Droplets #42 Monday is a Great Day for a Cloud Press Release | IT Management and Cloud Blog

  896. Ramezanpour
    January 14, 2009

    I checked it out in a glance and it was great.

    Thanks for the post.

  897. Novidade na Hospedagem Windows 2008: m??dulo URL Rewrite | Blog do UOL HOST
    January 14, 2009

    Pingback from  Novidade na Hospedagem Windows 2008: m??dulo URL Rewrite | Blog do UOL HOST

  898. Anonymous
    January 14, 2009

    If they lowered the cost and got windows server 2008 and sql server 2008 then they would get mass adoption

  899. Anonymous
    January 14, 2009

    Anyone know if it is possible to buy our own windows web server 2008 for 500 and sql server standard 2008 for about 1000 and then somehow put those up on amazon ec2? Is this possible and if it is would it be a lower monthly cost because I supplied my own licensed windows server 2008 and sql server 2008??? Thanks for any perspective and great tutorial.

  900. Anonymous
    January 14, 2009

    It's too costly. I can get it hosted at a datacenter for a much lower price.

  901. Anonymous
    January 14, 2009

    The problem with their service is that if the instance fails for whatever reason, all data on the instance is wiped out.  You need to use Elastic Block Storage for any data you want to hang around if and when the instance blows up.  Elastic Block Storage is an additional expense, and it is slower than the disks (it gets charged on both data storage per month, and I/O calls).  So you need to create a volume of Elastic Block Storage and associate it to the instance.

    To get set up properly you need to create an instance and configure the OS exactly how you need it, then image that instance.  Then you need to buy some Elastic IP addresses, or when and if the instance blows up you get randomly reassigned a new IP address.  This is also an additional expense.  Furthermore, there is no means to automatically map the IP to the instance, or have the instance automatically reset itself and reload its image if and when it dies.

    This is not a reliable solution for anything but an off-site development workstation at this time.  It is not viable for a production system.

  902. Anonymous
    January 14, 2009

    thanks.

  903. DotNetShoutout
    January 15, 2009

    Thank you for submitting this cool story - Trackback from DotNetShoutout

  904. Anonymous
    January 15, 2009

    interested in this.. does it apply to users from Asia as well?

  905. Anonymous
    January 15, 2009

    I received this tidbit from an Amazon Web Services representative when inquiring about Windows Server 2008.

    "Thank you for contacting Amazon Web Services. Although we are currently only able to support Windows Sever 2003, we are working to add support for Windows Server 2008 also. We anticipate being able to offer Windows Server 2008 early this year, although there are no specific dates I can provide at this point. Thank you for your interest in Amazon EC2."

  906. Cloud Droplets #43 What do Clouds, Mac Trucks, and Black Sabbath have to do with each other? | IT Management and Cloud Blog
    January 15, 2009

    Pingback from  Cloud Droplets #43 What do Clouds, Mac Trucks, and Black Sabbath have to do with each other?  | IT Management and Cloud Blog

  907. Pages tagged "how-to"
    January 15, 2009

    Pingback from  Pages tagged "how-to"

  908. 4sysops - Virtual Machine Host Deployment – Hyper-V Live Migration – Windows on Amazon EC2 – Wireshark 1.1.2
    January 15, 2009

    Pingback from  4sysops -   Virtual Machine Host Deployment &ndash; Hyper-V Live Migration &ndash; Windows on Amazon EC2 &ndash; Wireshark 1.1.2

  909. Anonymous
    January 15, 2009

    Thank you, an excellent article, wish I had found it sooner, but it still saved me time.  Excellent, excellent, Excellent !!!

  910. Anonymous
    January 16, 2009

    FYI - Mosso is part of Rackspace Cloud Hosting division and offers Windows Server 2008/IIS7.  Also they allow you to run PHP5  Linux/Apache servers as well. Your choice.  And there is no need to add servers at peak times, this is done automatically.  So you only pay for what you need, when you need it.

  911. qbernard
    January 18, 2009

    really in 15mins ? looks longer than that :)

  912. Vista Basic Home Edition - need IIS | keyongtech
    January 18, 2009

    Pingback from  Vista Basic Home Edition - need IIS | keyongtech

  913. Makeing exstentions work on vista ultimate ASP or PHP (MIME extensions issue) | keyongtech
    January 18, 2009

    Pingback from  Makeing exstentions work on vista ultimate ASP  or PHP (MIME extensions issue) | keyongtech

  914. Forms in Expression Web - Page 2 | keyongtech
    January 18, 2009

    Pingback from  Forms in Expression Web - Page 2 | keyongtech

  915. Enabling ASP Classic error messages in IIS7 and Windows Web Server 2008 | Web Hosting and Domains
    January 19, 2009

    Pingback from  Enabling ASP Classic error messages in IIS7 and Windows Web Server 2008 | Web Hosting and Domains

  916. Vista Ultimate IIS und PHP | hilpers
    January 20, 2009

    Pingback from  Vista Ultimate IIS und PHP | hilpers

  917. Ken Schaefer
    January 21, 2009

    Bill Staples has let the cat out of the bag. IIS 7.0 has a new, comprehensive configuration file reference

  918. Now Online: Comprehensive IIS7 Technical Reference : BillS IIS Blog : The Official Microsoft IIS Site
    January 21, 2009

    Pingback from  Now Online: Comprehensive IIS7 Technical Reference : BillS IIS Blog : The Official Microsoft IIS Site

  919. Anonymous
    January 21, 2009

    Can anyone explain me about how the ASP.NET application files stored in Amazon EC2 and how to upload the image files dynamically to Amazon S3. And explain me how Amazon EC2, Amazon SimpleDB and Amazon S3 linked each other.

  920. No1 Microsoft Fan
    January 21, 2009

    If you’ve ever tried to find information on how to install a particular IIS7 feature, or how to configure

  921. Problema IIS | hilpers
    January 21, 2009

    Pingback from  Problema IIS | hilpers

  922. Microsoft Partners With Zend | keyongtech
    January 21, 2009

    Pingback from  Microsoft Partners With Zend | keyongtech

  923. Felix Wang | Evangelizing the Next Web
    January 21, 2009

    [ IISBlog ] 如果你四处彷徨,追寻如何安装II7某个特性、或者使用IIS Manager、AppCmd.exe、Microsoft.Web.Administration或WMI来配置IIS7,那么看好了:

  924. Vista, IIS7 & Expression Web Designer | keyongtech
    January 21, 2009

    Pingback from  Vista, IIS7 &amp; Expression Web Designer | keyongtech

  925. IIS7????????????????????????: iis.net/ConfigReference | Coded Style
    January 21, 2009

    Pingback from  IIS7????????????????????????: iis.net/ConfigReference | Coded Style