dotnet / aspnetcore

ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
https://asp.net
MIT License
35.43k stars 10.02k forks source link

IIS Express module "AspNetCoreModuleV2" is removed after installing Visual Studio 17.1.1, breaking IIS Express support #40730

Closed rambouillet closed 2 years ago

rambouillet commented 2 years ago

Is there an existing issue for this?

Describe the bug

In short, IIS Express no longer works with .NET Core applications after installing Visual Studio version 17.1.1. You can easily see this when selecting "IIS Express" as the server to build and run the application from within Visual Studio. You will receive an error message stating:

The ASP.NET Core Module is required to host ASP.NET Core projects in IIS Express and does not appear to be installed. Try repairing Visual Studio to correct the problem.

NOTE: I have tried uninstalling, reinstalling, and repairing Visual Studio 2022, and it does not fix the error. Something in Visual Studio version 17.1.1 removes the ASP.NET Core Module for IIS Express altogether, so no amount of repairing will fix the issue.

buildrunerror

err2

Detailed Info:

When I develop locally for ASP.NET 6, I use IIS Express with a web.config file pointing to my web application's DLL file. I've been doing this for every version of .NET Core. Today however, after upgrading from Visual Studio 17.0.1 to version 17.1.1, I tried starting up my web application the way I always do, but started getting a web.config error (IIS Express is unable to read my web.config file). This is my web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <location path="." inheritInChildApplications="false">
        <system.webServer>
            <handlers>
                <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
            </handlers>
            <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" hostingModel="inprocess" disableStartUpErrorPage="false">
            </aspNetCore>
        </system.webServer>
    </location>
</configuration>

This is the screen that I first got:

01

I noticed after I removed the <aspNetCore> section, I got a more detailed error message:

Handler "aspNetCore" has a bad module "AspNetCoreModuleV2" in its module list

02

So, it looks like the module "AspNetCoreModuleV2" is no longer recognized by IIS Express. To confirm this, I checked IIS Express's C:\Program Files\IIS Express\AppServer\applicationhost.config file. Sure enough, the "AspNetCoreModuleV2" section was removed from IIS Express's configuration. Normally, there is a module listed as <add name="AspNetCoreModuleV2" image="%IIS_BIN%\Asp.Net Core Module\V2\aspnetcorev2.dll" />:

03

Expected Behavior

IIS Express's configuration file located at C:\Program Files\IIS Express\AppServer\applicationhost.config should have a globalModule item called "AspNetCoreModuleV2", like this:

<add name="AspNetCoreModuleV2" image="%IIS_BIN%\Asp.Net Core Module\V2\aspnetcorev2.dll" />

After the .NET 6.0.3 update, this was removed, breaking IIS Express's support for ASP.NET 6.0.3 applications.

Steps To Reproduce

Install .NET 6.0.3 and try running a 6.0.3 web application with IIS Express.

Exceptions (if any)

No response

.NET Version

6.0.3

Anything else?

No response

adityamandaleeka commented 2 years ago

cc @joeloff

joeloff commented 2 years ago

the hosting bundle only installs ANCM for IIS. ANCM for IIS Express ships only as part of VS. Do you have logs from the hosting bundle install?

rambouillet commented 2 years ago

@joeloff Apologies, the error started after I updated Visual Studio 2022 from 17.0.1 to 17.1.1

joeloff commented 2 years ago

No worries. There should still be logs in your %temp% folder from VS that should help pinpoint why ANCM got removed.

rambouillet commented 2 years ago

@joeloff I've done several text searches of all my %temp% folder content, and could not find any reference to aspnetcorev2.dll, or anything regarding the removal of the AspNetCoreModuleV2 module.

Today I completely uninstalled all Visual Studio versions, then uninstalled IIS Express. I then confirmed the IIS Express folders were deleted from C:\Program Files and C:\Program Files (x86). I then restarted my PC, and reinstalled Visual Studio using the latest VisualStudioSetup.exe installer from Microsoft.

I noticed something interesting now, in the applicationhost.config file that got created with this install, it added a module called "AspNetCoreModule".

module

However, when I reference "AspNetCoreModule" in my web.config, I still get the error:

The ASP.NET Core Module is required to host ASP.NET Core projects in IIS Express and does not appear to be installed. Try repairing Visual Studio to correct the problem.



You can trigger this error message by starting up a new project, and choosing the sample ASP.NET Core Web App (Model-View-Controller) as the template, and choosing "IIS Express" to build and run the application.

I just added a screen recording of the complete replication of the error to the original post above, link to the GIF is here: https://user-images.githubusercontent.com/20598632/159097854-9cb282da-1ec7-43a7-9d66-e269a829c647.gif



joeloff commented 2 years ago

once you reinstalled there should be logs from Visual Studio. Look for dd*.log in your temp folder. Alternatively, you can download and run the .NET log collection tool from https://www.microsoft.com/en-ca/download/details.aspx?id=12493

If you don't have IIS enabled (you either need Windows Server or Windows Enterprise for this), but selected the ASP.NET Web Development workload in Visual Studio, it should install IISExpress. If you do have IIS it will enable an additional option called IIS Development, though you have to explicitly select that to get ANCM for IIS instead of ANCM for IIS Express.

rambouillet commented 2 years ago

@joeloff Here is a log from my reinstall that mentions the addition of "AspNetCoreModule" (missing the "V2" suffix). It appears Visual Studio is looking for "AspNetCoreModuleV2", which is what is causing the error. Furthermore, the DLL that is referenced is "aspnetcore.dll" instead of "aspnetcorev2.dll".

The log filename is dd_setup_20220318173159_245_Microsoft.Ancm.IISExpress.Msi.log

The line in question is this one:

MSI (s) (D8:10) [17:38:26:081]: PROPERTY CHANGE: Adding CA_ADD_MODULE property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'.

The full log is here:

