Commit Graph

15855 Commits

Author SHA1 Message Date
8a2414b9eb Merge remote-tracking branch 'refs/remotes/origin/master' into rs3 2017-09-18 13:36:45 -07:00
d17a5bad19 sync 2017-09-18 13:35:40 -07:00
6dc218d2ae updates for compat and custom notifs 2017-09-18 13:09:20 -07:00
d5d7bad675 Merged PR 3247: Renamed Windows Store for Business 2017-09-18 18:42:47 +00:00
614ed27747 svg marks 2017-09-18 11:38:02 -07:00
f1817169b5 atomic tables 2017-09-18 11:30:26 -07:00
5251ce53dc sync 2017-09-18 11:23:58 -07:00
290f190a50 Merged PR 3242: Fix Store terms and links 2017-09-18 18:04:31 +00:00
0cd27bb8de cellcore 2017-09-18 10:47:36 -07:00
6dd77ed3e8 Merged PR 3244: 9/18 AM Publish 2017-09-18 17:31:25 +00:00
83a5b9440e updates 2017-09-18 10:28:14 -07:00
5f5af05fb2 sync 2017-09-18 09:16:57 -07:00
f0d6ac748b Merge remote-tracking branch 'refs/remotes/origin/rs3' into jd3csp 2017-09-18 08:28:16 -07:00
c04e0b2b13 Merge remote-tracking branch 'refs/remotes/origin/master' into rs3 2017-09-18 08:27:42 -07:00
01deb6da8b add brandingicon 2017-09-18 07:54:43 -07:00
d94ea9c792 Merged PR 3238: Merge win10soffer to master
Updated the SUSPC topic's prerequisites section to clarify some requirements (per PM input) and highlighted the update in the change history.
2017-09-16 02:08:10 +00:00
67cd6ba7d6 fixed link 2017-09-15 18:49:47 -07:00
84c952fb07 updated to address PM feedback 2017-09-15 18:23:48 -07:00
35cefb8d64 working changes 2017-09-15 17:05:38 -07:00
e966a7b7af Merged PR 3234: Merged PR 3231: Add new article described default apps in W10 Enterprise SKU
Merged PR 3231: Add new article described default apps in W10 Enterprise SKU
2017-09-15 22:56:22 +00:00
670c70f995 Merged PR 3231: Add new article described default apps in W10 Enterprise SKU 2017-09-15 22:31:20 +00:00
986e67cf97 Merged PR 3233: 9/15 PM Publish 2017-09-15 22:30:06 +00:00
04a5b34ca9 Merged PR 3226: add api
add api
2017-09-15 22:12:38 +00:00
21e94fe377 typo 2017-09-15 13:31:36 -07:00
e54ffd815c table fix 2017-09-15 13:30:48 -07:00
3d21ef1009 add api parameters 2017-09-15 13:09:36 -07:00
fe11b1a3d5 Merged PR 3224: Merge maricia-13755838 to master 2017-09-15 19:53:34 +00:00
86bcee3a4c Merged PR 3222: 9/15 AM Publish 2017-09-15 17:31:29 +00:00
16735720fc sync 2017-09-15 08:17:27 -07:00
702b059948 removed literal astrisk 2017-09-15 07:37:56 -07:00
e337553d8a fix italic 2017-09-15 07:13:17 -07:00
5d0738da01 trying a comment 2017-09-15 07:11:39 -07:00
2a04100e49 Merge remote-tracking branch 'refs/remotes/origin/rs3' into jd3csp 2017-09-15 07:06:32 -07:00
4d019f4034 Merge remote-tracking branch 'refs/remotes/origin/master' into rs3 2017-09-15 07:04:33 -07:00
a07db48e98 text intro 2017-09-15 07:02:08 -07:00
3710b97ba2 sync 2017-09-15 06:54:14 -07:00
78ab0b5746 Update menu items 2017-09-15 08:59:14 -04:00
63065d03ec Update menu items 2017-09-15 08:56:21 -04:00
a25f36c951 Update menu items 2017-09-15 08:46:48 -04:00
d900ae8ecc Update menu items 2017-09-15 08:42:57 -04:00
cd0a145f41 Update menu items 2017-09-15 08:39:34 -04:00
ee91865bf2 Update menu items 2017-09-15 07:28:50 -04:00
52e2df718e Merge remote-tracking branch 'origin/master' into atp-tb-troubleshoot-onboarding-setup 2017-09-15 07:13:13 -04:00
08a2411eaa Merged PR 3210: Correct Cred Guard CI File Rule for KD_KMCI
Correct Cred Guard CI File Rule for KD_KMCI.

The correction should be as follows:

The line:
    <Deny  ID="ID_DENY_KD"            FriendlyName="kd.exe"             FileName="kd.Exe" MinimumFileVersion = "65535.65535.65535.65535" />

Should be essentially duplicated with another with a slightly different ID. This is because the same rule is used in the “user mode” and the “kernel mode” sections in the policy, so it needs separate IDs.

SO for example add this:
    <Deny  ID="ID_DENY_KD_KMCI"            FriendlyName="kd.exe"             FileName="kd.Exe" MinimumFileVersion = "65535.65535.65535.65535" />

(and leave the original line)

Then in this section:
<SigningScenario Value="131" ID="ID_SIGNINGSCENARIO_DRIVERS_1" FriendlyName="Driver Signing Scenarios">
      <ProductSigners>
        <FileRulesRef>
          <FileRuleRef RuleID="ID_DENY_KD" />
        </FileRulesRef>
      </ProductSigners>

Update the ID like this:
<SigningScenario Value="131" ID="ID_SIGNINGSCENARIO_DRIVERS_1" FriendlyName="Driver Signing Scenarios">
      <ProductSigners>
        <FileRulesRef>
          <FileRuleRef RuleID="ID_DENY_KD_KMCI" />
        </FileRulesRef>
      </ProductSigners>
2017-09-14 23:14:07 +00:00
6376a76a3d Correct Cred Guard CI File Rule for KD_KMCI 2017-09-14 16:06:58 -07:00
62c108e955 Merged PR 3192: Add dbghost and dbgsvc to block list, plus add deny rules.
Add dbghost and dbgsvc to block list, plus add deny rules.
2017-09-14 22:46:16 +00:00
426bf8a228 Merged PR 3206: 9/14 PM Publish 2017-09-14 22:31:01 +00:00
abfb498772 Merged PR 3205: Add link in parent to child
Add link to parent topic pointing to important procedure in child topic
2017-09-14 22:30:30 +00:00
3d27eb28a3 Merged PR 3200: update date time settings
update date time settings
2017-09-14 20:36:33 +00:00
1299cec0fa fix span tag 2017-09-14 13:29:12 -07:00