install.ps1

# Check if it is running as administrator
if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
    Write-Error "You do not have sufficient permissions to run this script. Please run this script as an administrator."
    exit
}

# Check if the module is already installed
if (Get-Module -Name pwshai -ListAvailable) {
    Write-Warning "The module 'pwshai' is already installed."
    exit
}

# Install the module

$path = "$Env:ProgramFiles\WindowsPowerShell\Modules\pwshai\1.0"
mkdir $path -Force | Out-Null

Copy-Item -Path "$PSScriptRoot\pwshai.psm1" -Destination $path -Force
Copy-Item -Path "$PSScriptRoot\pwshai.psd1" -Destination $path -Force

Write-Host "The module 'pwshai' has been installed." -ForegroundColor "Green"