IIS Powershell User guide - Comparing representative IIS UI tasks
[File System] Open Explorer window for Default Web Site's home directory$path=$(get-item 'iis:sitesdefault web site').physicalPath $path=[system.environment]::ExpandEnvironmentVariables($path) explorer...
View ArticleDeveloping IIS Native module
I have started to learn IIS Native API (C++) and hope to share what I have learned. This blog is targeting for beginner programmers who want to develop IIS native module in C++ for the first time.What...
View ArticleIIS Powershell: Getting config section names and attributes names dynamically
IIS Powershell provider cmdlets require the config section path for the -filter parameter and the attribute names while getting/setting attribute value.But it is not easy to memorize the full...
View ArticleDeveloping IIS Native module 2 (Replacing response body with...
Summary:In the last blog, I tried to explain the big picture for IIS native API. So, next thing is to make a real native module. Because IIS native api is huge, I will introduce one by one with some...
View ArticleExamples of IIS Powershell cmdlets
Summary:This document explains how to specify the values of parameter values and how the configuration file is updated by IIS Powershell generic cmdlets such as Get-WebConfiguration and...
View ArticleRunning Tomcat with IIS on Nano Server
IntroductionSetupStep 1: prepare Nano server with IIS role and httpPlatformHandlerStep 2: install Tomcat on Nano ServerConfigure settings Step 3: configure server.xml of TomcatStep 4: configure...
View ArticleRunning Wordpress with IIS and WinCache on Nano Server
IntroductionSetup Nano serverStep 1: prepare Nano server with IIS roleStep 2: expand disk sizeSetup PHP on Nano serverStep 3: install PHP on Nano serverStep 4: install vcuntime140.dll to...
View ArticleHow to use IISAdministration powershell cmdlets to configure IIS...
FYI, see the below blog first for the detailed information.https://blogs.iis.net/bariscaglar/iisadministration-powershell-cmdlets-new-feature-in-windows-10-server-2016 If you use Configuration Editor,...
View ArticleIIS URL Rewrite - one of known issues with the rewriteBeforeCache feature
I ran into IIS worker process (w3wp.exe) crash issue under specific conditions:If IIS apppool is running in the Classic modeExtensionlessUrlHandler is configuredIIS Url Rewrite outbound rule is...
View ArticleHow to use the IIS Insider docker tag
I'd like to explain the basic usage of the microsoft-windows-servercore-iis-insider docker tag so that you can use it easily.In addition, I want to introduce a new feature, which is currently available...
View Article