Add a dedicated function for disabling boot message

This commit is contained in:
Manuel Thalmann 2024-08-09 13:35:12 +02:00
parent eb6ad4780e
commit ec7fc8dd6e
2 changed files with 9 additions and 1 deletions
scripts/Windows/Scripts

View file

@ -45,4 +45,12 @@ $null = New-Module {
-Value ($options[$key]);
}
}
<#
.SYNOPSIS
Disables the boot message.
#>
function Disable-BootMessage {
Set-BootMessage;
}
}