Log Content (click to expand) #### dd_setup_20220318173159_245_Microsoft.Ancm.IISExpress.Msi.log ``` === Verbose logging started: 3/18/2022 17:38:25 Build type: SHIP UNICODE 5.00.10011.00 Calling process: C:\Program Files (x86)\Microsoft Visual Studio\Installer\setup.exe === MSI (c) (14:34) [17:38:25:999]: Resetting cached policy values MSI (c) (14:34) [17:38:25:999]: Machine policy value 'Debug' is 0 MSI (c) (14:34) [17:38:25:999]: ******* RunEngine: ******* Product: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi ******* Action: ******* CommandLine: ********** MSI (c) (14:34) [17:38:25:999]: Client-side and UI is none or basic: Running entire install on the server. MSI (c) (14:34) [17:38:25:999]: Grabbed execution mutex. MSI (c) (14:34) [17:38:26:001]: Cloaking enabled. MSI (c) (14:34) [17:38:26:001]: Attempting to enable all disabled privileges before calling Install on Server MSI (c) (14:34) [17:38:26:001]: Incrementing counter to disable shutdown. Counter after increment: 0 MSI (s) (D8:F0) [17:38:26:005]: Running installation inside multi-package transaction C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi MSI (s) (D8:F0) [17:38:26:005]: Grabbed execution mutex. MSI (s) (D8:10) [17:38:26:006]: Resetting cached policy values MSI (s) (D8:10) [17:38:26:006]: Machine policy value 'Debug' is 0 MSI (s) (D8:10) [17:38:26:006]: ******* RunEngine: ******* Product: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi ******* Action: ******* CommandLine: ********** MSI (s) (D8:10) [17:38:26:006]: Machine policy value 'DisableUserInstalls' is 0 MSI (s) (D8:10) [17:38:26:009]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038 MSI (s) (D8:10) [17:38:26:010]: SRSetRestorePoint skipped for this transaction. MSI (s) (D8:10) [17:38:26:012]: File will have security applied from OpCode. MSI (s) (D8:10) [17:38:26:014]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi' against software restriction policy MSI (s) (D8:10) [17:38:26:014]: SOFTWARE RESTRICTION POLICY: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi has a digital signature MSI (s) (D8:10) [17:38:26:020]: SOFTWARE RESTRICTION POLICY: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi is permitted to run at the 'unrestricted' authorization level. MSI (s) (D8:10) [17:38:26:020]: MSCOREE not loaded loading copy from system32 MSI (s) (D8:10) [17:38:26:022]: End dialog not enabled MSI (s) (D8:10) [17:38:26:022]: Original package ==> C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi MSI (s) (D8:10) [17:38:26:022]: Package we're running from ==> C:\Windows\Installer\21b1b.msi MSI (s) (D8:10) [17:38:26:023]: APPCOMPAT: Compatibility mode property overrides found. MSI (s) (D8:10) [17:38:26:024]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}'. MSI (s) (D8:10) [17:38:26:024]: APPCOMPAT: no matching ProductCode found in database. MSI (s) (D8:10) [17:38:26:026]: Machine policy value 'TransformsSecure' is 0 MSI (s) (D8:10) [17:38:26:026]: User policy value 'TransformsAtSource' is 0 MSI (s) (D8:10) [17:38:26:026]: Machine policy value 'DisablePatch' is 0 MSI (s) (D8:10) [17:38:26:026]: Machine policy value 'AllowLockdownPatch' is 0 MSI (s) (D8:10) [17:38:26:026]: Machine policy value 'DisableLUAPatching' is 0 MSI (s) (D8:10) [17:38:26:026]: Machine policy value 'DisableFlyWeightPatching' is 0 MSI (s) (D8:10) [17:38:26:027]: APPCOMPAT: looking for appcompat database entry with ProductCode '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}'. MSI (s) (D8:10) [17:38:26:027]: APPCOMPAT: no matching ProductCode found in database. MSI (s) (D8:10) [17:38:26:027]: Transforms are not secure. MSI (s) (D8:10) [17:38:26:027]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\Innisfree\AppData\Local\Temp\dd_setup_20220318173159_245_Microsoft.Ancm.IISExpress.Msi.log'. MSI (s) (D8:10) [17:38:26:027]: Command Line: REBOOT=ReallySuppress ARPSYSTEMCOMPONENT=1 ALLUSERS=1 MSIFASTINSTALL=7 CURRENTDIRECTORY=C:\Program Files (x86)\Microsoft Visual Studio\Installer CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=8980 MSI (s) (D8:10) [17:38:26:027]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{0284D2EF-4072-428D-A85F-C356804F0AD6}'. MSI (s) (D8:10) [17:38:26:027]: Product Code passed to Engine.Initialize: '' MSI (s) (D8:10) [17:38:26:027]: Product Code from property table before transforms: '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}' MSI (s) (D8:10) [17:38:26:027]: Product Code from property table after transforms: '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}' MSI (s) (D8:10) [17:38:26:027]: Product not registered: beginning first-time install MSI (s) (D8:10) [17:38:26:027]: Product {FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236} is not managed. MSI (s) (D8:10) [17:38:26:027]: MSI_LUA: Credential prompt not required, user is an admin MSI (s) (D8:10) [17:38:26:027]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'. MSI (s) (D8:10) [17:38:26:027]: Entering CMsiConfigurationManager::SetLastUsedSource. MSI (s) (D8:10) [17:38:26:027]: User policy value 'SearchOrder' is 'nmu' MSI (s) (D8:10) [17:38:26:027]: Adding new sources is allowed. MSI (s) (D8:10) [17:38:26:027]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'. MSI (s) (D8:10) [17:38:26:027]: Package name extracted from package path: 'ancm_iis_express_x64_en.msi' MSI (s) (D8:10) [17:38:26:027]: Package to be registered: 'ancm_iis_express_x64_en.msi' MSI (s) (D8:10) [17:38:26:028]: Note: 1: 2262 2: AdminProperties 3: -2147287038 MSI (s) (D8:10) [17:38:26:028]: Machine policy value 'DisableMsi' is 0 MSI (s) (D8:10) [17:38:26:028]: Machine policy value 'AlwaysInstallElevated' is 0 MSI (s) (D8:10) [17:38:26:028]: User policy value 'AlwaysInstallElevated' is 0 MSI (s) (D8:10) [17:38:26:028]: Product installation will be elevated because user is admin and product is being installed per-machine. MSI (s) (D8:10) [17:38:26:028]: Running product '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}' with elevated privileges: Product is assigned. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding REBOOT property. Its value is 'ReallySuppress'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding ARPSYSTEMCOMPONENT property. Its value is '1'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding MSIFASTINSTALL property. Its value is '7'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Program Files (x86)\Microsoft Visual Studio\Installer'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '8980'. MSI (s) (D8:10) [17:38:26:028]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0 MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '157b09f4f977404bbf82690d3fd249cc'. MSI (s) (D8:10) [17:38:26:028]: RESTART MANAGER: Session opened. MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is '1'. MSI (s) (D8:10) [17:38:26:028]: TRANSFORMS property is now: MSI (s) (D8:10) [17:38:26:028]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '400'. MSI (s) (D8:10) [17:38:26:029]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming MSI (s) (D8:10) [17:38:26:030]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\Favorites MSI (s) (D8:10) [17:38:26:030]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Network Shortcuts MSI (s) (D8:10) [17:38:26:031]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\Documents MSI (s) (D8:10) [17:38:26:031]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Printer Shortcuts MSI (s) (D8:10) [17:38:26:032]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Recent MSI (s) (D8:10) [17:38:26:032]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\SendTo MSI (s) (D8:10) [17:38:26:033]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Templates MSI (s) (D8:10) [17:38:26:033]: SHELL32::SHGetFolderPath returned: C:\ProgramData MSI (s) (D8:10) [17:38:26:033]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Local MSI (s) (D8:10) [17:38:26:033]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\Pictures MSI (s) (D8:10) [17:38:26:034]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools MSI (s) (D8:10) [17:38:26:034]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup MSI (s) (D8:10) [17:38:26:035]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs MSI (s) (D8:10) [17:38:26:035]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu MSI (s) (D8:10) [17:38:26:036]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop MSI (s) (D8:10) [17:38:26:037]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools MSI (s) (D8:10) [17:38:26:037]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup MSI (s) (D8:10) [17:38:26:038]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Start Menu\Programs MSI (s) (D8:10) [17:38:26:038]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\AppData\Roaming\Microsoft\Windows\Start Menu MSI (s) (D8:10) [17:38:26:039]: SHELL32::SHGetFolderPath returned: C:\Users\Innisfree\Desktop MSI (s) (D8:10) [17:38:26:039]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates MSI (s) (D8:10) [17:38:26:039]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts MSI (s) (D8:10) [17:38:26:039]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 MSI (s) (D8:10) [17:38:26:041]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated. MSI (s) (D8:10) [17:38:26:041]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'. MSI (s) (D8:10) [17:38:26:041]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'. MSI (s) (D8:10) [17:38:26:041]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 MSI (s) (D8:10) [17:38:26:041]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Innisfree'. MSI (s) (D8:10) [17:38:26:041]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 MSI (s) (D8:10) [17:38:26:041]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\21b1b.msi'. MSI (s) (D8:10) [17:38:26:041]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ancm_iis_express_x64_en.msi'. MSI (s) (D8:10) [17:38:26:041]: Machine policy value 'MsiDisableEmbeddedUI' is 0 MSI (s) (D8:10) [17:38:26:041]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI MSI (s) (D8:10) [17:38:26:042]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install MSI (s) (D8:10) [17:38:26:042]: Note: 1: 2205 2: 3: PatchPackage MSI (s) (D8:10) [17:38:26:042]: Machine policy value 'DisableRollback' is 0 MSI (s) (D8:10) [17:38:26:042]: User policy value 'DisableRollback' is 0 MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'. === Logging started: 3/18/2022 17:38:26 === MSI (s) (D8:10) [17:38:26:042]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038 MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '603'. Its new value: '601'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '603'. Its new value: '601'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '601'. Its new value: '600'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '601'. Its new value: '600'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '600'. Its new value: '502'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '600'. Its new value: '502'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '502'. Its new value: '501'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '502'. Its new value: '501'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '501'. Its new value: '500'. MSI (s) (D8:10) [17:38:26:042]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '501'. Its new value: '500'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '500'. Its new value: '400'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '500'. Its new value: '400'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '0'. Its new value: '14'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '14'. Its new value: '13'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '13'. Its new value: '12'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '12'. Its new value: '11'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '11'. Its new value: '10'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '10'. Its new value: '9'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '9'. Its new value: '8'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '8'. Its new value: '7'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '7'. Its new value: '6'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '6'. Its new value: '5'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '5'. Its new value: '4'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '4'. Its new value: '3'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '3'. Its new value: '2'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '2'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying ServicePackLevel property. Its current value is '1'. Its new value: '0'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying VersionNT property. Its current value is '400'. Its new value: '603'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Modifying VersionNT64 property. Its current value is '400'. Its new value: '603'. MSI (s) (D8:10) [17:38:26:043]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'. MSI (s) (D8:10) [17:38:26:043]: Doing action: INSTALL Action start 17:38:26: INSTALL. MSI (s) (D8:10) [17:38:26:043]: Running ExecuteSequence MSI (s) (D8:10) [17:38:26:043]: Doing action: FindRelatedProducts Action start 17:38:26: FindRelatedProducts. MSI (s) (D8:10) [17:38:26:044]: Doing action: AppSearch Action ended 17:38:26: FindRelatedProducts. Return value 1. Action start 17:38:26: AppSearch. MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express 3: 1 MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1325 2: iisexpress.exe MSI (s) (D8:10) [17:38:26:044]: PROPERTY CHANGE: Adding IISEXPRESS_INSTALL_PATH property. Its value is 'C:\Program Files\IIS Express\'. MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express\AppServer 3: 1 MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express\AppServer 3: 1 MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1325 2: applicationhost.config MSI (s) (D8:10) [17:38:26:044]: PROPERTY CHANGE: Adding IISEXPRESS_APPHOST_CONFIG property. Its value is 'C:\Program Files\IIS Express\AppServer\applicationhost.config'. MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express\config\templates\PersonalWebServer 3: 1 MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express\config\templates\PersonalWebServer 3: 1 MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1325 2: applicationhost.config MSI (s) (D8:10) [17:38:26:044]: PROPERTY CHANGE: Adding IISEXPRESS_APPHOST_CONFIG_TMP property. Its value is 'C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config'. MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:044]: Note: 1: 1324 2: IIS Express 3: 1 MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1325 2: iisexpress.exe MSI (s) (D8:10) [17:38:26:046]: PROPERTY CHANGE: Adding IISEXPRESS_INSTALL_PATH32 property. Its value is 'C:\Program Files (x86)\IIS Express\'. MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1324 2: IIS Express\AppServer 3: 1 MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1324 2: IIS Express\AppServer 3: 1 MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1325 2: applicationhost.config MSI (s) (D8:10) [17:38:26:046]: PROPERTY CHANGE: Adding IISEXPRESS_APPHOST_CONFIG32 property. Its value is 'C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config'. MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1322 2: MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1324 2: IIS Express\config\templates\PersonalWebServer 3: 1 MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1324 2: IIS Express\config\templates\PersonalWebServer 3: 1 MSI (s) (D8:10) [17:38:26:046]: Note: 1: 1325 2: applicationhost.config MSI (s) (D8:10) [17:38:26:046]: PROPERTY CHANGE: Adding IISEXPRESS_APPHOST_CONFIG_TMP32 property. Its value is 'C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config'. MSI (s) (D8:10) [17:38:26:046]: Doing action: LaunchConditions Action ended 17:38:26: AppSearch. Return value 1. Action start 17:38:26: LaunchConditions. MSI (s) (D8:10) [17:38:26:046]: Doing action: ValidateProductID Action ended 17:38:26: LaunchConditions. Return value 1. Action start 17:38:26: ValidateProductID. MSI (s) (D8:10) [17:38:26:047]: Doing action: CostInitialize Action ended 17:38:26: ValidateProductID. Return value 1. MSI (s) (D8:10) [17:38:26:047]: Machine policy value 'MaxPatchCacheSize' is 10 MSI (s) (D8:10) [17:38:26:048]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'D:\'. MSI (s) (D8:10) [17:38:26:049]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'. MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: Patch MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: PatchPackage MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: MsiPatchHeaders MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: __MsiPatchFileList MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: PatchPackage MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2228 2: 3: PatchPackage 4: SELECT 'DiskId', 'PatchId', 'LastSequence' FROM 'Media', 'PatchPackage' WHERE 'Media'.'DiskId'='PatchPackage'.'Media_' ORDER BY 'DiskId' MSI (s) (D8:10) [17:38:26:049]: Note: 1: 2205 2: 3: Patch Action start 17:38:26: CostInitialize. MSI (s) (D8:10) [17:38:26:049]: Doing action: SetINSTALLDIR Action ended 17:38:26: CostInitialize. Return value 1. MSI (s) (D8:10) [17:38:26:049]: PROPERTY CHANGE: Adding INSTALLDIR property. Its value is 'C:\Program Files\IIS Express\'. Action start 17:38:26: SetINSTALLDIR. MSI (s) (D8:10) [17:38:26:049]: Doing action: SetINSTALLDIR32 Action ended 17:38:26: SetINSTALLDIR. Return value 1. MSI (s) (D8:10) [17:38:26:049]: PROPERTY CHANGE: Adding INSTALLDIR32 property. Its value is 'C:\Program Files (x86)\IIS Express\'. Action start 17:38:26: SetINSTALLDIR32. MSI (s) (D8:10) [17:38:26:050]: Doing action: FileCost Action ended 17:38:26: SetINSTALLDIR32. Return value 1. MSI (s) (D8:10) [17:38:26:050]: Note: 1: 2205 2: 3: MsiAssembly Action start 17:38:26: FileCost. MSI (s) (D8:10) [17:38:26:050]: Doing action: CostFinalize Action ended 17:38:26: FileCost. Return value 1. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'. MSI (s) (D8:10) [17:38:26:050]: Note: 1: 2205 2: 3: Patch MSI (s) (D8:10) [17:38:26:050]: Note: 1: 2205 2: 3: Condition MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'D:\'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding IISConfigDir.wow property. Its value is 'C:\Program Files (x86)\IIS Express\config\'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding IISSchemaDir.wow property. Its value is 'C:\Program Files (x86)\IIS Express\config\schema\'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding IISConfigDir property. Its value is 'C:\Program Files\IIS Express\config\'. MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding IISSchemaDir property. Its value is 'C:\Program Files\IIS Express\config\schema\'. MSI (s) (D8:10) [17:38:26:050]: Target path resolution complete. Dumping Directory table... MSI (s) (D8:10) [17:38:26:050]: Note: target paths subject to change (via custom actions or browsing) MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: TARGETDIR , Object: D:\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: ProgramFiles64Folder , Object: C:\Program Files\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: INSTALLDIR , Object: C:\Program Files\IIS Express\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: ProgramFilesFolder , Object: C:\Program Files (x86)\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: INSTALLDIR32 , Object: C:\Program Files (x86)\IIS Express\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: IISConfigDir.wow , Object: C:\Program Files (x86)\IIS Express\config\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: IISSchemaDir.wow , Object: C:\Program Files (x86)\IIS Express\config\schema\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: IISConfigDir , Object: C:\Program Files\IIS Express\config\ MSI (s) (D8:10) [17:38:26:050]: Dir (target): Key: IISSchemaDir , Object: C:\Program Files\IIS Express\config\schema\ MSI (s) (D8:10) [17:38:26:050]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'. MSI (s) (D8:10) [17:38:26:050]: Note: 1: 2205 2: 3: MsiAssembly MSI (s) (D8:10) [17:38:26:050]: Note: 1: 2228 2: 3: MsiAssembly 4: SELECT 'MsiAssembly'.'Attributes', 'MsiAssembly'.'File_Application', 'MsiAssembly'.'File_Manifest', 'Component'.'KeyPath' FROM 'MsiAssembly', 'Component' WHERE 'MsiAssembly'.'Component_' = 'Component'.'Component' AND 'MsiAssembly'.'Component_' = ? Action start 17:38:26: CostFinalize. MSI (s) (D8:10) [17:38:26:050]: Doing action: MigrateFeatureStates Action ended 17:38:26: CostFinalize. Return value 1. Action start 17:38:26: MigrateFeatureStates. MSI (s) (D8:10) [17:38:26:051]: Doing action: InstallValidate Action ended 17:38:26: MigrateFeatureStates. Return value 0. MSI (s) (D8:10) [17:38:26:051]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '157b09f4f977404bbf82690d3fd249cc'. MSI (s) (D8:10) [17:38:26:051]: Feature: AspNetCoreModuleFeature; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Feature: FT_DepProvider_IISExpress_ANCM; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Component: AspNetCoreModule; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Component: AspNetCoreSchema; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Component: AspNetCoreModule.wow; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Component: AspNetCoreSchema.wow; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Component: C_DepProvider_IISExpress_ANCM; Installed: Absent; Request: Local; Action: Local MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: BindImage MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: ProgId MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: PublishComponent MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: SelfReg MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: Extension MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: Font MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: Shortcut MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: Class MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: TypeLib Action start 17:38:26: InstallValidate. MSI (s) (D8:10) [17:38:26:051]: Note: 1: 2205 2: 3: _RemoveFilePath MSI (s) (D8:10) [17:38:26:052]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'. MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: BindImage MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: ProgId MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: PublishComponent MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: SelfReg MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: Extension MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: Font MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: Shortcut MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: Class MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2205 2: 3: TypeLib MSI (s) (D8:10) [17:38:26:052]: Note: 1: 2727 2: MSI (s) (D8:10) [17:38:26:053]: Note: 1: 2205 2: 3: FilesInUse MSI (s) (D8:10) [17:38:26:057]: Note: 1: 2727 2: MSI (s) (D8:10) [17:38:26:057]: Skipping action: WixDependencyCheck (condition is false) MSI (s) (D8:10) [17:38:26:057]: Doing action: InstallInitialize Action ended 17:38:26: InstallValidate. Return value 1. MSI (s) (D8:10) [17:38:26:058]: Machine policy value 'AlwaysInstallElevated' is 0 MSI (s) (D8:10) [17:38:26:058]: User policy value 'AlwaysInstallElevated' is 0 MSI (s) (D8:10) [17:38:26:058]: BeginTransaction: Locking Server MSI (s) (D8:10) [17:38:26:058]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038 MSI (s) (D8:10) [17:38:26:058]: SRSetRestorePoint skipped for this transaction. MSI (s) (D8:10) [17:38:26:058]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038 MSI (s) (D8:10) [17:38:26:058]: Server not locked: locking for product {FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236} Action start 17:38:26: InstallInitialize. MSI (s) (D8:10) [17:38:26:063]: Doing action: ProcessComponents Action ended 17:38:26: InstallInitialize. Return value 1. MSI (s) (D8:10) [17:38:26:063]: Note: 1: 2205 2: 3: MsiPatchCertificate MSI (s) (D8:10) [17:38:26:063]: LUA patching is disabled: missing MsiPatchCertificate table MSI (s) (D8:10) [17:38:26:063]: Resolving source. MSI (s) (D8:10) [17:38:26:063]: Resolving source to launched-from source. MSI (s) (D8:10) [17:38:26:063]: Setting launched-from source as last-used. MSI (s) (D8:10) [17:38:26:063]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\'. MSI (s) (D8:10) [17:38:26:063]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\'. MSI (s) (D8:10) [17:38:26:063]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236}'. MSI (s) (D8:10) [17:38:26:063]: SOURCEDIR ==> C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ MSI (s) (D8:10) [17:38:26:063]: SOURCEDIR product ==> {FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236} MSI (s) (D8:10) [17:38:26:063]: Determining source type MSI (s) (D8:10) [17:38:26:063]: Source type from package 'ancm_iis_express_x64_en.msi': 2 MSI (s) (D8:10) [17:38:26:063]: SECREPAIR: Hash Database: C:\Windows\Installer\SourceHash{FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236} MSI (s) (D8:10) [17:38:26:064]: Note: 1: 2262 2: SourceHash 3: -2147287038 MSI (s) (D8:10) [17:38:26:066]: SECREPAIR: New Hash Database creation complete. MSI (s) (D8:10) [17:38:26:070]: Source path resolution complete. Dumping Directory table... MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: TARGETDIR , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: , ShortSubPath: MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: ProgramFiles64Folder , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: , ShortSubPath: MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: INSTALLDIR , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\ , ShortSubPath: lwvwfwag\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: ProgramFilesFolder , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\ , ShortSubPath: lwvwfwag\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: INSTALLDIR32 , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\IIS Express\ , ShortSubPath: lwvwfwag\k0awoj07\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: IISConfigDir.wow , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\IIS Express\config\ , ShortSubPath: lwvwfwag\k0awoj07\config\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: IISSchemaDir.wow , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\IIS Express\config\schema\ , ShortSubPath: lwvwfwag\k0awoj07\config\schema\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: IISConfigDir , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\config\ , ShortSubPath: lwvwfwag\config\ MSI (s) (D8:10) [17:38:26:070]: Dir (source): Key: IISSchemaDir , Object: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\ , LongSubPath: IIS Express\config\schema\ , ShortSubPath: lwvwfwag\config\schema\ Action start 17:38:26: ProcessComponents. MSI (s) (D8:10) [17:38:26:073]: Doing action: UnpublishFeatures Action ended 17:38:26: ProcessComponents. Return value 1. Action start 17:38:26: UnpublishFeatures. MSI (s) (D8:10) [17:38:26:073]: Doing action: RemoveRegistryValues Action ended 17:38:26: UnpublishFeatures. Return value 1. Action start 17:38:26: RemoveRegistryValues. MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_CONFIGSECTION_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_CONFIGSECTION (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_CONFIGSECTION32_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_CONFIGSECTION32 (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE_TMP_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE_TMP (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE_TMP32_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE_TMP32 (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE32_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_MODULE32 (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION_TMP_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION_TMP (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION_TMP32_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION_TMP32 (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION32_PROPERTY (condition is false) MSI (s) (D8:10) [17:38:26:074]: Skipping action: CA_REMOVE_TRACE_PROVIDER_DEFINITION32 (condition is false) MSI (s) (D8:10) [17:38:26:074]: Doing action: RemoveFiles Action ended 17:38:26: RemoveRegistryValues. Return value 1. MSI (s) (D8:10) [17:38:26:074]: Note: 1: 2205 2: 3: RemoveFile MSI (s) (D8:10) [17:38:26:074]: Note: 1: 2205 2: 3: RemoveFile Action start 17:38:26: RemoveFiles. MSI (s) (D8:10) [17:38:26:074]: Doing action: InstallFiles Action ended 17:38:26: RemoveFiles. Return value 0. Action start 17:38:26: InstallFiles. MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: Patch MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2228 2: 3: Patch 4: SELECT 'Patch'.'File_', 'Patch'.'Header', 'Patch'.'Attributes', 'Patch'.'Sequence', 'Patch'.'StreamRef_' FROM 'Patch' WHERE 'Patch'.'File_' = ? AND 'Patch'.'#_MsiActive'=? ORDER BY 'Patch'.'Sequence' MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: MsiSFCBypass MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2228 2: 3: MsiSFCBypass 4: SELECT 'File_' FROM 'MsiSFCBypass' WHERE 'File_' = ? MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: MsiPatchHeaders MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2228 2: 3: MsiPatchHeaders 4: SELECT 'Header' FROM 'MsiPatchHeaders' WHERE 'StreamRef' = ? MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: PatchPackage MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: MsiPatchHeaders MSI (s) (D8:10) [17:38:26:075]: Note: 1: 2205 2: 3: PatchPackage MSI (s) (D8:10) [17:38:26:076]: Doing action: CA_UNLOCK_HANDLER_PROPERTY Action ended 17:38:26: InstallFiles. Return value 1. MSI (s) (D8:10) [17:38:26:076]: PROPERTY CHANGE: Adding CA_UNLOCK_HANDLER property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_UNLOCK_HANDLER_PROPERTY. MSI (s) (D8:10) [17:38:26:077]: Doing action: CA_UNLOCK_HANDLER Action ended 17:38:26: CA_UNLOCK_HANDLER_PROPERTY. Return value 1. Action start 17:38:26: CA_UNLOCK_HANDLER. MSI (s) (D8:10) [17:38:26:078]: Doing action: CA_UNINSTALL_MODULE_PROPERTY Action ended 17:38:26: CA_UNLOCK_HANDLER. Return value 1. MSI (s) (D8:10) [17:38:26:078]: PROPERTY CHANGE: Adding CA_UNINSTALL_MODULE property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_UNINSTALL_MODULE_PROPERTY. MSI (s) (D8:10) [17:38:26:078]: Doing action: CA_UNINSTALL_MODULE Action ended 17:38:26: CA_UNINSTALL_MODULE_PROPERTY. Return value 1. Action start 17:38:26: CA_UNINSTALL_MODULE. MSI (s) (D8:10) [17:38:26:079]: Doing action: CA_ROLLBACK_MODULE_PROPERTY Action ended 17:38:26: CA_UNINSTALL_MODULE. Return value 1. MSI (s) (D8:10) [17:38:26:080]: PROPERTY CHANGE: Adding CA_ROLLBACK_MODULE property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ROLLBACK_MODULE_PROPERTY. MSI (s) (D8:10) [17:38:26:080]: Doing action: CA_ROLLBACK_MODULE Action ended 17:38:26: CA_ROLLBACK_MODULE_PROPERTY. Return value 1. Action start 17:38:26: CA_ROLLBACK_MODULE. MSI (s) (D8:10) [17:38:26:081]: Doing action: CA_ADD_MODULE_PROPERTY Action ended 17:38:26: CA_ROLLBACK_MODULE. Return value 1. MSI (s) (D8:10) [17:38:26:081]: PROPERTY CHANGE: Adding CA_ADD_MODULE property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_MODULE_PROPERTY. MSI (s) (D8:10) [17:38:26:081]: Doing action: CA_ADD_MODULE Action ended 17:38:26: CA_ADD_MODULE_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_MODULE. MSI (s) (D8:10) [17:38:26:082]: Doing action: CA_SET_MODULE_PROPERTY Action ended 17:38:26: CA_ADD_MODULE. Return value 1. MSI (s) (D8:10) [17:38:26:082]: PROPERTY CHANGE: Adding CA_SET_MODULE property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_SET_MODULE_PROPERTY. MSI (s) (D8:10) [17:38:26:082]: Doing action: CA_SET_MODULE Action ended 17:38:26: CA_SET_MODULE_PROPERTY. Return value 1. Action start 17:38:26: CA_SET_MODULE. MSI (s) (D8:10) [17:38:26:083]: Doing action: CA_ADD_CONFIGSECTION_PROPERTY Action ended 17:38:26: CA_SET_MODULE. Return value 1. MSI (s) (D8:10) [17:38:26:083]: PROPERTY CHANGE: Adding CA_ADD_CONFIGSECTION property. Its value is 'C:\Program Files\IIS Express\AppServer\applicationhost.config;C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config'. Action start 17:38:26: CA_ADD_CONFIGSECTION_PROPERTY. MSI (s) (D8:10) [17:38:26:084]: Doing action: CA_ADD_CONFIGSECTION Action ended 17:38:26: CA_ADD_CONFIGSECTION_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_CONFIGSECTION. MSI (s) (D8:10) [17:38:26:084]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION_PROPERTY Action ended 17:38:26: CA_ADD_CONFIGSECTION. Return value 1. MSI (s) (D8:10) [17:38:26:085]: PROPERTY CHANGE: Adding CA_ADD_TRACE_PROVIDER_DEFINITION property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_PROPERTY. MSI (s) (D8:10) [17:38:26:085]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION. MSI (s) (D8:10) [17:38:26:086]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP_PROPERTY Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION. Return value 1. MSI (s) (D8:10) [17:38:26:086]: PROPERTY CHANGE: Adding CA_ADD_TRACE_PROVIDER_DEFINITION_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:086]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP. MSI (s) (D8:10) [17:38:26:087]: Doing action: CA_UPDATE_DYNAMIC_COMPRESSION_TMP_PROPERTY Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:087]: PROPERTY CHANGE: Adding CA_UPDATE_DYNAMIC_COMPRESSION_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/httpCompression /+"dynamicTypes.[mimeType='text/event-stream',enabled='FALSE']" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:087]: Doing action: CA_UPDATE_DYNAMIC_COMPRESSION_TMP Action ended 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP. MSI (s) (D8:10) [17:38:26:088]: Doing action: CA_UNLOCK_HANDLER_TMP_PROPERTY Action ended 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:089]: PROPERTY CHANGE: Adding CA_UNLOCK_HANDLER_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_UNLOCK_HANDLER_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:089]: Doing action: CA_UNLOCK_HANDLER_TMP Action ended 17:38:26: CA_UNLOCK_HANDLER_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_UNLOCK_HANDLER_TMP. MSI (s) (D8:10) [17:38:26:090]: Doing action: CA_UNINSTALL_MODULE_TMP_PROPERTY Action ended 17:38:26: CA_UNLOCK_HANDLER_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:090]: PROPERTY CHANGE: Adding CA_UNINSTALL_MODULE_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_UNINSTALL_MODULE_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:090]: Doing action: CA_UNINSTALL_MODULE_TMP Action ended 17:38:26: CA_UNINSTALL_MODULE_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_UNINSTALL_MODULE_TMP. MSI (s) (D8:10) [17:38:26:091]: Doing action: CA_ROLLBACK_MODULE_TMP_PROPERTY Action ended 17:38:26: CA_UNINSTALL_MODULE_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:091]: PROPERTY CHANGE: Adding CA_ROLLBACK_MODULE_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ROLLBACK_MODULE_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:091]: Doing action: CA_ROLLBACK_MODULE_TMP Action ended 17:38:26: CA_ROLLBACK_MODULE_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_ROLLBACK_MODULE_TMP. MSI (s) (D8:10) [17:38:26:092]: Doing action: CA_ADD_MODULE_TMP_PROPERTY Action ended 17:38:26: CA_ROLLBACK_MODULE_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:092]: PROPERTY CHANGE: Adding CA_ADD_MODULE_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_MODULE_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:092]: Doing action: CA_ADD_MODULE_TMP Action ended 17:38:26: CA_ADD_MODULE_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_MODULE_TMP. MSI (s) (D8:10) [17:38:26:093]: Doing action: CA_SET_MODULE_TMP_PROPERTY Action ended 17:38:26: CA_ADD_MODULE_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:094]: PROPERTY CHANGE: Adding CA_SET_MODULE_TMP property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_SET_MODULE_TMP_PROPERTY. MSI (s) (D8:10) [17:38:26:094]: Doing action: CA_SET_MODULE_TMP Action ended 17:38:26: CA_SET_MODULE_TMP_PROPERTY. Return value 1. Action start 17:38:26: CA_SET_MODULE_TMP. MSI (s) (D8:10) [17:38:26:094]: Doing action: CA_UNLOCK_HANDLER32_PROPERTY Action ended 17:38:26: CA_SET_MODULE_TMP. Return value 1. MSI (s) (D8:10) [17:38:26:095]: PROPERTY CHANGE: Adding CA_UNLOCK_HANDLER32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_UNLOCK_HANDLER32_PROPERTY. MSI (s) (D8:10) [17:38:26:095]: Doing action: CA_UNLOCK_HANDLER32 Action ended 17:38:26: CA_UNLOCK_HANDLER32_PROPERTY. Return value 1. Action start 17:38:26: CA_UNLOCK_HANDLER32. MSI (s) (D8:10) [17:38:26:096]: Doing action: CA_UNINSTALL_MODULE32_PROPERTY Action ended 17:38:26: CA_UNLOCK_HANDLER32. Return value 1. MSI (s) (D8:10) [17:38:26:096]: PROPERTY CHANGE: Adding CA_UNINSTALL_MODULE32 property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_UNINSTALL_MODULE32_PROPERTY. MSI (s) (D8:10) [17:38:26:096]: Doing action: CA_UNINSTALL_MODULE32 Action ended 17:38:26: CA_UNINSTALL_MODULE32_PROPERTY. Return value 1. Action start 17:38:26: CA_UNINSTALL_MODULE32. MSI (s) (D8:10) [17:38:26:097]: Doing action: CA_ROLLBACK_MODULE32_PROPERTY Action ended 17:38:26: CA_UNINSTALL_MODULE32. Return value 1. MSI (s) (D8:10) [17:38:26:098]: PROPERTY CHANGE: Adding CA_ROLLBACK_MODULE32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ROLLBACK_MODULE32_PROPERTY. MSI (s) (D8:10) [17:38:26:098]: Doing action: CA_ROLLBACK_MODULE32 Action ended 17:38:26: CA_ROLLBACK_MODULE32_PROPERTY. Return value 1. Action start 17:38:26: CA_ROLLBACK_MODULE32. MSI (s) (D8:10) [17:38:26:098]: Doing action: CA_ADD_MODULE32_PROPERTY Action ended 17:38:26: CA_ROLLBACK_MODULE32. Return value 1. MSI (s) (D8:10) [17:38:26:099]: PROPERTY CHANGE: Adding CA_ADD_MODULE32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_MODULE32_PROPERTY. MSI (s) (D8:10) [17:38:26:099]: Doing action: CA_ADD_MODULE32 Action ended 17:38:26: CA_ADD_MODULE32_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_MODULE32. MSI (s) (D8:10) [17:38:26:100]: Doing action: CA_SET_MODULE32_PROPERTY Action ended 17:38:26: CA_ADD_MODULE32. Return value 1. MSI (s) (D8:10) [17:38:26:100]: PROPERTY CHANGE: Adding CA_SET_MODULE32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_SET_MODULE32_PROPERTY. MSI (s) (D8:10) [17:38:26:100]: Doing action: CA_SET_MODULE32 Action ended 17:38:26: CA_SET_MODULE32_PROPERTY. Return value 1. Action start 17:38:26: CA_SET_MODULE32. MSI (s) (D8:10) [17:38:26:101]: Doing action: CA_ADD_CONFIGSECTION32_PROPERTY Action ended 17:38:26: CA_SET_MODULE32. Return value 1. MSI (s) (D8:10) [17:38:26:101]: PROPERTY CHANGE: Adding CA_ADD_CONFIGSECTION32 property. Its value is 'C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config;C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config'. Action start 17:38:26: CA_ADD_CONFIGSECTION32_PROPERTY. MSI (s) (D8:10) [17:38:26:102]: Doing action: CA_ADD_CONFIGSECTION32 Action ended 17:38:26: CA_ADD_CONFIGSECTION32_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_CONFIGSECTION32. MSI (s) (D8:10) [17:38:26:102]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION32_PROPERTY Action ended 17:38:26: CA_ADD_CONFIGSECTION32. Return value 1. MSI (s) (D8:10) [17:38:26:102]: PROPERTY CHANGE: Adding CA_ADD_TRACE_PROVIDER_DEFINITION32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION32_PROPERTY. MSI (s) (D8:10) [17:38:26:103]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION32 Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION32_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION32. MSI (s) (D8:10) [17:38:26:103]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32_PROPERTY Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION32. Return value 1. MSI (s) (D8:10) [17:38:26:103]: PROPERTY CHANGE: Adding CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:104]: Doing action: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32 Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32. MSI (s) (D8:10) [17:38:26:104]: Doing action: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32_PROPERTY Action ended 17:38:26: CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:105]: PROPERTY CHANGE: Adding CA_UPDATE_DYNAMIC_COMPRESSION_TMP32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/httpCompression /+"dynamicTypes.[mimeType='text/event-stream',enabled='FALSE']" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config"'. Action start 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:105]: Doing action: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32 Action ended 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32. MSI (s) (D8:10) [17:38:26:106]: Doing action: CA_UNLOCK_HANDLER_TMP32_PROPERTY Action ended 17:38:26: CA_UPDATE_DYNAMIC_COMPRESSION_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:106]: PROPERTY CHANGE: Adding CA_UNLOCK_HANDLER_TMP32 property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_UNLOCK_HANDLER_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:107]: Doing action: CA_UNLOCK_HANDLER_TMP32 Action ended 17:38:26: CA_UNLOCK_HANDLER_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_UNLOCK_HANDLER_TMP32. MSI (s) (D8:10) [17:38:26:108]: Doing action: CA_UNINSTALL_MODULE_TMP32_PROPERTY Action ended 17:38:26: CA_UNLOCK_HANDLER_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:108]: PROPERTY CHANGE: Adding CA_UNINSTALL_MODULE_TMP32 property. Its value is '"C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_UNINSTALL_MODULE_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:108]: Doing action: CA_UNINSTALL_MODULE_TMP32 Action ended 17:38:26: CA_UNINSTALL_MODULE_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_UNINSTALL_MODULE_TMP32. MSI (s) (D8:10) [17:38:26:109]: Doing action: CA_ROLLBACK_MODULE_TMP32_PROPERTY Action ended 17:38:26: CA_UNINSTALL_MODULE_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:109]: PROPERTY CHANGE: Adding CA_ROLLBACK_MODULE_TMP32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ROLLBACK_MODULE_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:109]: Doing action: CA_ROLLBACK_MODULE_TMP32 Action ended 17:38:26: CA_ROLLBACK_MODULE_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_ROLLBACK_MODULE_TMP32. MSI (s) (D8:10) [17:38:26:110]: Doing action: CA_ADD_MODULE_TMP32_PROPERTY Action ended 17:38:26: CA_ROLLBACK_MODULE_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:110]: PROPERTY CHANGE: Adding CA_ADD_MODULE_TMP32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_ADD_MODULE_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:110]: Doing action: CA_ADD_MODULE_TMP32 Action ended 17:38:26: CA_ADD_MODULE_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_ADD_MODULE_TMP32. MSI (s) (D8:10) [17:38:26:111]: Doing action: CA_SET_MODULE_TMP32_PROPERTY Action ended 17:38:26: CA_ADD_MODULE_TMP32. Return value 1. MSI (s) (D8:10) [17:38:26:111]: PROPERTY CHANGE: Adding CA_SET_MODULE_TMP32 property. Its value is '"C:\Program Files (x86)\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config"'. Action start 17:38:26: CA_SET_MODULE_TMP32_PROPERTY. MSI (s) (D8:10) [17:38:26:111]: Doing action: CA_SET_MODULE_TMP32 Action ended 17:38:26: CA_SET_MODULE_TMP32_PROPERTY. Return value 1. Action start 17:38:26: CA_SET_MODULE_TMP32. MSI (s) (D8:10) [17:38:26:113]: Doing action: WriteRegistryValues Action ended 17:38:26: CA_SET_MODULE_TMP32. Return value 1. Action start 17:38:26: WriteRegistryValues. MSI (s) (D8:10) [17:38:26:114]: Doing action: RegisterUser Action ended 17:38:26: WriteRegistryValues. Return value 1. Action start 17:38:26: RegisterUser. MSI (s) (D8:10) [17:38:26:114]: Doing action: RegisterProduct Action ended 17:38:26: RegisterUser. Return value 1. Action start 17:38:26: RegisterProduct. MSI (s) (D8:10) [17:38:26:115]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'. MSI (s) (D8:10) [17:38:26:115]: Doing action: PublishFeatures Action ended 17:38:26: RegisterProduct. Return value 1. Action start 17:38:26: PublishFeatures. MSI (s) (D8:10) [17:38:26:115]: Doing action: PublishProduct Action ended 17:38:26: PublishFeatures. Return value 1. Action start 17:38:26: PublishProduct. MSI (s) (D8:10) [17:38:26:116]: Doing action: InstallFinalize Action ended 17:38:26: PublishProduct. Return value 1. MSI (s) (D8:10) [17:38:26:117]: Running Script: C:\Windows\Installer\MSICB28.tmp MSI (s) (D8:10) [17:38:26:117]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'. MSI (s) (D8:10) [17:38:26:117]: Note: 1: 2265 2: 3: -2147287035 MSI (s) (D8:10) [17:38:26:118]: Machine policy value 'DisableRollback' is 0 MSI (s) (D8:10) [17:38:26:118]: Note: 1: 2318 2: MSI (s) (D8:10) [17:38:26:119]: Note: 1: 2318 2: MSI (s) (D8:10) [17:38:26:119]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (D8:10) [17:38:26:119]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1416793294,LangId=1033,Platform=589824,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1) Action start 17:38:26: InstallFinalize. MSI (s) (D8:10) [17:38:26:119]: Executing op: ProductInfo(ProductKey={FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236},ProductName=Microsoft ASP.NET Core Module for IIS Express,PackageName=ancm_iis_express_x64_en.msi,Language=1033,Version=201475956,Assignment=1,ObsoleteArg=0,ProductIcon=AspNetCoreModule.ico,,PackageCode={0284D2EF-4072-428D-A85F-C356804F0AD6},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=3) MSI (s) (D8:10) [17:38:26:119]: Executing op: DialogInfo(Type=0,Argument=1033) MSI (s) (D8:10) [17:38:26:119]: Executing op: DialogInfo(Type=1,Argument=Microsoft ASP.NET Core Module for IIS Express) MSI (s) (D8:10) [17:38:26:119]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1]) MSI (s) (D8:10) [17:38:26:119]: Executing op: SetBaseline(Baseline=0,) MSI (s) (D8:10) [17:38:26:119]: Executing op: SetBaseline(Baseline=1,) MSI (s) (D8:10) [17:38:26:119]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,) MSI (s) (D8:10) [17:38:26:120]: Executing op: ProgressTotal(Total=5,Type=1,ByteEquivalent=24000) MSI (s) (D8:10) [17:38:26:120]: Executing op: ComponentRegister(ComponentId={A1D9FE60-0486-4ED9-AEC7-6544B827B1AE},KeyPath=C:\Program Files\IIS Express\aspnetcore.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=1) MSI (s) (D8:10) [17:38:26:120]: Executing op: ComponentRegister(ComponentId={76DD8204-A120-4C44-9B13-33E72A98A1E4},KeyPath=C:\Program Files\IIS Express\config\schema\aspnetcore_schema.xml,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=1) MSI (s) (D8:10) [17:38:26:121]: Executing op: ComponentRegister(ComponentId={F16FBAF7-4A51-4FB4-AB17-FE02548A6C7E},KeyPath=C:\Program Files (x86)\IIS Express\aspnetcore.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0) MSI (s) (D8:10) [17:38:26:121]: WIN64DUALFOLDERS: Substitution in 'C:\Program Files (x86)\IIS Express\aspnetcore.dll' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0). MSI (s) (D8:10) [17:38:26:121]: Executing op: ComponentRegister(ComponentId={61134449-1DA9-447F-8F2A-DCE91C757629},KeyPath=C:\Program Files (x86)\IIS Express\config\schema\aspnetcore_schema.xml,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0) MSI (s) (D8:10) [17:38:26:121]: WIN64DUALFOLDERS: Substitution in 'C:\Program Files (x86)\IIS Express\config\schema\aspnetcore_schema.xml' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0). MSI (s) (D8:10) [17:38:26:121]: Executing op: ComponentRegister(ComponentId={4143C8EF-EEF4-5F0E-B01D-85BDFF0F8DB8},KeyPath=02:\Software\Classes\Installer\Dependencies\IISExpress_AspNetCore_Module,x64\Version,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0) MSI (s) (D8:10) [17:38:26:121]: Executing op: ActionStart(Name=InstallFiles,Description=Copying new files,Template=File: [1], Directory: [9], Size: [6]) MSI (s) (D8:10) [17:38:26:121]: Executing op: ProgressTotal(Total=486874,Type=0,ByteEquivalent=1) MSI (s) (D8:10) [17:38:26:122]: Executing op: SetTargetFolder(Folder=C:\Program Files\IIS Express\) MSI (s) (D8:10) [17:38:26:122]: Executing op: SetSourceFolder(Folder=1\lwvwfwag\|IIS Express\) MSI (s) (D8:10) [17:38:26:122]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,MediaCabinet=aspnetcoremodule.cab,BytesPerTick=65536,CopierType=2,ModuleFileName=C:\Windows\Installer\21b1b.msi,,,,,IsFirstPhysicalMedia=1) MSI (s) (D8:10) [17:38:26:122]: Executing op: FileCopy(SourceName=hb01aaje.dll|aspnetcore.dll,SourceCabKey=AspNetCoreModuleDll,DestName=aspnetcore.dll,Attributes=512,FileSize=257600,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=12.2.18292.0,Language=1033,InstallMode=58982400,,,,,,,) MSI (s) (D8:10) [17:38:26:122]: File: C:\Program Files\IIS Express\aspnetcore.dll; To be installed; Won't patch; No existing file MSI (s) (D8:10) [17:38:26:122]: Source for file 'AspNetCoreModuleDll' is compressed MSI (s) (D8:10) [17:38:26:125]: Executing op: SetTargetFolder(Folder=C:\Program Files (x86)\IIS Express\) MSI (s) (D8:10) [17:38:26:125]: Executing op: SetSourceFolder(Folder=1\lwvwfwag\k0awoj07\|IIS Express\IIS Express\) MSI (s) (D8:10) [17:38:26:125]: Executing op: FileCopy(SourceName=f7i4jfmz.dll|aspnetcore.dll,SourceCabKey=AspNetCoreModuleDll.wow,DestName=aspnetcore.dll,Attributes=512,FileSize=223816,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=12.2.18292.0,Language=1033,InstallMode=58982400,,,,,,,) MSI (s) (D8:10) [17:38:26:125]: File: C:\Program Files (x86)\IIS Express\aspnetcore.dll; To be installed; Won't patch; No existing file MSI (s) (D8:10) [17:38:26:125]: Source for file 'AspNetCoreModuleDll.wow' is compressed MSI (s) (D8:10) [17:38:26:127]: Executing op: SetTargetFolder(Folder=C:\Program Files\IIS Express\config\schema\) MSI (s) (D8:10) [17:38:26:127]: Executing op: SetSourceFolder(Folder=1\lwvwfwag\config\schema\|IIS Express\config\schema\) MSI (s) (D8:10) [17:38:26:127]: Executing op: FileCopy(SourceName=0fhjmphb.xml|aspnetcore_schema.xml,SourceCabKey=AspNetCoreSchemaFile,DestName=aspnetcore_schema.xml,Attributes=512,FileSize=2729,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=1644425775,HashPart2=-1054965678,HashPart3=322598393,HashPart4=-31422616,,) MSI (s) (D8:10) [17:38:26:127]: File: C:\Program Files\IIS Express\config\schema\aspnetcore_schema.xml; To be installed; Won't patch; No existing file MSI (s) (D8:10) [17:38:26:127]: Source for file 'AspNetCoreSchemaFile' is compressed MSI (s) (D8:10) [17:38:26:128]: Executing op: SetTargetFolder(Folder=C:\Program Files (x86)\IIS Express\config\schema\) MSI (s) (D8:10) [17:38:26:128]: Executing op: SetSourceFolder(Folder=1\lwvwfwag\k0awoj07\config\schema\|IIS Express\IIS Express\config\schema\) MSI (s) (D8:10) [17:38:26:128]: Executing op: FileCopy(SourceName=-lgbhfyc.xml|aspnetcore_schema.xml,SourceCabKey=AspNetCoreSchemaFile.wow,DestName=aspnetcore_schema.xml,Attributes=512,FileSize=2729,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=1644425775,HashPart2=-1054965678,HashPart3=322598393,HashPart4=-31422616,,) MSI (s) (D8:10) [17:38:26:128]: File: C:\Program Files (x86)\IIS Express\config\schema\aspnetcore_schema.xml; To be installed; Won't patch; No existing file MSI (s) (D8:10) [17:38:26:128]: Source for file 'AspNetCoreSchemaFile.wow' is compressed MSI (s) (D8:10) [17:38:26:128]: Executing op: CacheSizeFlush(,) MSI (s) (D8:10) [17:38:26:128]: Executing op: ActionStart(Name=CA_UNLOCK_HANDLER,,) MSI (s) (D8:10) [17:38:26:129]: Executing op: CustomActionSchedule(Action=CA_UNLOCK_HANDLER,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:D0) [17:38:26:130]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICB68.tmp, Entrypoint: CAQuietExec MSI (s) (D8:5C) [17:38:26:130]: Generating random cookie. MSI (s) (D8:5C) [17:38:26:132]: Created Custom Action Server with PID 4916 (0x1334). MSI (s) (D8:48) [17:38:26:146]: Running as a service. MSI (s) (D8:48) [17:38:26:148]: Hello, I'm your 32bit Elevated Non-remapped custom action server. MSI (s) (D8:10) [17:38:26:364]: Executing op: ActionStart(Name=CA_UNINSTALL_MODULE,,) CAQuietExec: Unlocked section "system.webServer/handlers" at configuration path "MACHINE/WEBROOT/APPHOST". MSI (s) (D8:10) [17:38:26:364]: Executing op: CustomActionSchedule(Action=CA_UNINSTALL_MODULE,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:34) [17:38:26:365]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICC53.tmp, Entrypoint: CAQuietExec CAQuietExec: ERROR ( message:Cannot find GLOBAL MODULE object with identifier "AspNetCoreModule". ) CAQuietExec: Error 0x80070490: Command line returned an error. CAQuietExec: Error 0x80070490: QuietExec Failed CAQuietExec: Error 0x80070490: Failed in ExecCommon method MSI (s) (D8:10) [17:38:26:453]: Executing op: ActionStart(Name=CA_ROLLBACK_MODULE,,) CustomAction CA_UNINSTALL_MODULE returned actual error code 1603 but will be translated to success due to continue marking MSI (s) (D8:10) [17:38:26:453]: Executing op: CustomActionSchedule(Action=CA_ROLLBACK_MODULE,ActionType=3393,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:10) [17:38:26:454]: Executing op: ActionStart(Name=CA_ADD_MODULE,,) MSI (s) (D8:10) [17:38:26:454]: Executing op: CustomActionSchedule(Action=CA_ADD_MODULE,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:C4) [17:38:26:454]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICCB2.tmp, Entrypoint: CAQuietExec CAQuietExec: GLOBAL MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:26:517]: Executing op: ActionStart(Name=CA_SET_MODULE,,) CAQuietExec: MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:26:517]: Executing op: CustomActionSchedule(Action=CA_SET_MODULE,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:94) [17:38:26:518]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICCF1.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:26:596]: Executing op: ActionStart(Name=CA_ADD_CONFIGSECTION,,) CAQuietExec: MODULE object "AspNetCoreModule" changed MSI (s) (D8:10) [17:38:26:596]: Executing op: CustomActionSchedule(Action=CA_ADD_CONFIGSECTION,ActionType=7205,Source=var caData = Session.Property("CustomActionData"); configfiles = caData.split(';'); for (var i = 0; i < configfiles.length; i++) { var configfile = configfiles[i]; var xmlDoc = new ActiveXObject("Msxml2.DOMDocument"); xmlDoc.async = false; xmlDoc.preserveWhiteSpace = true; xmlDoc.load(configfile ); if (xmlDoc.parseError.errorCode == 0) { xmlDoc.setProperty("SelectionLanguage", "XPath"); var websvrNode = xmlDoc.selectSingleNode("//configuration/configSections/sectionGroup[@name=\"system.webServer\"]"); if (websvrNode != null) { var ancmNode = xmlDoc.selectSingleNode("//configuration/configSections/sectionGroup[@name=\"system.webServer\"]/section[@name=\"aspNetCore\"]"); if (ancmNo MSI (s) (D8:5C) [17:38:26:596]: Generating random cookie. MSI (s) (D8:5C) [17:38:26:598]: Created Custom Action Server with PID 2652 (0xA5C). MSI (s) (D8:48) [17:38:26:608]: Running as a service. MSI (s) (D8:48) [17:38:26:610]: Hello, I'm your 64bit Elevated Non-remapped custom action server. MSI (s) (D8:10) [17:38:26:644]: Executing op: ActionStart(Name=CA_ADD_TRACE_PROVIDER_DEFINITION,,) MSI (s) (D8:10) [17:38:26:645]: Executing op: CustomActionSchedule(Action=CA_ADD_TRACE_PROVIDER_DEFINITION,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:94) [17:38:26:646]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICD6F.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:26:721]: Executing op: ActionStart(Name=CA_ADD_TRACE_PROVIDER_DEFINITION_TMP,,) CAQuietExec: Applied configuration changes to section "system.webServer/tracing/traceProviderDefinitions" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:26:721]: Executing op: CustomActionSchedule(Action=CA_ADD_TRACE_PROVIDER_DEFINITION_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:84) [17:38:26:722]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICDBF.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:26:799]: Executing op: ActionStart(Name=CA_UPDATE_DYNAMIC_COMPRESSION_TMP,,) CAQuietExec: Applied configuration changes to section "system.webServer/tracing/traceProviderDefinitions" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:26:799]: Executing op: CustomActionSchedule(Action=CA_UPDATE_DYNAMIC_COMPRESSION_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" set config -section:system.webServer/httpCompression /+"dynamicTypes.[mimeType='text/event-stream',enabled='FALSE']" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:D0) [17:38:26:800]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICE0E.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:26:878]: Executing op: ActionStart(Name=CA_UNLOCK_HANDLER_TMP,,) CAQuietExec: Applied configuration changes to section "system.webServer/httpCompression" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:26:878]: Executing op: CustomActionSchedule(Action=CA_UNLOCK_HANDLER_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:60) [17:38:26:879]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICE5D.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:26:956]: Executing op: ActionStart(Name=CA_UNINSTALL_MODULE_TMP,,) CAQuietExec: Unlocked section "system.webServer/handlers" at configuration path "MACHINE/WEBROOT/APPHOST". MSI (s) (D8:10) [17:38:26:956]: Executing op: CustomActionSchedule(Action=CA_UNINSTALL_MODULE_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:CC) [17:38:26:957]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICEAC.tmp, Entrypoint: CAQuietExec CAQuietExec: ERROR ( message:Cannot find GLOBAL MODULE object with identifier "AspNetCoreModule". ) CAQuietExec: Error 0x80070490: Command line returned an error. CAQuietExec: Error 0x80070490: QuietExec Failed CAQuietExec: Error 0x80070490: Failed in ExecCommon method MSI (s) (D8:10) [17:38:27:008]: Executing op: ActionStart(Name=CA_ROLLBACK_MODULE_TMP,,) CustomAction CA_UNINSTALL_MODULE_TMP returned actual error code 1603 but will be translated to success due to continue marking MSI (s) (D8:10) [17:38:27:008]: Executing op: CustomActionSchedule(Action=CA_ROLLBACK_MODULE_TMP,ActionType=3393,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:10) [17:38:27:009]: Executing op: ActionStart(Name=CA_ADD_MODULE_TMP,,) MSI (s) (D8:10) [17:38:27:009]: Executing op: CustomActionSchedule(Action=CA_ADD_MODULE_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:E0) [17:38:27:010]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICEDC.tmp, Entrypoint: CAQuietExec CAQuietExec: GLOBAL MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:27:079]: Executing op: ActionStart(Name=CA_SET_MODULE_TMP,,) CAQuietExec: MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:27:079]: Executing op: CustomActionSchedule(Action=CA_SET_MODULE_TMP,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:50) [17:38:27:081]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICF2B.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:157]: Executing op: ActionStart(Name=CA_UNLOCK_HANDLER32,,) CAQuietExec: MODULE object "AspNetCoreModule" changed MSI (s) (D8:10) [17:38:27:157]: Executing op: CustomActionSchedule(Action=CA_UNLOCK_HANDLER32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:FC) [17:38:27:158]: Invoking remote custom action. DLL: C:\Windows\Installer\MSICF7A.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:391]: Executing op: ActionStart(Name=CA_UNINSTALL_MODULE32,,) CAQuietExec: Unlocked section "system.webServer/handlers" at configuration path "MACHINE/WEBROOT/APPHOST". MSI (s) (D8:10) [17:38:27:391]: Executing op: CustomActionSchedule(Action=CA_UNINSTALL_MODULE32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:00) [17:38:27:392]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID065.tmp, Entrypoint: CAQuietExec CAQuietExec: ERROR ( message:Cannot find GLOBAL MODULE object with identifier "AspNetCoreModule". ) CAQuietExec: Error 0x80070490: Command line returned an error. CAQuietExec: Error 0x80070490: QuietExec Failed CAQuietExec: Error 0x80070490: Failed in ExecCommon method MSI (s) (D8:10) [17:38:27:483]: Executing op: ActionStart(Name=CA_ROLLBACK_MODULE32,,) CustomAction CA_UNINSTALL_MODULE32 returned actual error code 1603 but will be translated to success due to continue marking MSI (s) (D8:10) [17:38:27:483]: Executing op: CustomActionSchedule(Action=CA_ROLLBACK_MODULE32,ActionType=3393,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:10) [17:38:27:484]: Executing op: ActionStart(Name=CA_ADD_MODULE32,,) MSI (s) (D8:10) [17:38:27:484]: Executing op: CustomActionSchedule(Action=CA_ADD_MODULE32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:A0) [17:38:27:485]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID0B5.tmp, Entrypoint: CAQuietExec CAQuietExec: GLOBAL MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:27:558]: Executing op: ActionStart(Name=CA_SET_MODULE32,,) CAQuietExec: MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:27:558]: Executing op: CustomActionSchedule(Action=CA_SET_MODULE32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:C8) [17:38:27:559]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID104.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:636]: Executing op: ActionStart(Name=CA_ADD_CONFIGSECTION32,,) CAQuietExec: MODULE object "AspNetCoreModule" changed MSI (s) (D8:10) [17:38:27:636]: Executing op: CustomActionSchedule(Action=CA_ADD_CONFIGSECTION32,ActionType=7205,Source=var caData = Session.Property("CustomActionData"); configfiles = caData.split(';'); for (var i = 0; i < configfiles.length; i++) { var configfile = configfiles[i]; var xmlDoc = new ActiveXObject("Msxml2.DOMDocument"); xmlDoc.async = false; xmlDoc.preserveWhiteSpace = true; xmlDoc.load(configfile); if (xmlDoc.parseError.errorCode == 0) { xmlDoc.setProperty("SelectionLanguage", "XPath"); var websvrNode = xmlDoc.selectSingleNode("//configuration/configSections/sectionGroup[@name=\"system.webServer\"]"); if (websvrNode != null) { var ancmNode = xmlDoc.selectSingleNode("//configuration/configSections/sectionGroup[@name=\"system.webServer\"]/section[@name=\"aspNetC MSI (s) (D8:10) [17:38:27:652]: Executing op: ActionStart(Name=CA_ADD_TRACE_PROVIDER_DEFINITION32,,) MSI (s) (D8:10) [17:38:27:652]: Executing op: CustomActionSchedule(Action=CA_ADD_TRACE_PROVIDER_DEFINITION32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:94) [17:38:27:654]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID162.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:746]: Executing op: ActionStart(Name=CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32,,) CAQuietExec: Applied configuration changes to section "system.webServer/tracing/traceProviderDefinitions" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:27:746]: Executing op: CustomActionSchedule(Action=CA_ADD_TRACE_PROVIDER_DEFINITION_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/tracing/traceProviderDefinitions /+"[name='WWW Server'].areas.[name='ANCM',value='65536']" /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:98) [17:38:27:747]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID1C1.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:841]: Executing op: ActionStart(Name=CA_UPDATE_DYNAMIC_COMPRESSION_TMP32,,) CAQuietExec: Applied configuration changes to section "system.webServer/tracing/traceProviderDefinitions" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:27:841]: Executing op: CustomActionSchedule(Action=CA_UPDATE_DYNAMIC_COMPRESSION_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" set config -section:system.webServer/httpCompression /+"dynamicTypes.[mimeType='text/event-stream',enabled='FALSE']" /apphostconfig:"C:\Program Files (x86)\IIS Express\AppServer\applicationhost.config") MSI (s) (D8:AC) [17:38:27:842]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID220.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:27:934]: Executing op: ActionStart(Name=CA_UNLOCK_HANDLER_TMP32,,) CAQuietExec: Applied configuration changes to section "system.webServer/httpCompression" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST" MSI (s) (D8:10) [17:38:27:934]: Executing op: CustomActionSchedule(Action=CA_UNLOCK_HANDLER_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" unlock config /section:system.webserver/handlers /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:24) [17:38:27:935]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID27F.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:28:011]: Executing op: ActionStart(Name=CA_UNINSTALL_MODULE_TMP32,,) CAQuietExec: Unlocked section "system.webServer/handlers" at configuration path "MACHINE/WEBROOT/APPHOST". MSI (s) (D8:10) [17:38:28:011]: Executing op: CustomActionSchedule(Action=CA_UNINSTALL_MODULE_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:5C) [17:38:28:013]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID2CE.tmp, Entrypoint: CAQuietExec CAQuietExec: ERROR ( message:Cannot find GLOBAL MODULE object with identifier "AspNetCoreModule". ) CAQuietExec: Error 0x80070490: Command line returned an error. CAQuietExec: Error 0x80070490: QuietExec Failed CAQuietExec: Error 0x80070490: Failed in ExecCommon method MSI (s) (D8:10) [17:38:28:067]: Executing op: ActionStart(Name=CA_ROLLBACK_MODULE_TMP32,,) CustomAction CA_UNINSTALL_MODULE_TMP32 returned actual error code 1603 but will be translated to success due to continue marking MSI (s) (D8:10) [17:38:28:067]: Executing op: CustomActionSchedule(Action=CA_ROLLBACK_MODULE_TMP32,ActionType=3393,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" uninstall module AspNetCoreModule /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:10) [17:38:28:068]: Executing op: ActionStart(Name=CA_ADD_MODULE_TMP32,,) MSI (s) (D8:10) [17:38:28:068]: Executing op: CustomActionSchedule(Action=CA_ADD_MODULE_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" install module /name:AspNetCoreModule /image:"%IIS_BIN%\aspnetcore.dll" /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:58) [17:38:28:069]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID30D.tmp, Entrypoint: CAQuietExec CAQuietExec: GLOBAL MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:28:149]: Executing op: ActionStart(Name=CA_SET_MODULE_TMP32,,) CAQuietExec: MODULE object "AspNetCoreModule" added MSI (s) (D8:10) [17:38:28:149]: Executing op: CustomActionSchedule(Action=CA_SET_MODULE_TMP32,ActionType=3137,Source=BinaryData,Target=CAQuietExec,CustomActionData="C:\Program Files (x86)\IIS Express\appcmd.exe" set module AspNetCoreModule /lockItem:true /apphostconfig:"C:\Program Files (x86)\IIS Express\config\templates\PersonalWebServer\applicationhost.config") MSI (s) (D8:8C) [17:38:28:150]: Invoking remote custom action. DLL: C:\Windows\Installer\MSID35C.tmp, Entrypoint: CAQuietExec MSI (s) (D8:10) [17:38:28:227]: Executing op: ActionStart(Name=WriteRegistryValues,Description=Writing system registry values,Template=Key: [1], Name: [2], Value: [3]) CAQuietExec: MODULE object "AspNetCoreModule" changed MSI (s) (D8:10) [17:38:28:227]: Executing op: ProgressTotal(Total=7,Type=1,ByteEquivalent=13200) MSI (s) (D8:10) [17:38:28:227]: Executing op: RegOpenKey(Root=-1,Key=Software\Classes\Installer\Dependencies\IISExpress_AspNetCore_Module,x64,,BinaryType=0,,) MSI (s) (D8:10) [17:38:28:227]: Executing op: RegAddValue(Name=Version,Value=12.2.18292.0,) MSI (s) (D8:10) [17:38:28:227]: Executing op: RegAddValue(,Value={FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236},) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegAddValue(Name=DisplayName,Value=Microsoft ASP.NET Core Module for IIS Express,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegOpenKey(Root=-2147483646,Key=SYSTEM\CurrentControlSet\Services\EventLog\Application\IIS Express AspNetCore Module,,BinaryType=0,,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegAddValue(Name=EventMessageFile,Value=#%C:\Program Files (x86)\IIS Express\aspnetcore.dll,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegAddValue(Name=TypesSupported,Value=#7,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegOpenKey(Root=-2147483646,Key=SYSTEM\CurrentControlSet\Services\EventLog\Application\IIS Express AspNetCore Module,,BinaryType=1,,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegAddValue(Name=EventMessageFile,Value=#%C:\Program Files\IIS Express\aspnetcore.dll,) MSI (s) (D8:10) [17:38:28:228]: Executing op: RegAddValue(Name=TypesSupported,Value=#7,) MSI (s) (D8:10) [17:38:28:229]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1]) MSI (s) (D8:10) [17:38:28:229]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,MediaCabinet=aspnetcoremodule.cab,BytesPerTick=0,CopierType=2,ModuleFileName=C:\Windows\Installer\21b1b.msi,,,,,IsFirstPhysicalMedia=1) MSI (s) (D8:10) [17:38:28:229]: Executing op: DatabaseCopy(DatabasePath=C:\Windows\Installer\21b1b.msi,ProductCode={FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236},,,) MSI (s) (D8:10) [17:38:28:229]: Note: 1: 1402 2: UNKNOWN\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63\InstallProperties 3: 2 MSI (s) (D8:10) [17:38:28:229]: Note: 1: 2318 2: C:\Windows\Installer\21b1f.msi MSI (s) (D8:10) [17:38:28:229]: File will have security applied from OpCode. MSI (s) (D8:10) [17:38:28:230]: Executing op: ProductRegister(UpgradeCode={BAAD43D4-CFD2-4082-AD7C-BA9EF673CCEB},VersionString=12.2.18292.0,,,,InstallSource=C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\,Publisher=Microsoft Corporation,,,,NoModify=1,,,,Contact=Microsoft Corporation,,,SystemComponent=1,EstimatedSize=460,,,,) MSI (s) (D8:10) [17:38:28:232]: Executing op: ProductCPDisplayInfoRegister() MSI (s) (D8:10) [17:38:28:232]: Executing op: ActionStart(Name=PublishFeatures,Description=Publishing Product Features,Template=Feature: [1]) MSI (s) (D8:10) [17:38:28:232]: Executing op: FeaturePublish(Feature=AspNetCoreModuleFeature,,Absent=2,Component=XL[$]+k%EAHLV}9iGI0aXh=5N{XWS@Gl,BsryyPr8%kZvsgL]AA$iz!Gui^P%'~4G^89$=Sjl1tYpeC1) MSI (s) (D8:10) [17:38:28:233]: Executing op: FeaturePublish(Feature=FT_DepProvider_IISExpress_ANCM,,Absent=2,Component=fhz{8zTtVF5RPve!'gBd) MSI (s) (D8:10) [17:38:28:233]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,) MSI (s) (D8:10) [17:38:28:234]: Executing op: IconCreate(Icon=AspNetCoreModule.ico,Data=BinaryData) MSI (s) (D8:10) [17:38:28:235]: Executing op: CleanupConfigData() MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63\Patches 3: 2 MSI (s) (D8:10) [17:38:28:235]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0) MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63\Patches 3: 2 MSI (s) (D8:10) [17:38:28:235]: Executing op: ProductPublish(PackageKey={0284D2EF-4072-428D-A85F-C356804F0AD6}) MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:235]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63 3: 2 MSI (s) (D8:10) [17:38:28:236]: Executing op: UpgradeCodePublish(UpgradeCode={BAAD43D4-CFD2-4082-AD7C-BA9EF673CCEB}) MSI (s) (D8:10) [17:38:28:236]: Executing op: SourceListPublish(,,,,NumberOfDisks=1) MSI (s) (D8:10) [17:38:28:236]: Note: 1: 1402 2: UNKNOWN\Installer\Products\3E5EEFAFA00E8EC44B59F8665AAF2B63\SourceList 3: 2 MSI (s) (D8:10) [17:38:28:236]: Executing op: ProductPublishClient(,,) MSI (s) (D8:10) [17:38:28:236]: Executing op: SourceListRegisterLastUsed(SourceProduct={FAFEE5E3-E00A-4CE8-B495-8F66A5FAB236},LastUsedSource=C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\) MSI (s) (D8:10) [17:38:28:236]: Entering CMsiConfigurationManager::SetLastUsedSource. MSI (s) (D8:10) [17:38:28:236]: Specifed source is already in a list. MSI (s) (D8:10) [17:38:28:236]: User policy value 'SearchOrder' is 'nmu' MSI (s) (D8:10) [17:38:28:236]: Adding new sources is allowed. MSI (s) (D8:10) [17:38:28:236]: Set LastUsedSource to: C:\ProgramData\Microsoft\VisualStudio\Packages\Microsoft.Ancm.IISExpress.Msi,version=17.1.32112.364,chip=x64\. MSI (s) (D8:10) [17:38:28:236]: Set LastUsedType to: n. MSI (s) (D8:10) [17:38:28:236]: Set LastUsedIndex to: 1. MSI (s) (D8:10) [17:38:28:236]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=1567626) MSI (s) (D8:10) [17:38:28:240]: Note: 1: 2265 2: 3: -2147287035 MSI (s) (D8:10) [17:38:28:240]: User policy value 'DisableRollback' is 0 MSI (s) (D8:10) [17:38:28:240]: Machine policy value 'DisableRollback' is 0 MSI (s) (D8:10) [17:38:28:240]: Note: 1: 2265 2: 3: -2147287035 MSI (s) (D8:10) [17:38:28:241]: Note: 1: 2318 2: MSI (s) (D8:10) [17:38:28:242]: Note: 1: 2318 2: MSI (s) (D8:10) [17:38:28:242]: No System Restore sequence number for this installation. MSI (s) (D8:10) [17:38:28:242]: Unlocking Server MSI (s) (D8:10) [17:38:28:247]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'. MSI (s) (D8:10) [17:38:28:247]: Doing action: RemoveExistingProducts Action ended 17:38:28: InstallFinalize. Return value 1. Action start 17:38:28: RemoveExistingProducts. Action ended 17:38:28: RemoveExistingProducts. Return value 1. Action ended 17:38:28: INSTALL. Return value 1. MSI (s) (D8:10) [17:38:28:249]: Note: 1: 1707 MSI (s) (D8:10) [17:38:28:249]: Product: Microsoft ASP.NET Core Module for IIS Express -- Installation completed successfully. MSI (s) (D8:10) [17:38:28:249]: Windows Installer installed the product. Product Name: Microsoft ASP.NET Core Module for IIS Express. Product Version: 12.2.18292.0. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success or error status: 0. MSI (s) (D8:10) [17:38:28:252]: Deferring clean up of packages/files, if any exist MSI (s) (D8:10) [17:38:28:252]: MainEngineThread is returning 0 MSI (s) (D8:F0) [17:38:28:255]: RESTART MANAGER: Session closed. MSI (s) (D8:F0) [17:38:28:255]: No System Restore sequence number for this installation. === Logging stopped: 3/18/2022 17:38:28 === MSI (s) (D8:F0) [17:38:28:256]: User policy value 'DisableRollback' is 0 MSI (s) (D8:F0) [17:38:28:256]: Machine policy value 'DisableRollback' is 0 MSI (s) (D8:F0) [17:38:28:256]: Incrementing counter to disable shutdown. Counter after increment: 0 MSI (s) (D8:F0) [17:38:28:256]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (D8:F0) [17:38:28:257]: Note: 1: 2265 2: 3: -2147287035 MSI (s) (D8:F0) [17:38:28:257]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 MSI (s) (D8:F0) [17:38:28:258]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI (s) (D8:F0) [17:38:28:258]: Destroying RemoteAPI object. MSI (s) (D8:5C) [17:38:28:259]: Custom Action Manager thread ending. MSI (c) (14:34) [17:38:28:259]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1 MSI (c) (14:34) [17:38:28:260]: MainEngineThread is returning 0 === Verbose logging stopped: 3/18/2022 17:38:28 === ```
joeloff commented 2 years ago

