Description:
As pointed out in ticket #5972 (closed) and #6574 (my ticket),
the script on this page stops working in localized versions of Windows
(Dutch mentioned in ticket #5972 specifically). This is caused by the
difference in how the strings "64-bit" and "32-bit" occur in non-English
localized versions of Windows.
Thanks to RvdHout (Ruud van den Hout) for suggesting the regex solution.
Changes proposed:
- $OSArch.Contains("64-bit") -> $OSArch -match ("64\-?\s?bits?")
- $OSArch.Contains("32-bit") -> $OSArch -match ("32\-?\s?bits?")
- Readiness Tool Version updated to 3.7.2 (thanks to RvdHout)
- Typo "archictecture" corrected to architecture (2 occurrences)
- Remove all redundant end-of-line (EOL) whitespace (blanks)
- Reduce number of blank lines before the signature block, from 3 to 2
- Add back a blank line between the metadata section and the page title
Ticket closure or reference:
Closes#6574
Ref. #5690#5723#6054#6055
Ref. #5972 (closed)
As reported in issue ticket #6556 (Traffic filter sentence incomplete),
there is a missing part in the sentence "Network admins to effectively
add interface specific firewall rules on the VPN Interface." to make it
work as a full descriptive sentence in this context. This PR aims to
correct this issue, in addition to various other adjustments.
Thanks to klishb for reporting this issue.
Changes proposed:
- Add the missing part of the Traffic Filters sentence
- Update 2 outdated and permanently redirected MSDN links
- Uppercase adjustments for "Traffic filters" & "Lockdown"
- Add MarkDown indent marker compatibility spacing in the Note blob
- Reduce bullet point spacing from 3 to 1 in the "Applies to" section
- Remove all redundant end-of-line spacing
- Add missing space after the corrected sentence (after the period)
Ticket closure or reference:
Closes#6556