MSIgnite2016_PSV5Unplugged.psm1


function Show-MSIgnite2016_Demo
{
    $Path = (Join-Path $PSScriptRoot  "MSIgnite2016_PSV5Unplugged-Demo.ps1")    
    if ($host.Name -eq "Windows PowerShell ISE Host")
    {
        Psedit $Path
    }
    else
    {
        switch ($PSVersionTable.PSEdition)
        {
            "Desktop" {        PowerShell_ise $Path }
            "Core"    {
                Get-Content $Path
            }
        }
    }
}

function Show-MSIgnite2016_Video
{
    start-process "https://www.youtube.com/watch?v=Ab46gHXNm8Q"    
}