Merge branch 'main' into ap-nfa-033125

This commit is contained in:
Ruchika Mittal
2025-03-28 01:05:15 +05:30
committed by GitHub
12 changed files with 28 additions and 33 deletions

View File

@ -14,6 +14,7 @@ on:
jobs: jobs:
download-payload: download-payload:
name: Download and extract payload artifact name: Download and extract payload artifact
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
with: with:
WorkflowId: ${{ github.event.workflow_run.id }} WorkflowId: ${{ github.event.workflow_run.id }}
@ -23,6 +24,7 @@ jobs:
label-assign: label-assign:
name: Run assign and label name: Run assign and label
if: github.repository_owner == 'MicrosoftDocs'
needs: [download-payload] needs: [download-payload]
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod
with: with:
@ -32,10 +34,4 @@ jobs:
ExcludedUserList: '["user1", "user2"]' ExcludedUserList: '["user1", "user2"]'
ExcludedBranchList: '["branch1", "branch2"]' ExcludedBranchList: '["branch1", "branch2"]'
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -13,7 +13,7 @@ on:
jobs: jobs:
download-payload: download-payload:
if: github.repository_visibility == 'public' if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
name: Download and extract payload artifact name: Download and extract payload artifact
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
with: with:
@ -24,7 +24,7 @@ jobs:
label-msft: label-msft:
name: Label Microsoft contributors name: Label Microsoft contributors
if: github.repository_visibility == 'public' if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
needs: [download-payload] needs: [download-payload]
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod
with: with:
@ -32,4 +32,4 @@ jobs:
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}
ClientId: ${{ secrets.M365_APP_CLIENT_ID }} ClientId: ${{ secrets.M365_APP_CLIENT_ID }}
PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }} PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }}

View File

@ -9,6 +9,7 @@ on:
jobs: jobs:
upload: upload:
if: github.repository_owner == 'MicrosoftDocs'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -23,4 +24,4 @@ jobs:
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
name: PayloadJson name: PayloadJson
path: pr/ path: pr/

View File

@ -11,11 +11,9 @@ on:
jobs: jobs:
build-status: build-status:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -12,11 +12,9 @@ on:
jobs: jobs:
live-merge: live-merge:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -12,11 +12,9 @@ on:
jobs: jobs:
file-count: file-count:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -10,11 +10,9 @@ on: [pull_request_target]
jobs: jobs:
protected-files: protected-files:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -11,9 +11,10 @@ on:
jobs: jobs:
stale: stale:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod
with: with:
RunDebug: false RunDebug: false
RepoVisibility: ${{ github.repository_visibility }} RepoVisibility: ${{ github.repository_visibility }}
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -13,6 +13,7 @@ on:
jobs: jobs:
stale-branch: stale-branch:
if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
@ -22,4 +23,4 @@ jobs:
]' ]'
ReportOnly: true ReportOnly: true
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -11,11 +11,11 @@ on:
jobs: jobs:
tier-mgmt: tier-mgmt:
if: github.repository_visibility == 'private' if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod
with: with:
PayloadJson: ${{ toJSON(github) }} PayloadJson: ${{ toJSON(github) }}
EnableWriteSignOff: 1 EnableWriteSignOff: 1
EnableReadOnlySignoff: 0 EnableReadOnlySignoff: 1
secrets: secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }} AccessToken: ${{ secrets.GITHUB_TOKEN }}

View File

@ -1,7 +1,7 @@
--- ---
title: WindowsAI Policy CSP title: WindowsAI Policy CSP
description: Learn more about the WindowsAI Area in Policy CSP. description: Learn more about the WindowsAI Area in Policy CSP.
ms.date: 03/12/2025 ms.date: 03/26/2025
ms.topic: generated-reference ms.topic: generated-reference
--- ---
@ -370,6 +370,8 @@ This policy setting determines which app opens when the user presses the Copilot
<!-- SetCopilotHardwareKey-Editable-Begin --> <!-- SetCopilotHardwareKey-Editable-Begin -->
<!-- Add any additional information about this policy here. Anything outside this section will get overwritten. --> <!-- Add any additional information about this policy here. Anything outside this section will get overwritten. -->
The property value is the Application User Model ID (AUMID) for the target application. For example: the Microsoft 365 Copilot app is `Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe!Microsoft.MicrosoftOfficeHub`. For more information, see [Find the application user model ID of an installed app](/windows/configuration/store/find-aumid?tabs=ps%2Cexplorer&pivots=windows-11).
<!-- SetCopilotHardwareKey-Editable-End --> <!-- SetCopilotHardwareKey-Editable-End -->
<!-- SetCopilotHardwareKey-DFProperties-Begin --> <!-- SetCopilotHardwareKey-DFProperties-Begin -->

View File

@ -214,7 +214,9 @@ The GPO applies the Start and taskbar layout at the next user sign-in. Each time
## User experience ## User experience
After the taskbar layout is applied, the users must sign out and sign in again to see the new layout. Unless prohibited via policy settings, users can pin more apps, change the order, and unpin apps from the taskbar. After the taskbar layout is applied, users must sign out and sign in again to see the new layout. Unless prohibited via policy settings, users can pin more apps, change the order, and unpin apps from the taskbar.
Any pins provisioned via policy settings are restored upon the next policy refresh, even when users unpin them.
### OS install and upgrade experience ### OS install and upgrade experience