Bacancy Technology
Bacancy Technology represents the connected world, offering innovative and customer-centric information technology experiences, enabling Enterprises, Associates and the Society to Rise™.
12+
Countries where we have happy customers
1050+
Agile enabled employees
06
World wide offices
12+
Years of Experience
05
Agile Coaches
14
Certified Scrum Masters
1000+
Clients projects
1458
Happy customers
Artificial Intelligence
Machine Learning
Salesforce
Microsoft
SAP
March 18, 2024
This documentation provides step-by-step instructions on installing the .NET Core Hosting Bundle from the command line and specifically focuses on waiting for the silent installation of ASP.NET Core 6.0 Runtime.
Before proceeding, ensure that you have the following prerequisites:
Visit the official .NET download page (https://dotnet.microsoft.com/download) and locate the .NET Core Hosting Bundle for your operating system.
For Windows, you can download the installer executable
(dotnet-hosting-6.x.x-win.exe).
Open your preferred command-line interface with administrative privileges.
# Right-click and run as administrator for PowerShell # OR # Run as administrator for Command Prompt
Open a terminal.
Navigate to the directory where you downloaded the .NET Core Hosting Bundle installer.
cd path/to/downloaded/directory
Execute the installer with the appropriate command for your operating system.
# Silent installation with wait Start-Process -Wait -FilePath "dotnet-hosting-6.x.x-win.exe" -ArgumentList "/quiet /norestart"
# Silent installation with wait sudo ./dotnet-hosting-6.x.x-linux-x64.tar.gz
After installation, verify that ASP.NET Core 6.0 Runtime is correctly installed.
# Check ASP.NET Core version dotnet --list-runtimes