SM
Size: a a a
SM
as
as
as
AF
ES
SM
ES
SM
KF
KF
as
as
as
4
foreach ( $entity in $all ) {
if ( $entity.ignore ) {
$schedule.ignore.split(',').trim().foreach{
if ( $PSItem -match 'start|stop|all' ) {
Set-Variable -Name "entity$PSItem" -Value $false
}
elseif ( $PSItem -in $timeDate.week, $timeDate.day, $timeDate.year ) {
"Skipped: {0}." -f $entity.Id
continue
}
else {
$global:messages += "Error: Malformed ignore {0}" -f $entity.id
}
}
}
...
}
4
4
as
4