Umbraco 12/13 How to install Umbraco using CMD

Опубликовано: 17 Июль 2026
на канале: HKTechArchitect
154
16

I have installed Umbraco 13 RC to test and explore it. Here I tried to install Umbraco using the command Prompt.

To install Umbraco using the Command Prompt (CMD), you can follow these general steps. Please note that the exact commands and procedures may vary based on your specific environment and the version of Umbraco you are using.

1. *Prerequisites:*
Make sure you have a web server with ASP.NET support installed. IIS (Internet Information Services) is commonly used.
Ensure that you have the .NET Framework installed.
Download the Umbraco CMS package from the official website: [https://umbraco.com/download/](https://umbraco.com/download/)

2. *Extract Umbraco Files:*
Extract the downloaded Umbraco zip file to a directory where you want to host your Umbraco website.

3. *Create a Database:*
Create a new database in your preferred database management system (e.g., SQL Server).
Make sure to note down the database connection details (server name, database name, username, and password).

4. *Configure IIS:*
Open IIS Manager.
Create a new website or use an existing one.
Set the physical path to the directory where you extracted Umbraco files.

5. *Install Umbraco:*
Open CMD with administrator privileges.
Navigate to the directory where Umbraco files are located.

```bash
cd path\to\umbraco
```

Run the following command to install Umbraco:

```bash
dotnet new -i Umbraco.Templates::9.0.0
dotnet new umbraco -n YourUmbracoSite
```

Replace "YourUmbracoSite" with the desired name for your Umbraco site.

6. *Configure Umbraco:*
Open a web browser and navigate to your Umbraco site.
Follow the on-screen instructions to set up your Umbraco site. You'll need to provide database connection details, create an admin account, and configure other settings.

7. *Post-Installation Steps:*
After installation, you can log in to the Umbraco backoffice using the credentials you set during the installation.
Customize your Umbraco site, create content, and configure additional settings as needed.

Please note that the above steps provide a general guideline, and you may need to refer to the official Umbraco documentation for any version-specific instructions or troubleshooting. Also, make sure to secure your Umbraco installation by following best practices for web application security.


#umbracocms #dotnetcore #csharp #community #tutorial #shorts #development #software