mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Adding a few Windows configuration profiles so we can dogfood them. Most of the profiles are adaptations from the macOS profiles. I'm not an expert, adding them to the canary team for now to avoid breaking anyone's machine.
24 lines
665 B
XML
24 lines
665 B
XML
<Replace>
|
|
<!-- Enforce PIN or password length (10 characters) -->
|
|
<Item>
|
|
<Meta>
|
|
<Format xmlns="syncml:metinf">int</Format>
|
|
</Meta>
|
|
<Target>
|
|
<LocURI>./Device/Vendor/MSFT/Policy/Config/DeviceLock/MinDevicePasswordLength</LocURI>
|
|
</Target>
|
|
<Data>10</Data>
|
|
</Item>
|
|
</Replace>
|
|
<Replace>
|
|
<!-- Enforce PIN or password has at least one lowercase letter and at least one number -->
|
|
<Item>
|
|
<Meta>
|
|
<Format xmlns="syncml:metinf">int</Format>
|
|
</Meta>
|
|
<Target>
|
|
<LocURI>./Device/Vendor/MSFT/Policy/Config/DeviceLock/MinDevicePasswordComplexCharacters</LocURI>
|
|
</Target>
|
|
<Data>2</Data>
|
|
</Item>
|
|
</Replace>
|