@adityamandaleeka, this should go to someone on the ASP.NET side. I promised @Pilchie I'd help out by looking at setup issues

joeloff commented 2 years ago

@rambouillet, looking at the setup authoring in VS it should be installing both ANCM v1 and v2 for IISExpress. Do you have the primary log, based on the log you posted, it should be called dd_setup_20220318173159.log. This log would have the overall planning, detection, etc. of the complete VS install and may shed some light as to why VS did not install ANCM v2. There's no conditions attached to ANCM for IISExpress. The only reason why it would skip a package like this would be if it thinks it's already installed.

rambouillet commented 2 years ago

@joeloff I accidentally closed the issue. Reopening.

rambouillet commented 2 years ago

@joeloff Here is the log you asked for. I couldn't copy/paste the text here because it exceed the comment length limit.

Note: I completely uninstalled Visual Studio and IIS Express (using their respective uninstallers) before reinstalling Visual Studio. Before reinstalling, I also confirmed the IIS Express folders in C:\Program Files and C:\Program Files (x86) were manually deleted. So, this log should reflect a fresh install of everything. Perhaps it doesn't though.

dd_setup_20220318173159.zip

joeloff commented 2 years ago

The logs shows that it has detected an installed copy of ANCM v2:

[2314:000b][2022-03-18T17:32:00] Compatible ProductCode '{5586FE05-A6CA-4216-A8AB-89CEF8DB610F}' found for package 'Microsoft.Ancmv2.IISExpress.Msi,version=17.1.32112.364,chip=x64'
...
[2314:000b][2022-03-18T17:32:01] Package 'Microsoft.Ancmv2.IISExpress.Msi' is found present,doesn't participate in ref count, and manifest is missing, it will be marked as permanent.
...
[2314:000b][2022-03-18T17:32:01] Package: Microsoft.Ancmv2.IISExpress.Msi,version=17.1.32112.364,chip=x64, CurrentState: Absent, RequestedState: Present, DetectionState: Superseded, PlannedAction: None.
[2314:000b][2022-03-18T17:32:01] Dependency action plan - PackageExecuteAction: None, PlannedActionForDependency: Add.

