mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
10 lines
287 B
PowerShell
10 lines
287 B
PowerShell
param(
|
|
[Alias('FullName')]
|
|
[String[]]$Path
|
|
)
|
|
|
|
if ($PSVersionTable.PSVersion.Major -gt 5 -and -not (Get-Command Format-YAML -ErrorAction SilentlyContinue)) {
|
|
throw "This requires EZOut. Install-Module EZOut -AllowClobber -Scope CurrentUser"
|
|
}
|
|
|
|
Import-Excel $Path | Format-YAML |