Powershell

Programming
Web | IIS Website and App Pool Setup

Script Summary: This PowerShell script automates the configuration of a new IIS (Internet Information Services) website and its associated application pool. It leverages the `WebAdministration` module to streamline setup tasks, ensuring consistency and reducing manual effort. Key operations include: Application Pool Configuration- Creates a new App Pool named "MyWebsite Pool"- Sets idle timeout to 1 […]

Read more
Programming
Powershell | Verify if the script is running as Administrator

Sometimes it is useful to verify if a running script is running under Administrator privileges, here is how to do it.

Read more