Install-SQLserver.ps1

function install-sqlserver {
    [CmdletBinding()]
    param (
        
    )

 if (-not (test-path c:/beheer)) {
    Write-Host 'Creating new directory..'
    New-Item -ItemType Directory -Path 'c:/beheer'
}else {
    Write-Host 'Folder already exists'}   

}