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
// Per https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-useraccounts-localaccounts-localaccount-name
154
+
// and https://learn.microsoft.com/en-us/previous-versions/cc722458(v=technet.10)#user-name-policies
155
+
// Add '.' to the list because some folks also reported an issue with local accounts that have dots.
156
+
// Also add '&', even as it could be escaped, as it's just not worth the trouble...
Copy file name to clipboardExpand all lines: src/wue.c
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -347,9 +347,7 @@ char* CreateUnattendXml(int arch, int flags)
347
347
uprintf("WARNING: '%s' is not allowed as local account name - Option ignored", unattend_username);
348
348
} elseif (unattend_username[0] !=0) {
349
349
char*org_username=safe_strdup(unattend_username);
350
-
// Per https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-useraccounts-localaccounts-localaccount-name
351
-
// Add '.' to the list because some folks also reported an issue with local accounts that have dots...
0 commit comments