Hello,
troubleshooting some problems with special options for a network card we
needed to change the file IniFile.pm (in install/lib/Unattend):
my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*]};
to:
my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*\$\~]};
(line 247 the last release 4.0b).
The op
Ingo Steuwer <[EMAIL PROTECTED]> writes:
> Hello,
>
> troubleshooting some problems with special options for a network card we
> needed to change the file IniFile.pm (in install/lib/Unattend):
>
> my $nq_out_chars = qr{[az-A-Z0-9_.,<>:/\-%\\\*]};
I think you meant qr{[a-zA-Z0-9_.,<>:/\-%\\\*]}.