Skip to main content

IIS Server | Enabling IIS Server on Windows

There are several servers available for deploying your application. In this tutorial we will look at how we can enable/activate IIS(Internet Information Services) Server on Windows machine.

Note:- You must have admin permission to your machine.

Please follow below steps to enable IIS Server on your Windows system -
1:- Open control panel and click on Programs and Features option.


2:- On Programs and Features window, choose Turn Windows features on or off option from left panel.


3:- On Windows Feature screen, tick the Internet Information Services  checkbox option and click OK button.

4:- Open browser and open http://localhost URL. You should be able to see the below page-
That's all. IIS Server is enabled on your machine now.

Hope this will help you. Suggestions are most welcome. Keep visiting my blog :)

Comments

Popular posts from this blog

app-policy

PRIVACY POLICY Last updated April 19, 2023 This privacy notice for Team CoderzDuniya ( " Company ," " we ," " us ," or " our " ), describes how and why we might collect, store, use, and/or share ( " process " ) your information when you use our services ( " Services " ), such as when you: Download and use our mobile application ( Revenue Calculator) , or any other application of ours that links to this privacy notice Engage with us in other related ways, including any sales, marketing, or events Questions or concerns?  Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services. If you still have any questions or concerns, please contact us at droidamar007@gmail.com . SUMMARY OF KEY POINTS This summary provides key points from our privacy notice, but you can find out more details about any of these t...

Java Socket Basics(Socket Programming in Java) Part-2(UDP)

Hi friends, We are going to discuss about UDP Socket Programming . In previous post  we discussed about the differences between TCP & UDP and the sample example of TCP Socket Programming. Below is the sample example of chat application using UDP  Socket Programming . UDP Sample :-  We are going to create an small example which contains two classes. UdpServer.java:-  This is a server class. Means this class will serve the purpose of socket connection. DatagramSocket is the java class and serve the purpose of Server and Client both. The overloaded constructor of DatagramSocket class matters. DatagramPacket is the java class which is responsible to transmit the data/packet over the network from server to client and vice-versa. UdpClient.java:-  This is client class. This serves the purpose of client which will communicate to server and send data to server and receive the data sent by server. UdpServer.java import java.net.DatagramPac...

Inline editable table-row using the edit button in Angular

In this tutorial, we will see an example of inline-editable rows of a table using mat-table. To create an  inline editable table row  using the  MatTable  component in Angular, you will need to use Angular Material ( @angular/material ) for UI components, along with Angular's built-in data binding to manage the state of each row when the user clicks the  Edit  button. Here's a step-by-step guide to implement this: Step 1: Set Up Angular Material First, you need to install Angular Material in your project. If you haven't already, run the following commands: ng add @angular/material During the installation, you will be prompted to select a theme and some other configuration options. You can choose the default options for now. Step 2: Install Required Angular Material Modules Next, you need to import the relevant Angular Material modules. Open your  app.module.ts  and import the necessary Material components: import { NgModule } from '@angular/core'...