Software⏱️ 4 min read📅 2026-06-11

How to Fix: FTP setup error (from IIS) Invalid Application Pool name

Invalid Application Pool Name error when setting up FTP server in IIS on Windows 8.1.

Quick Answer: Check if the application pool name is correctly spelled and try creating a new application pool with the same name.

The error 'Invalid Application Pool Name' occurs when you attempt to add an FTP site in IIS Manager on Windows 8.1, resulting in an inability to establish a connection with your home FTP server.

This issue can be frustrating for users who want to set up a secure and reliable FTP server, but are unable to do so due to this specific error message.

🔍 Why This Happens

  • The primary reason for this error is that the Application Pool name you specify does not exist in IIS. When creating an FTP site, IIS looks for an existing Application Pool with a matching name, and if it cannot find one, it throws an invalid application pool name error.
  • Another potential cause could be that the Application Pool identity used by the FTP site is set to a non-existent user account or group.

🛠️ Step-by-Step Verified Fixes

Creating a new Application Pool

  1. Step 1: Step 1: Open IIS Manager and navigate to the 'Application Pools' section.
  2. Step 2: Step 2: Right-click on the 'Application Pools' section and select 'New Application Pool'.
  3. Step 3: Step 3: In the 'Create Application Pool' dialog box, enter a unique name for your FTP site's application pool. This name should be descriptive and easy to identify.
  4. Step 4: Step 4: Select the '.NET CLR version' as 'v2.0.50727' and set the 'Managed Pipeline Mode' to 'Integrated'.
  5. Step 5: Step 5: Click 'OK' to create the new Application Pool.

Using an existing Application Pool

  1. Step 1: Step 1: Open IIS Manager and navigate to the 'Application Pools' section.
  2. Step 2: Step 2: Find an existing Application Pool that you can use for your FTP site. This could be a pool created previously or one from a default installation of IIS.
  3. Step 3: Step 3: Right-click on the desired Application Pool and select 'Advanced settings'.
  4. Step 4: Step 4: In the 'Application Pool' properties window, click on the 'Identity' tab.
  5. Step 5: Step 5: Ensure that the user account used by the FTP site matches the identity of the existing Application Pool. You can do this by selecting the correct user or group from the dropdown list.

🎯 Final Words

To resolve the 'Invalid Application Pool Name' error when setting up an FTP server in IIS Manager, you can either create a new Application Pool with a unique name or use an existing one that matches the identity of your FTP site. By following these steps, you should be able to establish a connection with your home FTP server and enjoy secure file transfers.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions