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
* Update assembly information
* [Library] Update Markdig and ManagedDism
* [Fix] Fallback to INI method for installable copies
Fixes#205
* [Fix] Fixed background processes not starting sometimes
* [DynaLog] Improve file write speed
* [Event] Reload BGProcs with Alt+R
* [Event] Update key combo for BGProc reload
* [Unattended answer file] Improve application task speed
* [Fix] Fixed#206
* [Fix] Fixed possible API exceptions
* [PE Helper] Introducing HotInstall
* [PE Helper] Add BCD entry deletion for BIOS
* [PE Helper] Update files
- Updated the text of the restart dialog to make it consistent with HotInstall
- Updated HotInstall to latest commit: CodingWonders/DT-HotInstall@1528686
* [Fix] Fixed#209
* [PE Helper] Update files (01/05/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@498f729
NOTE: this version of HotInstall is marked as a test build
* [PE Helper] Update HotInstall (01/06/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@6addb6b
* [PE Helper] Update HotInstall (01/08/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@6b374f2
* [PE Helper] Update HotInstall (01/09/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@b5b2692
* [PE Helper] Update HotInstall (01/10/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@32bd695
* [Fix] Fixed exception for Recents list keyboard combos
* [PE Helper] Update HotInstall (01/13/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@e31674e
* [PE Helper] Update HotInstall (01/14/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@dee52b1
* [PE Helper] Update HotInstall (01/15/2025)
- Updated HotInstall to its latest commit: CodingWonders/DT-HotInstall@61c1be5
* [Library] Update Scintilla.NET to 5.6.5
* [Library] Update Markdig to 0.40.0
* [PE Helper] Update copyright date
* [Fix] Detect WIMBoot status and disable option accordingly
* [PE Helper] Add ability to get a bit more info
* [PE Helper] Update HotInstall (01/22/2025)
Updated HotInstall to no longer feature test build mark
* [REL] Update What's New section and Update Info files
<ErrorText>Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Use la restauración de paquetes NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}.</ErrorText>
Write-Host"HotInstall has been copied successfully."
215
+
}
216
+
else
217
+
{
218
+
Write-Host"HotInstall could not be copied."
219
+
}
220
+
}
208
221
Write-Host"The ISO file structure has been successfully created. DISMTools will continue creating the ISO file automatically after 5 seconds."
209
222
Start-Sleep-Seconds 5
210
223
Write-Host"Creating ISO file..."
@@ -894,7 +907,11 @@ function Get-Disks
894
907
}
895
908
896
909
# Show additional tools
897
-
Write-Host"- To load drivers, type `"DIM`" and press ENTER`n"
910
+
Write-Host"- To load drivers, type `"DIM`" and press ENTER"
911
+
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))HotInstall\DSCReport.txt"-PathType Leaf) {
912
+
Write-Host"- To get a look at what disks are applicable for operating system installation, type DSCR"
913
+
}
914
+
Write-Host""
898
915
899
916
$destDisk=Read-Host-Prompt "Please choose the disk to apply the image to"
900
917
$destDrive=-1
@@ -925,6 +942,15 @@ function Get-Disks
925
942
}
926
943
Get-Disks
927
944
}
945
+
"DSCR" {
946
+
if (Test-Path-Path "$([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::Windows)))HotInstall\DSCReport.txt"-PathType Leaf) {
947
+
notepad X:\HotInstall\DSCReport.txt
948
+
} else {
949
+
Write-Host"Either no report has been created or the installation has not been started with HotInstall."
950
+
Start-Sleep-Seconds 3
951
+
}
952
+
Get-Disks
953
+
}
928
954
default {
929
955
Write-Host"Please specify a number and try again.`n"
0 commit comments