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
Write-Host"The installer will attempt to perform serviceability tests one more time. Hold on for a bit, this will not take long..."
896
954
# Perform serviceability tests one more time
897
955
if ($serviceableArchitecture) { Set-Serviceability-ImagePath "$($driveLetter):\" } else { Write-Host"Serviceability tests will not be run: the image architecture and the PE architecture are different." }
898
956
}
@@ -912,9 +970,9 @@ function Start-OSApplication
912
970
913
971
if ($supportedArchitectures.Contains($systemArchitecture))
914
972
{
915
-
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))Tools\RestartDialog\$systemArchitecture\DTPE-RestartDialog.exe")
973
+
if (Test-Path-Path "$env:SYSTEMDRIVE\Tools\RestartDialog\$systemArchitecture\DTPE-RestartDialog.exe")
Write-Host"- To load drivers, type `"DIM`" and press ENTER"
991
-
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))HotInstall\DSCReport.txt"-PathType Leaf) {
1049
+
if (Test-Path-Path "$env:SYSTEMDRIVE\HotInstall\DSCReport.txt"-PathType Leaf) {
992
1050
Write-Host"- To get a look at what disks are applicable for operating system installation, type DSCR"
993
1051
}
994
1052
Write-Host""
@@ -1013,18 +1071,18 @@ function Get-Disks
1013
1071
1014
1072
if ($supportedArchitectures.Contains($systemArchitecture))
1015
1073
{
1016
-
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))Tools\DIM\$systemArchitecture\DT-DIM.exe")
1074
+
if (Test-Path-Path "$env:SYSTEMDRIVE\Tools\DIM\$systemArchitecture\DT-DIM.exe")
1017
1075
{
1018
1076
Clear-Host
1019
1077
Write-Host"Starting the Driver Installation Module...`n`nYou will go back to the disk selection screen after closing the program."
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))HotInstall\DSCReport.txt"-PathType Leaf) {
1027
-
notepad X:\HotInstall\DSCReport.txt
1084
+
if (Test-Path-Path "$env:SYSTEMDRIVE\HotInstall\DSCReport.txt"-PathType Leaf) {
- The PE Helper now detects whether the selected index is invalid
933
-
- Fixed a visual issue in the image index switch dialog
932
+
- Fixed an issue where the PE Helper would not create ISO files if you had a version of the Windows ADK earlier than 10.1.26100.2454
933
+
- AppX package counts in image information reports are more reasonable now on Windows 8 hosts
934
+
- Fixed an issue where folder attributes for AppX package addition and driver addition were not being detected correctly (#220, thanks @InnerBrat for spotting)
935
+
- Fixed an additional issue regarding the Recents list
934
936
935
937
New features:
936
938
937
-
- HotInstall has been updated to the latest version
938
-
- You can now copy your ISO files to Ventoy drives
939
-
- When installing the drivers specified in the Driver Installation Module, you will now see a progress indicator
940
-
- The ISO creator now detects the architectures that are supported by the Assessment and Deployment Kit installed on your computer
941
-
- Compatibility has been improved for the latest Windows ADKs (starting from version 10.1.26100.2454 - December 2024 update):
942
-
- ISO creation will finish successfully now
943
-
- You can now create ISO files with boot binaries signed with the "Windows UEFI CA 2023" certificate:
939
+
- HotInstall has been updated to the latest version, with a localized Disk Space Checker, and support for exporting system drivers if you wish
940
+
- When installing drivers specified in the Driver Installation Module (DIM), you will now see a different output consisting of a summary
941
+
- The Extensibility Suite has had some improvements:
942
+
- Support has been added for ADK 10.1.26100.2454
943
+
- An alias ("StartDim") has been added, letting you launch the Driver Installation Module more easily
944
944
- UnattendGen has been updated to the latest version
945
-
- User accounts with "None" names are now blocked
946
-
- Log switchers in the progress panel are more visually appealing now
947
-
- CODE: DynaLog now uses 64-bit long types for file content detection
948
-
- Scintilla.NET has been updated to version 5.6.6</value>
945
+
- You can now target multiple processor architectures with your answer file
946
+
- You can now normalize the spacing of your unattended answer file to make it consistent
947
+
- Progress panel log switcher buttons are now localized</value>
0 commit comments