Eventually it ends up classifying the package as superseded so it sets the execution plan to None. We might be able to forcibly remove this and have VS reinstall it. Do you see anything under this key in the registry?

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Dependencies\IISExpress_AspNetCore_Module_V2,x64

Specifically under the Dependents subkey

The logs shows that it has detected an installed copy of ANCM v2:

[2314:000b][2022-03-18T17:32:00] Compatible ProductCode '{5586FE05-A6CA-4216-A8AB-89CEF8DB610F}' found for package 'Microsoft.Ancmv2.IISExpress.Msi,version=17.1.32112.364,chip=x64'
...
[2314:000b][2022-03-18T17:32:01] Package 'Microsoft.Ancmv2.IISExpress.Msi' is found present,doesn't participate in ref count, and manifest is missing, it will be marked as permanent.
...
[2314:000b][2022-03-18T17:32:01] Package: Microsoft.Ancmv2.IISExpress.Msi,version=17.1.32112.364,chip=x64, CurrentState: Absent, RequestedState: Present, DetectionState: Superseded, PlannedAction: None.
[2314:000b][2022-03-18T17:32:01] Dependency action plan - PackageExecuteAction: None, PlannedActionForDependency: Add.

Eventually it ends up classifying the package as superseded so it sets the execution plan to None. We might be able to forcibly remove this and have VS reinstall it. Do you see anything under this key in the registry?

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Dependencies\IISExpress_AspNetCore_Module_V2,x64

Specifically under the Dependents subkey

image

wtgodbe commented 2 years ago

@rambouillet were you able to check the registry for the value @joeloff mentioned above?

rambouillet commented 2 years ago

@joeloff @wtgodbe Apologies for the late response. Yes, that registry key does have some things. Here is a screenshot of mine:

dependents

Should I delete the key IISExpress_AspNetCore_Module_V2,x64 and try reinstalling?

joeloff commented 2 years ago

Thank you. That value indicates that one or more instance of VS believes it installed the package. One thing you can try it to forcibly remove it and then repair VS.

msiexec /x {5586FE05-A6CA-4216-A8AB-89CEF8DB610F} IGNOREDEPENDENCIES=ALL should remove it and then repairing VS should not find that it's installed I think and reinstall it for you

wtgodbe commented 2 years ago

This should be fixed in the May release of 17.1/17.2.