9 lines
251 B
PowerShell
9 lines
251 B
PowerShell
|
[CmdletBinding(SupportsShouldProcess)]param(
|
||
|
[string[]]$AddOnSlug,
|
||
|
[switch]$NoPatternMatch
|
||
|
)
|
||
|
|
||
|
Get-HA_Addon 'Installed' -AddOnSlug:$AddOnSlug -NoPatternMatch:$NoPatternMatch | ForEach-Object {
|
||
|
Invoke-HomeAssistantCli addons start $_.slug
|
||
|
}
|