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. Oli
    October 20, 2006
    I really like the cleaner look, and how useful this information would be. I think people often end up searching around and aggregating information from various places to diagnose a problem. It looks like you're providing all of this (and from a trusted source). It's also very approachable and easy to look at. You're providing lots of detail, but it doesn't feel like information overload due to breaking up the sections in the design. Great work!
  47. 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.
  48. 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?
  49. 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.
  50. 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.

  51. Hiroshi Okunushi's blog
    October 22, 2006

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

  52. Hiroshi Okunushi's blog
    October 22, 2006

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

  53. 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?
  54. 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!

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

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

  56. 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 !!!
  57. 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?

  58. 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.

  59. 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.
  60. 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. :)

  61. 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…
  62. 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 ...
  63. 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

  64. BillS' IIS Blog
    October 31, 2006

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

  65. All About Interop
    October 31, 2006

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

  66. alexbarnett.net blog
    October 31, 2006

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

  67. vbgamer45
    October 31, 2006
    This is great news. I have been waiting for improved support for PHP for IIS and now is fast and stable this makes me very happy. Keep up the good work!
  68. 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

  69. 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...

  70. 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...

  71. 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

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

    IIS7 の FastCGI は激速らしい

  74. bills
    November 1, 2006

    Mischa: I certainly hope so!

  75. Mike Moore
    November 1, 2006
    Hey Bill, this is great news. Have you guys benchmarked Ruby on Rails performance on IIS7 using FastCGI?
  76. 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.

  77. 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.

  78. 菊池 Blog
    November 1, 2006

    re: IIS7 の FastCGI は激速らしい

  79. Fiorano.net
    November 2, 2006

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

  80. JrzyShr Dev Guy
    November 2, 2006

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

  81. TrackBack
    November 2, 2006
  82. 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......

  83. scottgu
    November 3, 2006

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

  84. pablo
    November 4, 2006

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

  85. 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

  86. TrackBack
    November 7, 2006
  87. BillS' IIS Blog
    November 8, 2006

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

  88. 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

  89. 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

  90. 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.

  91. 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.

  92. 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

  93. 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

  94. ScottGu's Blog
    November 9, 2006

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

  95. 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

  96. DotNetKicks.com
    November 9, 2006

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

  97. 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

  98. 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.

  99. scottgu
    November 10, 2006

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

  100. 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

  101. 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

  102. Windows Server Division WebLog
    November 17, 2006

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

  103. 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 ...

  104. 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 ...

  105. 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のスクリプトマッピングを追加する ...

  106. 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

  107. Hiroshi Okunushi's blog
    December 4, 2006

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

  108. iis
    December 11, 2006

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

  109. iis
    December 11, 2006

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

  110. 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

    . )

  111. 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"

  112. 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

  113. 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

  114. K. Scott Allen
    December 19, 2006

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

  115. 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

  116. 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?

  117. TobinTitus
    December 28, 2006

    Too cool!

  118. Shani elharrar
    December 30, 2006

    Thanks. thats nice.

  119. Hoster Poster
    January 5, 2007

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

  120. 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...

  121. 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??

  122. 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

  123. 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

  124. cnblogs.com
    January 18, 2007

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

  125. cnblogs.com
    January 19, 2007

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

  126. Ring
    January 19, 2007

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

  127. Ring
    January 19, 2007

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

  128. Keith Smith's Blog
    January 29, 2007

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

  129. 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

  130. 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 :)

  131. 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.

  132. 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...

  133. 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.

  134. TobinTitus
    January 30, 2007

    Thanks, Bill

  135. TobinTitus
    January 31, 2007

    That banner that you claim is your favorite reminds me of the Adam Sandler flick, "Big Daddy".  Rob Schneider's character said,  "They went together like lamb and tuna fish. Maybe you like spaghetti and meatball? You more comfortable with that analogy?"

    It is depressing to think that movie came out 8 years ago. Man I'm getting old.

  136. 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

  137. Stormy
    February 3, 2007

    Thanx Bill...

  138. 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,

  139. Riza
    March 16, 2007

    thx

  140. BillS' IIS Blog
    March 28, 2007

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

  141. BillS' IIS Blog
    March 28, 2007

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

  142. 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

  143. 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

  144. 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

  145. 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

  146. 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

  147. 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

  148. 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

  149. 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

  150. 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!

  151. 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.

  152. 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

  153. 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

  154. 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.  :)

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

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

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

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

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

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

  158. Glenn Berry
    April 26, 2007

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

  159. 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?

  160. 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

  161. 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

  162. 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...

  163. » 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/

  164. Windows Server Division WebLog
    April 26, 2007

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

  165. bills
    April 26, 2007

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

  166. 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

  167. Colin Bowern
    April 27, 2007

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

  168. 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

  169. 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

  170. 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.

  171. 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.

  172. 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.

  173. 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...

  174. 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

  175. bkchung's WebLog
    April 28, 2007

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

  176. bkchung's WebLog
    April 28, 2007

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

  177. bkchung's WebLog
    April 28, 2007

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

  178. 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.

  179. » Free IIS7 Web Hosting
    April 28, 2007

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

  180. 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

  181. 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,

  182. 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

  183. 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

  184. 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.

  185. BrettBlog
    April 29, 2007
  186. APAC Hoster Evangelist
    April 29, 2007

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

  187. Noticias
    April 29, 2007

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

  188. DotNetKicks.com
    April 30, 2007

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

  189. DotNetKicks.com
    April 30, 2007

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

  190. DNN Deployment
    April 30, 2007

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

  191. ASPNETWorld.com Blog
    May 1, 2007
  192. 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

  193. spiderwebwoman
    May 1, 2007

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

  194. 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,

  195. 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,

  196. 武眉博
    May 1, 2007

    FreeIIS7BetaHosting MaximumASP

    ...

  197. 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

  198. 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

  199. 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

  200. Joycode@Ab110.com
    May 2, 2007

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

  201. Fiorano.net
    May 2, 2007

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

  202. BillS' IIS Blog
    May 2, 2007

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

  203. 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

  204. 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

  205. 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

  206. » 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/

  207. » 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/

  208. 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)

  209. 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...

  210. Benixin
    May 3, 2007

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

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

  211. Adlai Maschiach
    May 7, 2007