You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small bugfixes:
- Wait for databases to be mounted when running
Restore-DatabasesInBcContainer
- Include AI Toolkit when copying symbols from container
- Issue 3714 Download-BcNuGetPackageToFolder - throws error when use
"-select Exact"
- Issue 3621 New-AadAppsForBc shows "-includeEmailAadApp is deprecated.
Use -includeOtherServicesAadApp instead." but includeOtherServicesAadApp
us not setting email permissions
- Issue 3718 Business Central Web Client Fails to Load After Updating to
Windows 24H2
Fixes#3714Fixes#3621Fixes#3718
---------
Co-authored-by: freddydk <[email protected]>
Write-Host-ForegroundColor Yellow "WARNING: Container and host OS build is 20348 or above, defaulting to process isolation. If you encounter issues, you could try to install HyperV."
Write-Host-ForegroundColor Yellow "WARNING: Host OS is Windows 10 21H1 or newer and Container OS is 2004, defaulting to process isolation. If you experience problems, add -isolation hyperv."
1290
-
$isolation="process"
1291
-
}
1292
-
}
1293
-
else {
1294
-
if ($isolation-eq"") {
1295
-
if ($isAdministrator) {
1296
-
if (Get-HypervState-ne"Disabled") {
1297
-
$isolation="hyperv"
1298
-
}
1299
-
else {
1300
-
$isolation="process"
1301
-
Write-Host-ForegroundColor Yellow "WARNING: Host OS and Base Image Container OS doesn't match and HyperV is not installed. If you encounter issues, you could try to install HyperV."
1302
-
}
1303
-
}
1304
-
else {
1305
-
$isolation="hyperv"
1306
-
Write-Host-ForegroundColor Yellow "WARNING: Host OS and Base Image Container OS doesn't match, defaulting to hyperv. If you do not have HyperV installed or you encounter issues, you could try to specify -isolation process"
1307
-
}
1308
-
1309
-
}
1310
-
elseif ($isolation-eq"process") {
1311
-
Write-Host-ForegroundColor Yellow "WARNING: Host OS and Base Image Container OS doesn't match and process isolation is specified. If you encounter issues, you could try to specify -isolation hyperv"
Write-Host-ForegroundColor Yellow "WARNING: Container and host OS build is 20348 or above, defaulting to process isolation. If you encounter issues, you could try to install HyperV."
Write-Host-ForegroundColor Yellow "WARNING: Host OS is Windows 10 21H1 or newer and Container OS is 2004, defaulting to process isolation. If you experience problems, add -isolation hyperv."
424
-
$isolation="process"
425
-
}
426
-
}
427
-
else {
428
-
if ($isolation-eq"") {
429
-
if ($isAdministrator) {
430
-
if (Get-HypervState-ne"Disabled") {
431
-
$isolation="hyperv"
432
-
}
433
-
else {
434
-
$isolation="process"
435
-
Write-Host"WARNING: Host OS and Base Image Container OS doesn't match and Hyper-V is not installed. If you encounter issues, you could try to install Hyper-V."
436
-
}
437
-
}
438
-
else {
439
-
$isolation="hyperv"
440
-
Write-Host"WARNING: Host OS and Base Image Container OS doesn't match, defaulting to hyperv. If you do not have Hyper-V installed or you encounter issues, you could try to specify -isolation process"
441
-
}
442
-
443
-
}
444
-
elseif ($isolation-eq"process") {
445
-
Write-Host"WARNING: Host OS and Base Image Container OS doesn't match and process isolation is specified. If you encounter issues, you could try to specify -isolation hyperv"
0 commit comments