Update wue.c

This commit is contained in:
daboynb 2024-04-09 20:28:33 +02:00 committed by GitHub
parent 8a8e418751
commit 81c46765b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -777,6 +777,13 @@ BOOL ApplyWindowsCustomization(char drive_letter, int flags)
DWORD dwDisp, dwVal = 1;
assert(unattend_xml_path != NULL);
static_sprintf(path, "%c:\\sources\\$OEM$\\$$\\Panther\\unattend.xml", drive_letter);
if (PathFileExistsA(path)) {
uprintf("'%s' already exists. Skipping copy operation.", path);
return TRUE; // File already exists, no need to copy
}
uprintf("Applying Windows customization:");
PrintStatus(0, MSG_326);
if (flags & UNATTEND_WINDOWS_TO_GO) {