1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

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

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) {