100% satisfaction guarantee Immediately available after payment Read online or as PDF No strings attached 4.6 TrustPilot
logo-home
Summary

Summary TAAK SCRIPTING SCRIPT IIS.txt

Rating
-
Sold
-
Pages
2
Uploaded on
26-11-2025
Written in
2025/2026

TAAK SCRIPTING SCRIPT IIS.txt

Institution
Module

Content preview

# ==========================================================
# SCRIPTING TAAK 2 - IIS Web Server Automation (Timed Access)
# Author : Lorenzo Meli
# Target : Windows Server 2025
# Description : IIS site runs only Mon-Fri from 08:00–20:00
# ==========================================================

terraform {
required_providers {
local = { source = "hashicorp/local" }
null = { source = "hashicorp/null" }
}
}

provider "local" {}
provider "null" {}

# 1️⃣Create IIS installation PowerShell script
resource "local_file" "install_script" {
filename = "C:/Terraform_IIS_Lorenzo/install_iis.ps1"
content = <<-EOT
Import-Module ServerManager
Write-Host "Installing IIS..."
Install-WindowsFeature -Name Web-Server -IncludeManagementTools

# Create simple homepage
$html = @"
<html>
<head><title>IIS Terraform Automation</title></head>
<body style='font-family:Arial; text-align:center; margin-top:100px;'>
<h1>Hello from Terraform!</h1>
<h2>SCRIPTING TAAK 2 - Lorenzo Meli</h2>
<p>Website active during working hours (08:00–20:00, Mon–Fri).</p>
</body>
</html>
"@
$path = "C:\\inetpub\\wwwroot\\index.html"
$html | Out-File $path -Encoding UTF8 -Force

Start-Service W3SVC
Write-Host "✅ IIS installed and started successfully."
EOT
}

# 2️⃣ Script to start IIS (for scheduler)
resource "local_file" "start_script" {
filename = "C:/Terraform_IIS_Lorenzo/start_iis.ps1"
content = <<-EOT
Import-Module WebAdministration
Start-Service W3SVC
Start-Website -Name "Default Web Site"
Write-Host "IIS started (weekday start script)."
EOT
}

# 3️⃣Script to stop IIS (for scheduler)
resource "local_file" "stop_script" {
filename = "C:/Terraform_IIS_Lorenzo/stop_iis.ps1"
content = <<-EOT

Written for

Module

Document information

Uploaded on
November 26, 2025
Number of pages
2
Written in
2025/2026
Type
SUMMARY

Subjects

£7.73
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Read online or as PDF
No strings attached

Get to know the seller
Seller avatar
lorenzomeli

Get to know the seller

Seller avatar
lorenzomeli Hogeschool Gent
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 months
Number of followers
0
Documents
29
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions