Merge branch 'do_docs' of https://github.com/cmknox/windows-docs-pr into do_docs
41
.github/workflows/AutoLabelAssign.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: Assign and label PR
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
contents: read
|
||||
actions: read
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: [Background tasks]
|
||||
types:
|
||||
- completed
|
||||
|
||||
jobs:
|
||||
download-payload:
|
||||
name: Download and extract payload artifact
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
|
||||
with:
|
||||
WorkflowId: ${{ github.event.workflow_run.id }}
|
||||
OrgRepo: ${{ github.repository }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
label-assign:
|
||||
name: Run assign and label
|
||||
needs: [download-payload]
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
|
||||
AutoAssignUsers: 1
|
||||
AutoLabel: 1
|
||||
ExcludedUserList: '["user1", "user2"]'
|
||||
ExcludedBranchList: '["branch1", "branch2"]'
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
40
.github/workflows/AutoLabelMsftContributor.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: Auto label Microsoft contributors
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
contents: read
|
||||
actions: read
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: [Background tasks]
|
||||
types:
|
||||
- completed
|
||||
|
||||
jobs:
|
||||
download-payload:
|
||||
if: github.repository_visibility == 'public'
|
||||
name: Download and extract payload artifact
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
|
||||
with:
|
||||
WorkflowId: ${{ github.event.workflow_run.id }}
|
||||
OrgRepo: ${{ github.repository }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
label-msft:
|
||||
name: Label Microsoft contributors
|
||||
if: github.repository_visibility == 'public'
|
||||
needs: [download-payload]
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
TeamReadAccessToken: ${{ secrets.ORG_READTEAMS_TOKEN }}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
26
.github/workflows/BackgroundTasks.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Background tasks
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
contents: read
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
|
||||
jobs:
|
||||
upload:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Save payload data
|
||||
env:
|
||||
PayloadJson: ${{ toJSON(github) }}
|
||||
AccessToken: ${{ github.token }}
|
||||
run: |
|
||||
mkdir -p ./pr
|
||||
echo $PayloadJson > ./pr/PayloadJson.json
|
||||
sed -i -e "s/$AccessToken/XYZ/g" ./pr/PayloadJson.json
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: PayloadJson
|
||||
path: pr/
|
22
.github/workflows/LiveMergeCheck.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: PR can merge into branch
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
statuses: write
|
||||
contents: read
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened, synchronize, edited]
|
||||
|
||||
jobs:
|
||||
|
||||
live-merge:
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ toJSON(github) }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
|
22
.github/workflows/PrFileCount.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: PR file count less than limit
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
statuses: write
|
||||
contents: read
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [opened, reopened, synchronize, labeled, unlabeled, edited]
|
||||
|
||||
jobs:
|
||||
|
||||
file-count:
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ toJSON(github) }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
|
20
.github/workflows/ProtectedFiles.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: PR has no protected files
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
statuses: write
|
||||
contents: read
|
||||
|
||||
on: [pull_request_target]
|
||||
|
||||
jobs:
|
||||
|
||||
protected-files:
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ toJSON(github) }}
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
||||
|
21
.github/workflows/TierManagement.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: Tier management
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
contents: read
|
||||
|
||||
on:
|
||||
issue_comment:
|
||||
types: [created, edited]
|
||||
|
||||
jobs:
|
||||
|
||||
tier-mgmt:
|
||||
if: github.repository_visibility == 'private'
|
||||
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod
|
||||
with:
|
||||
PayloadJson: ${{ toJSON(github) }}
|
||||
EnableWriteSignOff: 1
|
||||
EnableReadOnlySignoff: 0
|
||||
secrets:
|
||||
AccessToken: ${{ secrets.GITHUB_TOKEN }}
|
@ -92,7 +92,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "education/windows/enable-s-mode-on-surface-go-devices.md",
|
||||
"redirect_url": "/windows/deployment/s-mode",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -147,7 +147,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "education/windows/test-windows10s-for-edu.md",
|
||||
"redirect_url": "/windows/deployment/s-mode",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -306,6 +306,21 @@
|
||||
"source_path": "education/windows/tutorial-school-deployment/troubleshoot-overview.md",
|
||||
"redirect_url": "/mem/intune/industry/education/tutorial-school-deployment/troubleshoot-overview",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "education/windows/use-set-up-school-pcs-app.md",
|
||||
"redirect_url": "/education/windows/suspcs",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "education/windows/set-up-school-pcs-technical.md",
|
||||
"redirect_url": "/education/windows/suspcs/reference",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "education/windows/set-up-school-pcs-provisioning-package.md",
|
||||
"redirect_url": "/education/windows/suspcs/provisioning-package",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
@ -1272,7 +1272,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configure/basic-level-windows-diagnostic-events-and-fields-1703.md",
|
||||
"redirect_url": "/windows/configuration/basic-level-windows-diagnostic-events-and-fields",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1302,7 +1302,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configure/configure-windows-telemetry-in-your-organization.md",
|
||||
"redirect_url": "/windows/configuration/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_url": "/windows/privacy/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1527,7 +1527,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configure/windows-diagnostic-data-1703.md",
|
||||
"redirect_url": "/windows/configuration/windows-diagnostic-data",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1572,17 +1572,17 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/add-a-windows-10-operating-system-image-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/add-a-windows-10-operating-system-image-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-a-windows-10-operating-system-image-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/add-manage-products-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/add-manage-products-vamt",
|
||||
"redirect_url": "/windows/deployment/volume-activation/add-remove-computers-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1657,12 +1657,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/create-a-custom-windows-pe-boot-image-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/create-a-custom-windows-pe-boot-image-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-custom-windows-pe-boot-image-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/create-a-task-sequence-with-configuration-manager-and-mdt.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-mdt/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1672,7 +1672,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/create-an-application-to-deploy-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/create-an-application-to-deploy-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-an-application-to-deploy-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1687,7 +1687,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/deploy-windows-10-using-pxe-and-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/deploy-windows-10-using-pxe-and-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1707,7 +1707,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1732,7 +1732,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/install-configure-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/install-configure-vamt",
|
||||
"redirect_url": "/windows/deployment/volume-activation/vamt-requirements",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1777,17 +1777,17 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/manage-activations-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/manage-activations-vamt",
|
||||
"redirect_url": "/windows/deployment/volume-activation/online-activation-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/manage-product-keys-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/manage-product-keys-vamt",
|
||||
"redirect_url": "/windows/deployment/volume-activation/add-remove-product-key-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/manage-vamt-data.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/manage-vamt-data",
|
||||
"redirect_url": "/windows/deployment/volume-activation/import-export-vamt-data",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1857,7 +1857,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1927,7 +1927,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/refresh-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1942,7 +1942,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/replace-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/replace-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/replace-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -2422,7 +2422,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/vamt-step-by-step.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/vamt-step-by-step",
|
||||
"redirect_url": "/windows/deployment/volume-activation/scenario-online-activation-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -2467,17 +2467,17 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/windows-10-poc-sc-config-mgr.md",
|
||||
"redirect_url": "/windows/deployment/windows-10-poc-sc-config-mgr",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/windows-10-poc-sc-config-mgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/windows-10-poc.md",
|
||||
"redirect_url": "/windows/deployment/windows-10-poc",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/windows-10-poc",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deploy/windows-10-upgrade-paths.md",
|
||||
"redirect_url": "/windows/deployment/upgrade/windows-10-upgrade-paths",
|
||||
"redirect_url": "/windows/deployment/upgrade/windows-upgrade-paths",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -5077,7 +5077,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/app-behavior-with-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/app-behavior-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/app-behavior-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -5727,7 +5727,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/collect-wip-audit-event-logs.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/collect-wip-audit-event-logs",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/collect-wip-audit-event-logs",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -6037,7 +6037,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/create-and-verify-an-efs-dra-certificate.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -6052,7 +6052,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/create-edp-policy-using-sccm.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/create-wip-policy-using-sccm",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -6097,7 +6097,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/create-wip-policy-using-sccm.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/create-wip-policy-using-sccm",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -6547,12 +6547,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/enlightened-microsoft-apps-and-edp.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/enlightened-microsoft-apps-and-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -7917,12 +7917,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/guidance-and-best-practices-edp.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/guidance-and-best-practices-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -8177,7 +8177,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/limitations-with-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/limitations-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/limitations-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -8282,7 +8282,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/mandatory-settings-for-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/mandatory-settings-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/mandatory-settings-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -8662,12 +8662,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/overview-create-edp-policy.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/overview-create-wip-policy.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -8837,12 +8837,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/protect-enterprise-data-using-edp.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/protect-enterprise-data-using-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -8867,7 +8867,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/recommended-network-definitions-for-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/recommended-network-definitions-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/recommended-network-definitions-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -9232,12 +9232,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/testing-scenarios-for-edp.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/testing-scenarios-for-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -9522,7 +9522,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/using-owa-with-wip.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/using-owa-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/using-owa-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -9757,12 +9757,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/wip-app-enterprise-context.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/wip-app-enterprise-context",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/wip-app-enterprise-context",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/keep-secure/wip-enterprise-overview.md",
|
||||
"redirect_url": "/windows/threat-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -10372,7 +10372,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/manage/configure-windows-telemetry-in-your-organization.md",
|
||||
"redirect_url": "/windows/configuration/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_url": "/windows/privacy/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -10997,7 +10997,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/act-technical-reference.md",
|
||||
"redirect_url": "/windows/deployment/planning/compatibility-administrator-users-guide",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-administrator-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11042,12 +11042,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/applying-filters-to-data-in-the-sua-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/applying-filters-to-data-in-the-sua-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/applying-filters-to-data-in-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/available-data-types-and-operators-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/available-data-types-and-operators-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/available-data-types-and-operators-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11082,17 +11082,17 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/compatibility-administrator-users-guide.md",
|
||||
"redirect_url": "/windows/deployment/planning/compatibility-administrator-users-guide",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-administrator-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/compatibility-fix-database-management-strategies-and-deployment.md",
|
||||
"redirect_url": "/windows/deployment/planning/compatibility-fix-database-management-strategies-and-deployment",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fix-database-management-strategies-and-deployment",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/compatibility-fixes-for-windows-8-windows-7-and-windows-vista.md",
|
||||
"redirect_url": "/windows/deployment/planning/compatibility-fixes-for-windows-8-windows-7-and-windows-vista",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fixes-for-windows-8-windows-7-and-windows-vista",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11112,12 +11112,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/creating-a-custom-compatibility-fix-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/creating-a-custom-compatibility-fix-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-a-custom-compatibility-fix-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/creating-a-custom-compatibility-mode-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-a-custom-compatibility-mode-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11127,7 +11127,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/creating-an-apphelp-message-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/creating-an-apphelp-message-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-an-apphelp-message-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11202,7 +11202,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/enabling-and-disabling-compatibility-fixes-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/enabling-and-disabling-compatibility-fixes-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/enabling-and-disabling-compatibility-fixes-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11222,7 +11222,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/fixing-applications-by-using-the-sua-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/fixing-applications-by-using-the-sua-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/fixing-applications-by-using-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11242,7 +11242,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/installing-and-uninstalling-custom-compatibility-databases-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/installing-and-uninstalling-custom-compatibility-databases-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/installing-and-uninstalling-custom-compatibility-databases-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11267,7 +11267,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/managing-application-compatibility-fixes-and-custom-fix-databases.md",
|
||||
"redirect_url": "/windows/deployment/planning/managing-application-compatibility-fixes-and-custom-fix-databases",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/managing-application-compatibility-fixes-and-custom-fix-databases",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11317,12 +11317,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/searching-for-fixed-applications-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/searching-for-fixed-applications-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/searching-for-fixed-applications-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/searching-for-installed-compatibility-fixes-with-the-query-tool-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/searching-for-installed-compatibility-fixes-with-the-query-tool-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/searching-for-installed-compatibility-fixes-with-the-query-tool-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11367,7 +11367,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/showing-messages-generated-by-the-sua-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/showing-messages-generated-by-the-sua-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/showing-messages-generated-by-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11382,12 +11382,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/sua-users-guide.md",
|
||||
"redirect_url": "/windows/deployment/planning/sua-users-guide",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/sua-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/tabs-on-the-sua-tool-interface.md",
|
||||
"redirect_url": "/windows/deployment/planning/tabs-on-the-sua-tool-interface",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/tabs-on-the-sua-tool-interface",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11402,7 +11402,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/testing-your-application-mitigation-packages.md",
|
||||
"redirect_url": "/windows/deployment/planning/testing-your-application-mitigation-packages",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/testing-your-application-mitigation-packages",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11427,7 +11427,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/understanding-and-using-compatibility-fixes.md",
|
||||
"redirect_url": "/windows/deployment/planning/understanding-and-using-compatibility-fixes",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/understanding-and-using-compatibility-fixes",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -11442,27 +11442,27 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/using-the-compatibility-administrator-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/using-the-compatibility-administrator-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-compatibility-administrator-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/using-the-sdbinstexe-command-line-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/using-the-sdbinstexe-command-line-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sdbinstexe-command-line-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/using-the-sua-tool.md",
|
||||
"redirect_url": "/windows/deployment/planning/using-the-sua-tool",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/using-the-sua-wizard.md",
|
||||
"redirect_url": "/windows/deployment/planning/using-the-sua-wizard",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sua-wizard",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/plan/viewing-the-events-screen-in-compatibility-administrator.md",
|
||||
"redirect_url": "/windows/deployment/planning/viewing-the-events-screen-in-compatibility-administrator",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/viewing-the-events-screen-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -12377,22 +12377,22 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/app-behavior-with-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/app-behavior-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/app-behavior-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/collect-wip-audit-event-logs.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/collect-wip-audit-event-logs",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/collect-wip-audit-event-logs",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -12402,7 +12402,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/create-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -12417,12 +12417,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/create-wip-policy-using-sccm.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-wip-policy-using-sccm",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/deploy-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -12432,57 +12432,57 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/enlightened-microsoft-apps-and-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/guidance-and-best-practices-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/limitations-with-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/limitations-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/limitations-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/mandatory-settings-for-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/mandatory-settings-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/mandatory-settings-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/overview-create-wip-policy-sccm.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/overview-create-wip-policy-sccm",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/overview-create-wip-policy.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/protect-enterprise-data-using-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/recommended-network-definitions-for-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/recommended-network-definitions-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/recommended-network-definitions-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/testing-scenarios-for-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/using-owa-with-wip.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/using-owa-with-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/using-owa-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/threat-protection/windows-information-protection/wip-app-enterprise-context.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/wip-app-enterprise-context",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/wip-app-enterprise-context",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
|
@ -119,6 +119,181 @@
|
||||
"source_path": "store-for-business/work-with-partner-microsoft-store-business.md",
|
||||
"redirect_url": "/microsoft-365/commerce/manage-partners",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/acquire-apps-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/add-profile-to-devices.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/app-inventory-management-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/apps-in-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/assign-apps-to-employees.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/billing-payments-overview.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/billing-profile.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/billing-understand-your-invoice-msfb.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/configure-mdm-provider-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/distribute-apps-from-your-private-store.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/distribute-apps-to-your-employees-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/distribute-apps-with-management-tool.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/distribute-offline-apps.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/find-and-acquire-apps-overview.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/index.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-access-to-private-store.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-apps-microsoft-store-for-business-overview.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-orders-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-private-store-settings.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-settings-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/manage-users-and-groups-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/microsoft-store-for-business-education-powershell-module.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/microsoft-store-for-business-overview.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/notifications-microsoft-store-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/payment-methods.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/prerequisites-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/release-history-microsoft-store-business-education.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/roles-and-permissions-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/settings-reference-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/sfb-change-history.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/sign-up-microsoft-store-for-business-overview.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/troubleshoot-microsoft-store-for-business.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/update-microsoft-store-for-business-account-settings.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/whats-new-microsoft-store-business-education.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "store-for-business/working-with-line-of-business-apps.md",
|
||||
"redirect_url": "/microsoft-365/admin/",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -2,17 +2,17 @@
|
||||
"redirections": [
|
||||
{
|
||||
"source_path": "windows/configuration/basic-level-windows-diagnostic-events-and-fields-1703.md",
|
||||
"redirect_url": "/windows/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/basic-level-windows-diagnostic-events-and-fields-1709.md",
|
||||
"redirect_url": "/windows/privacy/basic-level-windows-diagnostic-events-and-fields-1709",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1709",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/basic-level-windows-diagnostic-events-and-fields.md",
|
||||
"redirect_url": "/windows/privacy/basic-level-windows-diagnostic-events-and-fields",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -27,7 +27,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/configure-windows-telemetry-in-your-organization.md",
|
||||
"redirect_url": "/windows/configuration/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_url": "/windows/privacy/configure-windows-diagnostic-data-in-your-organization",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -47,7 +47,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/gdpr-win10-whitepaper.md",
|
||||
"redirect_url": "/windows/privacy/gdpr-win10-whitepaper",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -72,7 +72,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/manage-windows-endpoints-version-1709.md",
|
||||
"redirect_url": "/windows/privacy/manage-windows-endpoints",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -262,17 +262,17 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/windows-diagnostic-data-1703.md",
|
||||
"redirect_url": "/windows/privacy/windows-diagnostic-data-1703",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/windows-diagnostic-data-1709.md",
|
||||
"redirect_url": "/windows/configuration/windows-diagnostic-data",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1709",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/configuration/windows-diagnostic-data.md",
|
||||
"redirect_url": "/windows/privacy/windows-diagnostic-data",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
|
@ -7,7 +7,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-mdt/create-a-task-sequence-with-configuration-manager-and-mdt.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -17,7 +17,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-mdt/deploy-windows-10-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-sccm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -37,32 +37,32 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/add-a-windows-10-operating-system-image-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/add-a-windows-10-operating-system-image-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-a-windows-10-operating-system-image-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/create-a-custom-windows-pe-boot-image-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/create-a-custom-windows-pe-boot-image-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-custom-windows-pe-boot-image-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/create-a-task-sequence-with-configuration-manager-and-mdt.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/create-an-application-to-deploy-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/create-an-application-to-deploy-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-an-application-to-deploy-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/deploy-windows-10-using-pxe-and-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -72,12 +72,12 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/deploy-windows-10-with-system-center-2012-r2-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -87,27 +87,27 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/integrate-configuration-manager-with-mdt.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager#integrate-configuration-manager-with-mdt",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager#integrate-configuration-manager-with-mdt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/monitor-windows-10-deployment-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager#procedures",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager#procedures",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-sccm/replace-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/windows/deployment/deploy-windows-cm/replace-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/replace-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -127,7 +127,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/act-technical-reference.md",
|
||||
"redirect_url": "/windows/deployment/planning/compatibility-administrator-users-guide",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-administrator-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -1189,11 +1189,421 @@
|
||||
"source_path": "windows/deployment/do/waas-delivery-optimization-setup.md",
|
||||
"redirect_url": "/windows/deployment/do/delivery-optimization-configure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/update/plan-determine-app-readiness.md",
|
||||
"redirect_url": "/windows/compatibility/windows-11/testing-guidelines",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/add-manage-products-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/add-remove-computers-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/install-configure-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/vamt-requirements",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/manage-activations-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/online-activation-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/manage-product-keys-vamt.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/add-remove-product-key-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/manage-vamt-data.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/import-export-vamt-data",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/volume-activation/vamt-step-by-step.md",
|
||||
"redirect_url": "/windows/deployment/volume-activation/scenario-online-activation-vamt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-groups-update-management.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/overview/windows-autopatch-overview",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-and-feature-update-reports-overview.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-quality-and-feature-update-reports-overview",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-summary-dashboard.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-quality-update-summary-dashboard",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-status-report.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-quality-update-status-report",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-trending-report.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-quality-update-trending-report",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-reliability-report.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-reliability-report",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-feature-update-summary-dashboard.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-feature-update-summary-dashboard",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-feature-update-status-report.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-feature-update-status-report",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-feature-update-trending-report.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-windows-feature-update-trending-report",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-device-alerts.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-device-alerts",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-policy-health-and-remediation.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-policy-health-and-remediation",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-resolve-policy-conflicts.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-resolve-policy-conflicts",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-maintain-environment.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/monitor/windows-autopatch-maintain-environment",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-customize-windows-update-settings.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-customize-windows-update-settings",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-edge.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-edge",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-exclude-device.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-exclude-device",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-manage-driver-and-firmware-updates.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-manage-driver-and-firmware-updates",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-manage-windows-feature-update-releases.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-manage-windows-feature-update-releases",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-microsoft-365-apps-enterprise.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-microsoft-365-apps-enterprise",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-support-request.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-support-request",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-teams.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-teams",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-unenroll-tenant.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-unenroll-tenant",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-feature-update-overview.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-feature-update-overview",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-communications.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-communications",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-end-user-exp.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-end-user-update-exp",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-overview.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-overview",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-windows-quality-update-signals.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-signals",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/references/windows-autopatch-microsoft-365-policies.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-microsoft-365-policies",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-signals.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-quality-update-overview",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/available-data-types-and-operators-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/available-data-types-and-operators-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/compatibility-administrator-users-guide.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-administrator-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/compatibility-fix-database-management-strategies-and-deployment.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fix-database-management-strategies-and-deployment",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/creating-a-custom-compatibility-fix-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-a-custom-compatibility-fix-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/creating-a-custom-compatibility-mode-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-a-custom-compatibility-mode-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/creating-an-apphelp-message-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/creating-an-apphelp-message-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/enabling-and-disabling-compatibility-fixes-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/enabling-and-disabling-compatibility-fixes-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/installing-and-uninstalling-custom-compatibility-databases-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/installing-and-uninstalling-custom-compatibility-databases-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/managing-application-compatibility-fixes-and-custom-fix-databases.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/managing-application-compatibility-fixes-and-custom-fix-databases",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/searching-for-fixed-applications-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/searching-for-fixed-applications-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/searching-for-installed-compatibility-fixes-with-the-query-tool-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/searching-for-installed-compatibility-fixes-with-the-query-tool-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/testing-your-application-mitigation-packages.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/testing-your-application-mitigation-packages",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/understanding-and-using-compatibility-fixes.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/understanding-and-using-compatibility-fixes",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/using-the-compatibility-administrator-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-compatibility-administrator-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/using-the-sdbinstexe-command-line-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sdbinstexe-command-line-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/viewing-the-events-screen-in-compatibility-administrator.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/viewing-the-events-screen-in-compatibility-administrator",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/compatibility-fixes-for-windows-8-windows-7-and-windows-vista.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fixes-for-windows-8-windows-7-and-windows-vista",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/applying-filters-to-data-in-the-sua-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/applying-filters-to-data-in-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/fixing-applications-by-using-the-sua-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/fixing-applications-by-using-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/showing-messages-generated-by-the-sua-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/showing-messages-generated-by-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/sua-users-guide.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/sua-users-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/tabs-on-the-sua-tool-interface.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/tabs-on-the-sua-tool-interface",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/using-the-sua-tool.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sua-tool",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/planning/using-the-sua-wizard.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/compatibility/using-the-sua-wizard",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-10-pro-in-s-mode.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/switch-edition-from-s-mode",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/s-mode.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/deploy/windows-autopatch-groups-manage-autopatch-groups.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-manage-autopatch-groups",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/add-a-windows-10-operating-system-image-using-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-a-windows-10-operating-system-image-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/create-a-custom-windows-pe-boot-image-with-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-custom-windows-pe-boot-image-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-a-task-sequence-with-configuration-manager-and-mdt",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/create-an-application-to-deploy-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/create-an-application-to-deploy-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/deploy-windows-10-using-pxe-and-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/finalize-the-os-configuration-for-windows-10-deployment-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/refresh-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/replace-a-windows-7-client-with-windows-10-using-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/replace-a-windows-7-client-with-windows-10-using-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/deploy-windows-cm/upgrade-to-windows-10-with-configuration-manager.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/deploy-windows-cm/upgrade-to-windows-10-with-configuration-manager",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-10-poc-sc-config-mgr.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/windows-10-poc-sc-config-mgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-10-poc.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/windows-10-poc",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-10-deployment-posters.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/windows-10-deployment-posters",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/prepare/windows-autopatch-enroll-tenant.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/prepare/windows-autopatch-feature-activation",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/manage/windows-autopatch-unenroll-tenant.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-feature-deactivation",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/references/windows-autopatch-changes-to-tenant.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/references/windows-autopatch-changes-made-at-feature-activation",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-autopatch/references/windows-autopatch-windows-update-unsupported-policies.md",
|
||||
"redirect_url": "/windows/deployment/windows-autopatch/manage/windows-autopatch-windows-update-policies",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/update/PSFxWhitepaper.md",
|
||||
"redirect_url": "/windows/deployment/update/forward-reverse-differentials",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/upgrade/windows-10-upgrade-paths.md",
|
||||
"redirect_url": "/windows/deployment/upgrade/windows-upgrade-paths",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -2,22 +2,22 @@
|
||||
"redirections": [
|
||||
{
|
||||
"source_path": "windows/privacy/basic-level-windows-diagnostic-events-and-fields.md",
|
||||
"redirect_url": "/windows/privacy/required-windows-diagnostic-data-events-and-fields-2004",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/deploy-data-processor-service-windows.md",
|
||||
"redirect_url": "/windows/privacy/windows-10-and-privacy-compliance",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/gdpr-it-guidance.md",
|
||||
"redirect_url": "/windows/privacy/windows-10-and-privacy-compliance",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/gdpr-win10-whitepaper.md",
|
||||
"redirect_url": "/windows/privacy/windows-10-and-privacy-compliance",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -27,38 +27,138 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-1709-endpoints.md",
|
||||
"redirect_url": "/windows/privacy/manage-windows-21h2-endpoints",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-1803-endpoints.md",
|
||||
"redirect_url": "/windows/privacy/manage-windows-21h2-endpoints",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-endpoints.md",
|
||||
"redirect_url": "/windows/privacy/manage-windows-2004-endpoints",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-1709-non-enterprise-editions.md",
|
||||
"redirect_url": "/windows/privacy/windows-endpoints-21h1-non-enterprise-editions",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-1803-non-enterprise-editions.md",
|
||||
"redirect_url": "/windows/privacy/windows-endpoints-21h1-non-enterprise-editions",
|
||||
"redirect_url": "/windows/privacy/index",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-personal-data-services-configuration.md",
|
||||
"redirect_url": "/windows/privacy/windows-10-and-privacy-compliance",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/enhanced-diagnostic-data-windows-analytics-events-and-fields.md",
|
||||
"redirect_url": "https://techcommunity.microsoft.com/t5/windows-it-pro-blog/preview-app-and-driver-compatibility-insights-in-endpoint/ba-p/3482136",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/basic-level-windows-diagnostic-events-and-fields-1703.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/basic-level-windows-diagnostic-events-and-fields-1709.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1709",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/basic-level-windows-diagnostic-events-and-fields-1803.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1803",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/basic-level-windows-diagnostic-events-and-fields-1903.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1903",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-1903-endpoints.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/manage-windows-1903-endpoints",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-1909-endpoints.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/manage-windows-1909-endpoints",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-2004-endpoints.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/manage-windows-2004-endpoints",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-20H2-endpoints.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/manage-windows-20H2-endpoints",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/manage-windows-21H1-endpoints.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/manage-windows-21H1-endpoints",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-1809-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-1809-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-1903-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-1903-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-1909-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-1909-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-2004-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-2004-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-20H2-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-20H2-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-endpoints-21H1-non-enterprise-editions.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/windows-endpoints-21H1-non-enterprise-editions",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-diagnostic-data-1703.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/basic-level-windows-diagnostic-events-and-fields-1703",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/changes-to-windows-diagnostic-data-collection.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/privacy/changes-to-windows-diagnostic-data-collection",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-10-and-privacy-compliance.md",
|
||||
"redirect_url": "/windows/privacy/windows-privacy-compliance-guide",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/windows-diagnostic-data.md",
|
||||
"redirect_url": "/windows/privacy/optional-diagnostic-data",
|
||||
"redirect_document_id": true
|
||||
},
|
||||
{
|
||||
"source_path": "windows/privacy/Microsoft-DiagnosticDataViewer.md",
|
||||
"redirect_url": "/windows/privacy/diagnostic-data-viewer-powershell",
|
||||
"redirect_document_id": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -852,27 +852,27 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-wip-policy-using-intune.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-wip-policy-using-mam-intune-azure.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/how-wip-works-with-labels.md",
|
||||
"redirect_url": "/windows/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -4082,7 +4082,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/threat-protection/microsoft-defender-smartscreen/microsoft-defender-smartscreen-overview.md",
|
||||
"redirect_url": "/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen",
|
||||
"redirect_url": "https://feedback.smartscreen.microsoft.com/smartscreenfaq.aspx",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -5127,7 +5127,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/threat-protection/windows-defender-application-control/LOB-win32-apps-on-s.md",
|
||||
"redirect_url": "/windows/security/application-security/application-control/windows-defender-application-control/deployment/LOB-win32-apps-on-s",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/wdac-allow-lob-win32-apps",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -6727,7 +6727,7 @@
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/threat-protection/windows-defender-smartscreen/windows-defender-smartscreen-overview.md",
|
||||
"redirect_url": "/windows/security/threat-protection/microsoft-defender-smartscreen/microsoft-defender-smartscreen-overview",
|
||||
"redirect_url": "https://feedback.smartscreen.microsoft.com/smartscreenfaq.aspx",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
@ -9184,6 +9184,111 @@
|
||||
"source_path": "windows/security/identity-protection/hello-for-business/hello-feature-dual-enrollment.md",
|
||||
"redirect_url": "/windows/security/identity-protection/hello-for-business/dual-enrollment",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/app-behavior-with-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/app-behavior-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/collect-wip-audit-event-logs.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/collect-wip-audit-event-logs",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-and-verify-an-efs-dra-certificate",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-vpn-and-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-wip-policy-using-configmgr.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/create-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/deploy-wip-policy-using-intune-azure",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/enlightened-microsoft-apps-and-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/guidance-and-best-practices-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/guidance-and-best-practices-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/how-to-disable-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/how-to-disable-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/limitations-with-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/limitations-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/mandatory-settings-for-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/mandatory-settings-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/overview-create-wip-policy-configmgr.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy-configmgr",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/overview-create-wip-policy.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/overview-create-wip-policy",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/recommended-network-definitions-for-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/recommended-network-definitions-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/testing-scenarios-for-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/testing-scenarios-for-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/using-owa-with-wip.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/using-owa-with-wip",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/wip-app-enterprise-context.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/wip-app-enterprise-context",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/information-protection/windows-information-protection/wip-learning.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/wip-learning",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/security/application-security/application-control/windows-defender-application-control/deployment/LOB-win32-apps-on-s.md",
|
||||
"redirect_url": "/previous-versions/windows/it-pro/windows-10/deployment/s-mode/wdac-allow-lob-win32-apps",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -42,7 +42,7 @@
|
||||
},
|
||||
{
|
||||
"source_path":"windows/whats-new/edp-whats-new-overview.md",
|
||||
"redirect_url":"/windows/threat-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_url":"/previous-versions/windows/it-pro/windows-10/security/information-protection/windows-information-protection/protect-enterprise-data-using-wip",
|
||||
"redirect_document_id":false
|
||||
},
|
||||
{
|
||||
|
@ -1,31 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E6E6E6;}
|
||||
.st1{fill:#C2C2C2;}
|
||||
.st2{fill:#939393;}
|
||||
.st3{fill:#2F2F2F;}
|
||||
.st4{fill:#0078D4;}
|
||||
</style>
|
||||
<title>EDUAdmins-50px</title>
|
||||
<path class="st0" d="M25.2,47.2c-12.3,0-22.3-10-22.3-22.3s10-22.3,22.3-22.3s22.3,10,22.3,22.3v0C47.6,37.2,37.6,47.2,25.2,47.2
|
||||
C25.3,47.2,25.2,47.2,25.2,47.2z"/>
|
||||
<path class="st1" d="M25.2,3.7c11.7,0,21.1,9.5,21.1,21.1S36.9,46,25.2,46S4.1,36.5,4.1,24.9l0,0C4.1,13.2,13.6,3.7,25.2,3.7
|
||||
L25.2,3.7 M25.2,1.4c-13,0-23.5,10.5-23.5,23.5s10.5,23.5,23.5,23.5s23.5-10.5,23.5-23.5l0,0C48.7,11.9,38.2,1.4,25.2,1.4
|
||||
C25.2,1.4,25.2,1.4,25.2,1.4z"/>
|
||||
<g>
|
||||
<title>MapPin-blue</title>
|
||||
<polygon class="st2" points="34.5,27.8 32.5,21.8 28,21.8 27.9,27.8 "/>
|
||||
<polygon class="st2" points="23.5,21.8 19,21.8 17.1,27.8 23.4,27.8 "/>
|
||||
<path class="st2" d="M37.9,35.3l-2.2-6.6H28l0,0c0,1.4-1.1,2.5-2.5,2.5c-1.4,0-2.5-1.1-2.5-2.5h-7.5l-2.2,6.6H37.9z"/>
|
||||
<path class="st3" d="M25.7,30c-0.4,0-0.7-0.3-0.7-0.7V18.8c0-0.4,0.3-0.7,0.7-0.7s0.7,0.3,0.7,0.7v10.4C26.4,29.7,26.1,30,25.7,30z
|
||||
"/>
|
||||
<path class="st4" d="M29.1,13.6c-0.2-0.4-0.5-0.8-0.8-1.2c-0.3-0.3-0.7-0.6-1.2-0.8c-0.5-0.2-1-0.3-1.5-0.3c-0.5,0-1,0.1-1.5,0.3
|
||||
c-0.4,0.2-0.8,0.5-1.2,0.8c-0.3,0.3-0.6,0.7-0.8,1.2c-0.2,0.5-0.3,1-0.3,1.5c0,0.5,0.1,1,0.3,1.5c0.2,0.4,0.5,0.9,0.8,1.2
|
||||
c0.2,0.2,0.3,0.3,0.5,0.4c0.2,0.1,0.4,0.3,0.7,0.4l0,0c0.2,0.1,0.5,0.2,0.7,0.2c0.5,0.1,1,0.1,1.5,0c0.3,0,0.5-0.1,0.7-0.2l0,0
|
||||
c0.2-0.1,0.5-0.2,0.7-0.4c0.2-0.1,0.4-0.3,0.5-0.4c0.3-0.3,0.6-0.8,0.7-1.2c0.2-0.5,0.3-1,0.3-1.5C29.4,14.6,29.3,14.1,29.1,13.6z"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,3 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048" width="18" height="18" >
|
||||
<path d="M0 0h961v961H0V0zm1087 0h961v961h-961V0zM0 1087h961v961H0v-961zm1087 0h961v961h-961v-961z" fill="#0078D4" />
|
||||
</svg>
|
Before Width: | Height: | Size: 215 B |
Before Width: | Height: | Size: 187 KiB |
Before Width: | Height: | Size: 268 KiB |
Before Width: | Height: | Size: 178 KiB |
Before Width: | Height: | Size: 279 KiB |
Before Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 345 KiB |
Before Width: | Height: | Size: 706 KiB |
Before Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 309 KiB |
Before Width: | Height: | Size: 245 KiB |
Before Width: | Height: | Size: 287 KiB |
Before Width: | Height: | Size: 155 KiB |
Before Width: | Height: | Size: 379 KiB |
Before Width: | Height: | Size: 452 KiB |
Before Width: | Height: | Size: 228 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 23 KiB |
@ -39,7 +39,7 @@ productDirectory:
|
||||
text: "Tutorial: deploy and manage Windows devices in a school"
|
||||
- url: /education/windows/tutorial-school-deployment/enroll-autopilot
|
||||
text: Enrollment in Intune with Windows Autopilot
|
||||
- url: use-set-up-school-pcs-app.md
|
||||
- url: suspcs/index.md
|
||||
text: Deploy devices with Set up School PCs
|
||||
- url: /windows/deployment
|
||||
text: Learn more about Windows deployment >
|
||||
@ -78,7 +78,7 @@ productDirectory:
|
||||
text: Set up a shared or guest Windows device
|
||||
- url: /education/windows/take-tests-in-windows
|
||||
text: Take tests and assessments in Windows
|
||||
- url: set-up-school-pcs-provisioning-package.md
|
||||
- url: /education/windows/suspcs/provisioning-package
|
||||
text: Provisioning package settings
|
||||
- url: https://www.youtube.com/watch?v=2ZLup_-PhkA
|
||||
text: "Video: Use the Set up School PCs App"
|
||||
@ -136,4 +136,4 @@ additionalContent:
|
||||
- text: Microsoft Intune community
|
||||
url: https://techcommunity.microsoft.com/t5/microsoft-intune/bd-p/Microsoft-Intune
|
||||
- text: Microsoft Support community
|
||||
url: https://answers.microsoft.com/
|
||||
url: https://answers.microsoft.com/
|
||||
|
BIN
education/windows/suspcs/images/landing-page.png
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
education/windows/suspcs/images/splash-screen.png
Normal file
After Width: | Height: | Size: 168 KiB |
@ -2,14 +2,15 @@
|
||||
title: Use Set up School PCs app
|
||||
description: Learn how to use the Set up School PCs app and apply the provisioning package.
|
||||
ms.topic: how-to
|
||||
ms.date: 11/09/2023
|
||||
ms.date: 07/09/2024
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
# Use the Set up School PCs app
|
||||
|
||||
IT administrators and technical teachers can use the **Set up School PCs** app to quickly set up Windows devices for students. The app configures devices with the apps and features students need, and it removes the ones they don't need. During setup, if licensed in your tenant, the app enrolls each student device in Microsoft Intune. You can then manage all the settings the app configures through Intune.
|
||||
IT administrators and technical teachers can use the **Set up School PCs** app to quickly set up Windows devices for students. During setup, student devices can be enrolled in Microsoft Intune, so that you can manage all the settings the app configures through Intune.
|
||||
|
||||
With Set up School PCs you can:
|
||||
|
||||
@ -18,7 +19,9 @@ With Set up School PCs you can:
|
||||
- Use Windows Update and maintenance hours to keep student devices up-to-date, without interfering with class time
|
||||
- Lock down student devices to prevent activity that aren't beneficial to their education
|
||||
|
||||
This article describes how to use the Set up School PCs app. To learn more about the app's functionality, review the [Technical reference for the Set up School PCs app](set-up-school-pcs-technical.md).
|
||||
This article describes how to use the Set up School PCs app. To learn more about the app's functionality, review the [Technical reference for the Set up School PCs app](reference.md).
|
||||
|
||||
:::image type="content" source="images/splash-screen.png" alt-text="Screenshot of the SUSPCs splash screen." border="false":::
|
||||
|
||||
## Requirements
|
||||
|
||||
@ -95,10 +98,13 @@ We strongly recommend that you avoid changing preset policies. Changes can slow
|
||||
|
||||
The **Set up School PCs** app guides you through the configuration choices for the student PCs. To begin, open the app on your device and select **Get started**.
|
||||
|
||||

|
||||
|
||||
### Package name
|
||||
:::image type="content" source="images/landing-page.png" alt-text="Screenshot of the SUSPCs landing page." border="false":::
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
### Package name
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Type a unique name to help distinguish your school's provisioning packages. The name appears:
|
||||
|
||||
- On the local package folder
|
||||
@ -106,59 +112,57 @@ Type a unique name to help distinguish your school's provisioning packages. The
|
||||
|
||||
A package expiration date is also attached to the end of each package. For example, *Set_Up_School_PCs (Expires 1-1-2024)*. The expiration date is 180 days after you create your package.
|
||||
|
||||

|
||||
|
||||
After you select **Next**, you can no longer change the name in the app. To create a package with a different name, reopen the Set up School PCs app.
|
||||
|
||||
To change an existing package's name, right-click the package folder on your device and select **Rename**. This action doesn't change the name in Microsoft Entra ID. You can access to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least a [User Administrator](/entra/identity/role-based-access-control/permissions-reference#user-administrator), and rename the package there.
|
||||
To change an existing package's name, right-click the package folder on your device and select **Rename**. This action doesn't change the name in Microsoft Entra ID. You can access to the [Microsoft Entra admin center](https://entra.microsoft.com) as at least a [User Administrator](/entra/identity/role-based-access-control/permissions-reference#user-administrator), and rename the package there.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
|
||||
### Sign in
|
||||
|
||||
### Connect your school's account
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
1. Select how you want to sign in
|
||||
1. (Recommended) To enable student device to automatically connect and authenticate to Microsoft Entra ID, and management services like Microsoft Intune, select **Sign-in**. Then go to step 3
|
||||
1. To complete setup without signing in, select **Continue without account**. Student devices won't connect to your school's cloud services and their management will be more difficult later. Continue to [Wireless network](#wireless-network)
|
||||
1. To complete setup without signing in, select **Continue without account**. Student devices won't connect to your school's cloud services and their management will be more difficult later. Continue to [Select a wireless network](#select-a-wireless-network)
|
||||
1. In the new window, select the account you want to use throughout setup.
|
||||
|
||||

|
||||
|
||||
To add an account not listed:
|
||||
1. Select **Work or school account** > **Continue**.
|
||||
1. Type in the account username and select **Next**.
|
||||
1. Verify the user account and password, if prompted.
|
||||
|
||||
1. Select **Accept** to allow Set up School PCs to access your account throughout setup
|
||||
1. When your account name appears on the page, select **Next**
|
||||
1. When your account name appears on the page, select **Next** <br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||

|
||||
|
||||
### Wireless network
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Select a wireless network
|
||||
|
||||
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Add and save the wireless network profile that you want student devices to connect to. Only skip Wi-Fi setup if you have an Ethernet connection.
|
||||
|
||||
Select your organization's Wi-Fi network from the list of available wireless networks, or select **Add a wireless network** to manually configure it. Then select **Next**
|
||||
Select your organization's Wi-Fi network from the list of available wireless networks, or select **Add a wireless network** to manually configure it. Then select **Next**.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||

|
||||
|
||||
### Device names
|
||||
|
||||
Create a name to add as a prefix to each device. This name helps you recognize and manage this group of devices in Intune.
|
||||
|
||||
To make sure all device names are unique, Set up School PCs automatically appends `_%SERIAL%` to the name. For example, if you add *MATH4* as the prefix, the device names appear as *MATH4* followed by the device serial number.
|
||||
|
||||
To keep the default name for your devices, select **Continue with existing names**.
|
||||
|
||||

|
||||
|
||||
### Settings
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Configure device settings
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Select more settings to include in the provisioning package. To begin, select the operating system on your student PCs.
|
||||
|
||||

|
||||
|
||||
Setting selections vary based on the OS version you select.
|
||||
|
||||

|
||||
|
||||
The following table describes each setting and lists the applicable Windows 10 versions. To find out if a setting is available in your version of Windows 10, look for an *X* in the setting row and in the version column.
|
||||
|
||||
| Setting | What happens if I select it? | Note |
|
||||
@ -170,74 +174,113 @@ The following table describes each setting and lists the applicable Windows 10 v
|
||||
| Enable Autopilot Reset | Lets you remotely reset a student's PC from the lock screen, apply the device's original settings, and enroll it in device management (Microsoft Entra ID and MDM). | WinRE must be enabled on the device. |
|
||||
| Lock screen background | Change the default screen lock background to a custom image. | Select **Browse** to search for an image file on your computer. Accepted image formats are jpg, jpeg, and png. |
|
||||
|
||||
After you've made your selections, select **Next**.
|
||||
After you've made your selections, select **Next**.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||
### Time zone
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Name devices
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Create a name to add as a prefix to each device. This name helps you recognize and manage this group of devices in Intune.
|
||||
|
||||
To make sure all device names are unique, Set up School PCs automatically appends `_%SERIAL%` to the name. For example, if you add *MATH4* as the prefix, the device names appear as *MATH4* followed by the device serial number.
|
||||
|
||||
To keep the default name for your devices, select **Continue with existing names**.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Select time zone
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
> [!WARNING]
|
||||
> If you are using the Autounattend.xml file to reimage your school PCs, do not specify a time zone in the file. If you set the time zone in the file *and* in this app, you will encounter an error.
|
||||
|
||||
Choose the time zone where your school's devices are used. This setting ensures that all PCs are provisioned in the same time zone. When you're done, select **Next**.
|
||||
Choose the time zone where your school's devices are used. This setting ensures that all PCs are provisioned in the same time zone. When you're done, select **Next**.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||

|
||||
|
||||
### Product key
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Change product key
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Optionally, type in a 25-digit product key to upgrade or change the edition of Windows on your student devices. If you don't have a product key, select **Continue without change**.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||
Optionally, type in a 25-digit product key to upgrade or change the edition of Windows on your student devices. If you don't have a product key, select **Continue without change**.
|
||||
|
||||

|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Set up the Take a Test app
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
|
||||
### Take a Test
|
||||
|
||||
Set up the Take a Test app to give online quizzes and high-stakes assessments. During assessments, Windows locks down the student devices so that students can't access anything else on the device.
|
||||
Set up the Take a Test app to give online quizzes and high-stakes assessments. During assessments, Windows locks down the student devices so that students can't access anything else on the device.
|
||||
|
||||
1. Select **Yes** to create a Take a Test button on the sign-in screens of your students' devices
|
||||
|
||||

|
||||
|
||||
1. Select from the advanced settings. Available settings include:
|
||||
- Allow keyboard auto-suggestions: Allows app to suggest words as the student types on the device's keyboard
|
||||
- Allow teachers to monitor online tests: Enables screen capture in the Take a Test app
|
||||
1. Enter the URL where the test is hosted. When students log in to the Take a Test account, they'll be able to select or enter the link to view the assessment
|
||||
1. Select **Next**
|
||||
1. Select **Next**<br><br>
|
||||
column-end:::
|
||||
:::row-end:::
|
||||
|
||||
### Personalization
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Choose backgrounds
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
|
||||
Upload custom images to replace the student devices' default desktop and lock screen backgrounds. Select **Browse** to search for an image file on your computer. Accepted image formats are jpg, jpeg, and png.
|
||||
|
||||
If you don't want to upload custom images or use the images that appear in the app, select **Continue without personalization**. This option doesn't apply any customizations, and instead uses the devices' default or preset images.
|
||||
If you don't want to upload custom images or use the images that appear in the app, select **Continue without personalization**. This option doesn't apply any customizations, and instead uses the devices' default or preset images.<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||

|
||||
|
||||
### Summary
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
#### Summary
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
Review all of the settings for accuracy and completeness
|
||||
|
||||
1. To make changes now, select any page along the left side of the window
|
||||
2. When finished, select **Accept**
|
||||
|
||||

|
||||
|
||||
> [!NOTE]
|
||||
> To make changes to a saved package, you have to start over.
|
||||
|
||||
### Insert USB
|
||||
<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||
:::row:::
|
||||
:::column span="1":::
|
||||
|
||||
#### Save the package
|
||||
:::column-end:::
|
||||
:::column span="3":::
|
||||
1. Insert a USB drive. The **Save** button lights up when your computer detects the USB
|
||||
1. Choose your USB drive from the list and select **Save**
|
||||
|
||||

|
||||
|
||||
1. When the package is ready, you see the filename and package expiration date. You can also select **Add a USB** to save the same provisioning package to another USB drive. When you're done, remove the USB drive and select **Next**
|
||||
|
||||

|
||||
1. When the package is ready, you see the filename and package expiration date. You can also select **Add a USB** to save the same provisioning package to another USB drive. When you're done, remove the USB drive and select **Next**<br><br>
|
||||
:::column-end:::
|
||||
:::row-end:::
|
||||
|
||||
## Run package - Get PCs ready
|
||||
|
||||
Complete each step on the **Get PCs ready** page to prepare student devices for set-up. Then select **Next**.
|
||||
|
||||

|
||||
|
||||
## Run package - Install package on PC
|
||||
|
||||
The provisioning package on your USB drive is named SetupSchoolPCs_<*devicename*>(Expires <*expiration date*>.ppkg. A provisioning package applies settings to Windows without reimaging the device.
|
||||
@ -245,20 +288,11 @@ The provisioning package on your USB drive is named SetupSchoolPCs_<*devicename*
|
||||
When used in context of the Set up School PCs app, the word *package* refers to your provisioning package. The word *provisioning* refers to the act of installing the package on the student device. This section describes how to apply the settings to a device in your school.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> The devices must have a new or reset Windows image and must not already have been through first-run setup experience (which is referred to as *OOBE*). For instructions about how to reset a devices's image, see [Prepare existing PC account for new setup](use-set-up-school-pcs-app.md#prepare-existing-pc-account-for-new-setup).
|
||||
> The devices must have a new or reset Windows image and must not already have been through first-run setup experience (which is referred to as *OOBE*). For instructions about how to reset a devices's image, see [Prepare existing PC account for new setup](#prepare-existing-pc-account-for-new-setup).
|
||||
|
||||
1. Start with the student device turned off or with the device on the first-run setup screen. If the device is past the account setup screen, reset the device to start over. To reset the it, go to **Settings** > **Update & security** > **Recovery** > **Reset this PC**
|
||||
|
||||

|
||||
|
||||
1. Insert the USB drive. Windows automatically recognizes and installs the package
|
||||
|
||||

|
||||
|
||||
1. When you receive the message that it's okay to remove the USB drive, remove it from the device. If there are more devices to set up, insert the USB drive into the next one
|
||||
|
||||

|
||||
|
||||
1. If you didn't set up the package with Microsoft Entra join, continue the Windows device setup experience. If you did configure the package with Microsoft Entra join, the device is ready for use and no further configurations are required
|
||||
|
||||
If successful, you'll see a setup complete message. The PCs start up on the lock screen, with your school's custom background. Upon first use, students and teachers can connect to your school's network and resources.
|
@ -4,6 +4,7 @@ description: Learn about the settings that are configured in the provisioning pa
|
||||
ms.date: 04/10/2024
|
||||
ms.topic: reference
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
@ -28,7 +29,7 @@ For a more detailed look at the policies, see the Windows article [Set up shared
|
||||
| Policy name | Default value | Description |
|
||||
|--|--|--|
|
||||
| Enable Shared PC mode | True | Configures the PCs so they're in shared PC mode. |
|
||||
| Set education policies | True | School-optimized settings are applied to the PCs so that they're appropriate for an educational environment. To see all recommended and enabled policies, see [Windows 10 configuration recommendation for education customers](./configure-windows-for-education.md). |
|
||||
| Set education policies | True | School-optimized settings are applied to the PCs so that they're appropriate for an educational environment.|
|
||||
| Account Model | Only guest, Domain-joined only, or Domain-joined and guest | Controls how users can sign in on the PC. Configurable from the Set up School PCs app. Choosing domain-joined enables any user in the domain to sign in. Specifying the guest option adds the Guest option to the sign-in screen and enable anonymous guest access to the PC. |
|
||||
| Deletion policy | Delete at disk space threshold and inactive threshold | Delete at disk space threshold starts deleting accounts when available disk space falls below the threshold you set for disk level deletion. It stops deleting accounts when the available disk space reaches the threshold you set for disk level caching. Accounts are deleted in order of oldest accessed to most recently accessed. Also deletes accounts if they haven't signed in within the number of days specified by inactive threshold policy. |
|
||||
| Disk level caching | 50% | Sets 50% of total disk space to be used as the disk space threshold for account caching. |
|
||||
@ -120,13 +121,3 @@ Review the table below to estimate your expected provisioning time. A package th
|
||||
| Default settings + apps | Wi-Fi | 10 to 15 minutes |
|
||||
| Default settings + remove preinstalled apps (CleanPC) | Wi-Fi | 60 minutes |
|
||||
| Default settings + other settings (Not CleanPC) | Wi-Fi | 5 minutes |
|
||||
|
||||
## Next steps
|
||||
|
||||
Learn more about setting up devices with the Set up School PCs app.
|
||||
|
||||
- [Microsoft Entra join with Set up School PCs](set-up-school-pcs-azure-ad-join.md)
|
||||
- [Set up School PCs technical reference](set-up-school-pcs-technical.md)
|
||||
- [Set up Windows 10 devices for education](set-up-windows-10.md)
|
||||
|
||||
When you're ready to create and apply your provisioning package, see [Use Set up School PCs app](use-set-up-school-pcs-app.md).
|
@ -4,6 +4,7 @@ description: Describes the purpose of the Set up School PCs app for Windows 10 d
|
||||
ms.topic: overview
|
||||
ms.date: 01/16/2024
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
@ -12,7 +13,7 @@ appliesto:
|
||||
The **Set up School PCs** app helps you configure new Windows 10 PCs for school use. The app, which is available for Windows 10 version 1703 and later, configures and saves school-optimized settings, apps, and policies into a single provisioning package. You can then save the package to a USB drive and distribute it to your school PCs.
|
||||
|
||||
If your school uses Microsoft Entra ID or Office 365, the Set up
|
||||
School PCs app will create a setup file. This file joins the PC to your Microsoft Entra tenant. The app also helps set up PCs for use with or without Internet connectivity.
|
||||
School PCs app will create a setup file. This file joins the PC to your Microsoft Entra tenant. The app also helps set up PCs for use with or without Internet connectivity.
|
||||
|
||||
## Join devices to Microsoft Entra ID
|
||||
|
||||
@ -46,4 +47,4 @@ The following table describes the Set up School PCs app features and lists each
|
||||
>[!NOTE]
|
||||
>You can only use the Set up School PCs app to set up PCs that are connected to Microsoft Entra ID.
|
||||
|
||||
When you're ready to create and apply your provisioning package, see [Use Set up School PCs app](use-set-up-school-pcs-app.md).
|
||||
When you're ready to create and apply your provisioning package, see [Use Set up School PCs app](index.md).
|
@ -16,18 +16,8 @@ items:
|
||||
href: windows-11-se-settings-list.md
|
||||
- name: Frequently Asked Questions (FAQ)
|
||||
href: windows-11-se-faq.yml
|
||||
- name: Windows in S Mode
|
||||
items:
|
||||
- name: Overview
|
||||
href: /windows/deployment/s-mode?context=/education/context/context
|
||||
- name: Switch Windows edition from S mode
|
||||
href: /windows/deployment/windows-10-pro-in-s-mode?context=/education/context/context
|
||||
- name: Deploy Win32 apps to S Mode devices
|
||||
href: /windows/security/threat-protection/windows-defender-application-control/lob-win32-apps-on-s?context=/education/context/context
|
||||
- name: Considerations for shared and guest devices
|
||||
- name: Shared devices and guests access
|
||||
href: /windows/configuration/shared-devices-concepts?context=/education/context/context
|
||||
- name: Windows 10 configuration recommendations for education customers
|
||||
href: configure-windows-for-education.md
|
||||
- name: Take tests and assessments in Windows
|
||||
href: take-tests-in-windows.md
|
||||
- name: How-to-guides
|
||||
@ -49,7 +39,7 @@ items:
|
||||
- name: Get and deploy Minecraft Education
|
||||
href: get-minecraft-for-education.md
|
||||
- name: Use the Set up School PCs app
|
||||
href: use-set-up-school-pcs-app.md
|
||||
href: suspcs/index.md
|
||||
- name: Upgrade Windows Home to Windows Education on student-owned devices
|
||||
href: change-home-to-edu.md
|
||||
- name: Reference
|
||||
@ -57,9 +47,9 @@ items:
|
||||
- name: Set up School PCs
|
||||
items:
|
||||
- name: Set up School PCs app technical reference
|
||||
href: set-up-school-pcs-technical.md
|
||||
href: suspcs/reference.md
|
||||
- name: Provisioning package settings
|
||||
href: set-up-school-pcs-provisioning-package.md
|
||||
href: suspcs/provisioning-package.md
|
||||
- name: Take a Test technical reference
|
||||
href: take-a-test-app-technical.md
|
||||
- name: Shared PC technical reference
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
author: paolomatarazzo
|
||||
ms.author: paoloma
|
||||
ms.date: 08/15/2023
|
||||
ms.date: 08/20/2024
|
||||
ms.topic: include
|
||||
ms.service: windows-client
|
||||
---
|
||||
|
||||
The following instructions provide details how to configure your devices. Select the option that best suits your needs.
|
||||
The following instructions provide details about how to configure your devices. Select the option that best suits your needs.
|
@ -1,84 +0,0 @@
|
||||
- name: Microsoft Store for Business
|
||||
href: index.md
|
||||
items:
|
||||
- name: What's new in Microsoft Store for Business and Education
|
||||
href: whats-new-microsoft-store-business-education.md
|
||||
- name: Sign up and get started
|
||||
href: sign-up-microsoft-store-for-business-overview.md
|
||||
items:
|
||||
- name: Microsoft Store for Business and Microsoft Store for Education overview
|
||||
href: microsoft-store-for-business-overview.md
|
||||
- name: Prerequisites for Microsoft Store for Business and Education
|
||||
href: prerequisites-microsoft-store-for-business.md
|
||||
- name: Roles and permissions in the Microsoft Store for Business and Education
|
||||
href: roles-and-permissions-microsoft-store-for-business.md
|
||||
- name: "Settings reference: Microsoft Store for Business and Education"
|
||||
href: settings-reference-microsoft-store-for-business.md
|
||||
- name: Find and acquire apps
|
||||
href: find-and-acquire-apps-overview.md
|
||||
items:
|
||||
- name: Apps in the Microsoft Store for Business and Education
|
||||
href: apps-in-microsoft-store-for-business.md
|
||||
- name: Acquire apps
|
||||
href: acquire-apps-microsoft-store-for-business.md
|
||||
- name: Working with line-of-business apps
|
||||
href: working-with-line-of-business-apps.md
|
||||
- name: Distribute apps
|
||||
href: distribute-apps-to-your-employees-microsoft-store-for-business.md
|
||||
items:
|
||||
- name: Distribute apps using your private store
|
||||
href: distribute-apps-from-your-private-store.md
|
||||
- name: Assign apps to employees
|
||||
href: assign-apps-to-employees.md
|
||||
- name: Distribute apps with a management tool
|
||||
href: distribute-apps-with-management-tool.md
|
||||
- name: Distribute offline apps
|
||||
href: distribute-offline-apps.md
|
||||
- name: Manage products and services
|
||||
href: manage-apps-microsoft-store-for-business-overview.md
|
||||
items:
|
||||
- name: App inventory management
|
||||
href: app-inventory-management-microsoft-store-for-business.md
|
||||
- name: Manage orders
|
||||
href: manage-orders-microsoft-store-for-business.md
|
||||
- name: Manage access to private store
|
||||
href: manage-access-to-private-store.md
|
||||
- name: Manage private store settings
|
||||
href: manage-private-store-settings.md
|
||||
- name: Configure MDM provider
|
||||
href: configure-mdm-provider-microsoft-store-for-business.md
|
||||
- name: Manage Windows device deployment with Windows Autopilot Deployment
|
||||
href: add-profile-to-devices.md
|
||||
- name: Microsoft Store for Business and Education PowerShell module - preview
|
||||
href: microsoft-store-for-business-education-powershell-module.md
|
||||
- name: Working with solution providers
|
||||
href: /microsoft-365/commerce/manage-partners
|
||||
- name: Billing and payments
|
||||
href: billing-payments-overview.md
|
||||
items:
|
||||
- name: Understand your invoice
|
||||
href: billing-understand-your-invoice-msfb.md
|
||||
- name: Payment methods
|
||||
href: payment-methods.md
|
||||
- name: Understand billing profiles
|
||||
href: billing-profile.md
|
||||
- name: Manage settings in the Microsoft Store for Business and Education
|
||||
href: manage-settings-microsoft-store-for-business.md
|
||||
items:
|
||||
- name: Update account settings
|
||||
href: update-microsoft-store-for-business-account-settings.md
|
||||
- name: Manage user accounts
|
||||
href: manage-users-and-groups-microsoft-store-for-business.md
|
||||
- name: Device Guard signing portal
|
||||
href: device-guard-signing-portal.md
|
||||
items:
|
||||
- name: Add unsigned app to code integrity policy
|
||||
href: add-unsigned-app-to-code-integrity-policy.md
|
||||
- name: Sign code integrity policy with Device Guard signing
|
||||
href: sign-code-integrity-policy-with-device-guard-signing.md
|
||||
- name: Troubleshoot
|
||||
href: troubleshoot-microsoft-store-for-business.md
|
||||
- name: Notifications
|
||||
href: notifications-microsoft-store-business.md
|
||||
- name: Change history
|
||||
href: sfb-change-history.md
|
@ -1,100 +0,0 @@
|
||||
---
|
||||
title: Acquire apps in Microsoft Store for Business (Windows 10)
|
||||
description: As an admin, you can acquire apps from the Microsoft Store for Business for your employees. Some apps are free, and some have a price. For info on app types that are supported, see Apps in the Microsoft Store for Business.
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.reviewer:
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Acquire apps in Microsoft Store for Business and Education
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
> [!NOTE]
|
||||
> As of April 14th, 2021, only free apps are available in Microsoft Store for Business and Education. For more information, see [Microsoft Store for Business and Education](index.md).
|
||||
|
||||
As an admin, you can acquire apps from the Microsoft Store for Business and Education for your employees. Some apps are free, and some have a price. For info on app types that are supported, see [Apps in the Microsoft Store for Business](apps-in-microsoft-store-for-business.md). The following sections explain some of the settings for shopping.
|
||||
|
||||
## App licensing model
|
||||
|
||||
The Microsoft Store supports two options to license apps: online and offline. **Online** licensing is the default licensing model. Online licensed apps require users and devices to connect to the Microsoft Store services to acquire an app and its license. **Offline** licensing is a new licensing option for Windows 10. With offline licenses, organizations can cache apps and their licenses to deploy within their network. ISVs or devs can opt-in their apps for offline licensing when they submit them to the developer center. Admins control whether or not offline apps are available in Microsoft Store with an offline app visibility setting.
|
||||
|
||||
For more information on the Microsoft Store licensing model, see [licensing model](./apps-in-microsoft-store-for-business.md#licensing-model).
|
||||
|
||||
## Payment options
|
||||
|
||||
Some apps are free, and some have a price. Apps can be purchased in the Microsoft Store using your credit card. You can enter your credit card information on **Account Information**, or when you purchase an app. Currently, we accept these credit cards:
|
||||
|
||||
- VISA
|
||||
- MasterCard
|
||||
- Discover
|
||||
- American Express
|
||||
- Japan Commercial Bureau (JCB)
|
||||
|
||||
## Organization info
|
||||
|
||||
There are a couple of things we need to know when you pay for apps. You can add this info to the **Account information** or **Payments & billing** page before you buy apps. If you haven't provided it, we'll ask when you make a purchase. Either way works. Here's the info you'll need to provide:
|
||||
|
||||
- Legal business address
|
||||
- Payment option (credit card)
|
||||
|
||||
## Allow users to shop
|
||||
|
||||
**Allow users to shop** controls the shopping experience in Microsoft Store for Education. When this setting is on, **Purchasers** and **Basic Purchasers** can purchase products and services from Microsoft Store for Education. If your school chooses to closely control how purchases are made, admins can turn off **Allow users to shop**. When the setting is off:
|
||||
|
||||
- The shopping experience is not available
|
||||
- **Purchasers** and **Basic Purchasers** can't purchase products and services from Microsoft Store for Education
|
||||
- Admins can't assign shopping roles to users
|
||||
- Products and services previously purchased by **Basic Purchasers** can be managed by admins.
|
||||
|
||||
**To manage Allow users to shop setting**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com)
|
||||
2. Select **Manage**, and then select **Settings**.
|
||||
3. On **Shop**, , under **Shopping behavior**, turn on or turn off **Allow users to shop**.
|
||||
|
||||

|
||||
|
||||
## Allow app requests
|
||||
|
||||
People in your org can request license for apps that they need, or that others need. When **Allow app requests** is turned on, app requests are sent to org admins. Admins for your tenant will receive an email with the request, and can decide about making the purchase.
|
||||
|
||||
**To manage Allow app requests**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com)
|
||||
2. Select **Manage**, and then select **Settings**.
|
||||
3. On **Shop**, under **Shopping behavior** turn on or turn off **Allow app requests**.
|
||||
|
||||
## Acquire apps
|
||||
|
||||
**To acquire an app**
|
||||
|
||||
1. Sign in to https://businessstore.microsoft.com
|
||||
2. Select **Shop for my group**, or use Search to find an app.
|
||||
3. Select the app you want to purchase.
|
||||
4. On the product description page, choose your license type - either online or offline.
|
||||
5. Free apps will be added to **Products & services**. For apps with a price, you can set the quantity you want to buy. Type the quantity and select **Next**.
|
||||
6. If you don't have a payment method saved in **Billing & payments**, we will prompt you for one.
|
||||
7. Add your credit card or debit card info, and select **Next**. Your card info is saved as a payment option on **Billing & payments - Payment methods**.
|
||||
|
||||
You'll also need to have your business address saved on **My organization - Profile**. The address is used to generate tax rates. For more information on taxes for apps, see [organization tax information](./update-microsoft-store-for-business-account-settings.md#organization-tax-information).
|
||||
|
||||
Microsoft Store adds the app to your inventory. From **Products & services**, you can:
|
||||
|
||||
- Distribute the app: add to private store, or assign licenses
|
||||
- View app licenses: review current licenses, reclaim and reassign licenses
|
||||
- View app details: review the app details page and purchase more licenses
|
||||
|
||||
For info on distributing apps, see [Distribute apps to your employees from the Microsoft Store for Business](distribute-apps-to-your-employees-microsoft-store-for-business.md).
|
||||
|
||||
For info on offline-licensed apps, see [Distribute offline apps](distribute-offline-apps.md).
|
@ -1,148 +0,0 @@
|
||||
---
|
||||
title: Manage Windows device deployment with Windows Autopilot Deployment
|
||||
description: Add an Autopilot profile to devices. Autopilot profiles control what is included in Windows set up experience for your employees.
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.date: 05/24/2023
|
||||
ms.reviewer:
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
---
|
||||
|
||||
# Manage Windows device deployment with Windows Autopilot Deployment
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Windows Autopilot simplifies device set up for IT Admins. For an overview of benefits, scenarios, and prerequisites, see [Overview of Windows Autopilot](/windows/deployment/windows-autopilot/windows-10-autopilot).
|
||||
|
||||
Watch this video to learn more about Windows Autopilot in Microsoft Store for Business. </br>
|
||||
|
||||
> [!video https://www.microsoft.com/videoplayer/embed/3b30f2c2-a3e2-4778-aa92-f65dbc3ecf54?autoplay=false]
|
||||
|
||||
## What is Windows Autopilot?
|
||||
In Microsoft Store for Business, you can manage devices for your organization and apply an *Autopilot deployment profile* to your devices. When people in your organization run the out-of-box experience on the device, the profile configures Windows based on the Autopilot deployment profile you applied to the device.
|
||||
|
||||
You can create and apply Autopilot deployment profiles to these devices. The overall process looks like this.
|
||||
|
||||

|
||||
|
||||
Figure 1 - Windows Autopilot Deployment Program process
|
||||
|
||||
Autopilot deployment profiles have two main parts: default settings that can't be changed, and optional settings that you can include.
|
||||
|
||||
### Autopilot deployment profiles - default settings
|
||||
These settings are configured with all Autopilot deployment profiles:
|
||||
- Skip Cortana, OneDrive, and OEM registration setup pages
|
||||
- Automatically setup for work or school
|
||||
- Sign in experience with company or school brand
|
||||
|
||||
### Autopilot deployment profiles - optional settings
|
||||
These settings are off by default. You can turn them on for your Autopilot deployment profiles:
|
||||
- Skip privacy settings
|
||||
|
||||
### Support for Autopilot profile settings
|
||||
Autopilot profile settings are supported beginning with the version of Windows they were introduced in. This table summarizes the settings and what they are supported on.
|
||||
|
||||
| Setting | Supported on |
|
||||
| ------- | ------------- |
|
||||
| Deployment default features| Windows 10, version 1703 or later |
|
||||
| Skip privacy settings | Windows 10, version 1703 or later |
|
||||
| Disable local admin account creation on the device | Windows 10, version 1703 or later |
|
||||
| Skip End User License Agreement (EULA) | Windows 10, version 1709 or later. </br> [Learn about Windows Autopilot EULA dismissal](/windows/deployment/Windows-Autopilot-EULA-note) |
|
||||
|
||||
|
||||
## Windows Autopilot deployment profiles in Microsoft Store for Business and Education
|
||||
You can manage new devices in Microsoft Store for Business or Microsoft Store for Education. Devices need to meet these requirements:
|
||||
- Windows 10, version 1703 or later
|
||||
- New devices that have not been through Windows out-of-box experience.
|
||||
|
||||
## Add devices and apply Autopilot deployment profile
|
||||
To manage devices through Microsoft Store for Business and Education, you'll need a .csv file that contains specific information about the devices. You should be able to get this from your Microsoft account contact, or the store where you purchased the devices. Upload the .csv file to Microsoft Store to add the devices.
|
||||
|
||||
### Device information file format
|
||||
Columns in the device information file need to use this naming and be in this order:
|
||||
- Column A: Device Serial Number
|
||||
- Column B: Windows Product ID (optional, typically blank)
|
||||
- Column C: Hardware Hash
|
||||
|
||||
Here's a sample device information file:
|
||||
|
||||

|
||||
|
||||
When you add devices, you need to add them to an *Autopilot deployment group*. Use these groups to apply Autopilot deployment profiles to a group of devices. The first time you add devices to a group, you'll need to create an Autopilot deployment group.
|
||||
|
||||
> [!NOTE]
|
||||
> You can only add devices to a group when you add devices to **Microsoft Store for Business and Education**. If you decide to reorganize devices into different groups, you'll need to delete them from **Devices** in **Microsoft Store**, and add them again.
|
||||
|
||||
**Add and group devices**
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**, and then click **Devices**.
|
||||
3. Click **Add devices**, navigate to the *.csv file and select it.
|
||||
4. Type a name for a new Autopilot deployment group, or choose one from the list, and then click **Add**. </br>
|
||||
If you don't add devices to a group, you can select the individual devices to apply a profile to. <br>
|
||||
</br>
|
||||
|
||||
5. Click the devices or Autopilot deployment group that you want to manage. You need to select devices before you can apply an Autopilot deployment profile. You can switch between seeing groups or devices by clicking **View groups** or **View devices**.
|
||||
|
||||
**Apply Autopilot deployment profile**
|
||||
1. When you have devices selected, click **Autopilot deployment**.
|
||||
2. Choose the Autopilot deployment profile to apply to the selected devices.
|
||||
|
||||
> [!NOTE]
|
||||
> The first time you use Autopilot deployment profiles, you'll need to create one. See [Create Autopilot profile](#create-autopilot-profile).
|
||||
|
||||
3. Microsoft Store for Business applies the profile to your selected devices, and shows the profile name on **Devices**.
|
||||
|
||||
## Manage Autopilot deployment profiles
|
||||
You can manage the Autopilot deployment profiles created in Microsoft Store. You can create a new profile, edit, or delete a profile.
|
||||
|
||||
### Create Autopilot profile
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**, and then click **Devices**.
|
||||
3. Click **Autopilot deployment**, and then click **Create new profile**.
|
||||
4. Name the profile, choose the settings to include, and then click **Create**.</br>
|
||||
The new profile is added to the **Autopilot deployment** list.
|
||||
|
||||
### Edit or delete Autopilot profile
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**, and then click **Devices**.
|
||||
3. Click **Autopilot deployment**, click **Edit your profiles**, and then choose the profile to edit.
|
||||
TBD: art
|
||||
4. Change settings for the profile, and then click **Save**.</br>
|
||||
-or-</br>
|
||||
Click **Delete profile** to delete the profile.
|
||||
|
||||
## Apply a different Autopilot deployment profile to devices
|
||||
After you've applied an Autopilot deployment profile to a device, if you decide to apply a different profile, you can remove the profile and apply a new profile.
|
||||
|
||||
> [!NOTE]
|
||||
> The new profile will only be applied if the device has not been started, and gone through the out-of-box experience. Settings from a different profile can't be applied when another profile has been applied. Windows would need to be reinstalled on the device for the second profile to be applied to the device.
|
||||
|
||||
## Autopilot device information file error messages
|
||||
Here's info on some of the errors you might see while working with Autopilot deployment profiles in **Microsoft Store for Business and Education**.
|
||||
|
||||
| Message Id | Message explanation |
|
||||
| ---------- | ------------------- |
|
||||
| wadp001 | Check your file, or ask your device partner for a complete .csv file. This file is missing Serial Number and Product Id info. |
|
||||
| wadp002 | Check your file, or ask your device partner for updated hardware hash info in the .csv file. Hardware hash info is invalid in the current .csv file. |
|
||||
| wadp003 | Looks like you need more than one .csv file for your devices. The maximum allowed is 1,000 items. You're over the limit! Divide this device data into multiple .csv files. |
|
||||
| wadp004 | Try that again. Something happened on our end. Waiting a bit might help. |
|
||||
| wadp005 | Check your .csv file with your device provider. One of the devices on your list has been claimed by another organization. |
|
||||
| wadp006 | Try that again. Something happened on our end. Waiting a bit might help. |
|
||||
| wadp007 | Check the info for this device in your .csv file. The device is already registered in your organization. |
|
||||
| wadp008 | The device does not meet Autopilot Deployment requirements. |
|
||||
| wadp009 | Check with your device provider for an update .csv file. The current file doesn't work |
|
||||
| wadp010 | Try that again. Something happened on our end. Waiting a bit might help. |
|
@ -1,206 +0,0 @@
|
||||
---
|
||||
title: App inventory management for Microsoft Store for Business and Microsoft Store for Education (Windows 10)
|
||||
description: You can manage all apps that you've acquired on your Apps & Software page.
|
||||
ms.assetid: 44211937-801B-4B85-8810-9CA055CDB1B2
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# App inventory management for Microsoft Store for Business and Education
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
You can manage all apps that you've acquired on your **Apps & software** page. This page shows all of the content you've acquired, including apps that from Microsoft Store, and line-of-business (LOB) apps that you've accepted into your inventory. After LOB apps are submitted to your organization, you'll see a notification on your **Apps & software** page. On the **New LOB apps** tab, you can accept, or reject the LOB apps. For more information on LOB apps, see [Working with line-of-business apps](working-with-line-of-business-apps.md). The inventory page includes apps acquired by all people in your organization with the Store for Business Admin role.
|
||||
|
||||
All of these apps are treated the same once they are in your inventory and you can perform app lifecycle tasks for them: distribute apps, add apps to private store, review license details, and reclaim app licenses.
|
||||
|
||||
<!---  -->
|
||||
|
||||
Microsoft Store for Business and Education shows this info for each app in your inventory:
|
||||
- Name
|
||||
- Last modified
|
||||
- Private store status
|
||||
- Available licenses
|
||||
- Supported devices
|
||||
- Access to actions for the app
|
||||
|
||||
The last modified date tracks changes about the app as an item in your inventory. The last modified date changes when one of the following happens:
|
||||
- First purchase (the date you acquire the app from Microsoft Store for Business)
|
||||
- Purchase additional licenses
|
||||
- Assign license
|
||||
- Reclaim license
|
||||
- Refund order (applies to purchased apps, not free apps)
|
||||
|
||||
The last modified date does not correspond to when an app was last updated in Microsoft Store. It tracks activity for that app, as an item in your inventory.
|
||||
|
||||
## Find apps in your inventory
|
||||
|
||||
There are a couple of ways to find specific apps, or groups of apps in your inventory.
|
||||
|
||||
**Search** - Use the Search box to search for an app.<br>
|
||||
**Refine results** - Use **Refine results** to scope your list of apps by one or more of these app attributes:
|
||||
- **License type** - Online or offline licenses. For more info, see [Apps in Microsoft Store for Business](apps-in-microsoft-store-for-business.md#licensing-model).
|
||||
- **Supported devices** - Lists the devices that apps in your inventory were originally written to support. This list is cumulative for all apps in your inventory.
|
||||
- **Source** - **Store**, for apps acquired from Store for Business, or LOB, for line-of-business apps.
|
||||
- **Product type** - Product categories, such as app, or game.
|
||||
- **Private store** - Whether or not the app is in the private store, or status if the app is being added or removed from private store.
|
||||
|
||||
## Manage apps in your inventory
|
||||
Each app in the Store for Business has an online, or an offline license. For more information on Store for Business licensing model, see [Apps in the Microsoft Store for Business](apps-in-microsoft-store-for-business.md#licensing-model). There are different actions you can take depending on the app license type. They're summarized in this table.
|
||||
|
||||
| Action | Online-licensed app | Offline-licensed app |
|
||||
| ------ | ------------------- | -------------------- |
|
||||
| Assign to employees | ✔️ | |
|
||||
| Add to private store | ✔️ | |
|
||||
| Remove from private store | ✔️ | |
|
||||
| View license details | ✔️ | |
|
||||
| View product details | ✔️ | ✔️ |
|
||||
| Download for offline use | | ✔️ |
|
||||
|
||||
The actions in the table are how you distribute apps, and manage app licenses. We'll cover those in the next sections. Working with offline-licensed apps has different steps. For more information on distributing offline-licensed apps, see [Distribute offline apps](distribute-offline-apps.md).
|
||||
|
||||
## Assign apps
|
||||
For online-licensed apps, you can assign apps directly to people in your organization.
|
||||
|
||||
**To assign an app to an employee**
|
||||
|
||||
1. Sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://businessstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Inventory**.
|
||||
3. Find an app, click the ellipses, and then choose **Assign to people**.
|
||||
4. Type the email address for the employee that you're assigning the app to, and click **Confirm**.
|
||||
|
||||
Employees will receive an email with a link that will install the app on their device. Click the link to start the Microsoft Store app, and then click **Install**. Also, in the Microsoft Store app, they can find the app under **My Library**.
|
||||
|
||||
There are other options for distributing apps:
|
||||
- **Use a management tool** - If you use a management tool that supports Microsoft Store, you can distribute apps with your management tool. Once it is configured to work with Store for Business, your management tool will have access to all apps in your inventory. For more information, see [Distribute apps with a management tool](distribute-apps-with-management-tool.md).
|
||||
- **Distribute from private store** - You can also add apps to your private store, and let people get them on their own. For more information, see [Distribute apps from private store](#distribute-apps-from-private-store)
|
||||
|
||||
## Distribute apps from private store
|
||||
Once an app is in your private store, people in your org can install the app on their devices. For more information, see [Distribute apps using your private store](distribute-apps-from-your-private-store.md).
|
||||
|
||||
### Add apps to your private store
|
||||
**To make an app in Apps & software available in your private store**
|
||||
|
||||
1. Sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://businessstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Apps & software**.
|
||||
3. Use **Refine results** to search for online-licensed apps under **License type**.
|
||||
4. From the list of online-licensed apps, click the ellipses for the app you want, and then choose **Add to private store**.
|
||||
|
||||
The value under **Private store** for the app will change to pending. It will take approximately thirty-six hours before the app is available in the private store.
|
||||
Employees can claim apps that admins added to the private store by doing the following.
|
||||
|
||||
### Get and remove private store apps
|
||||
**To claim an app from the private store**
|
||||
|
||||
1. Sign in to your computer with your Microsoft Entra credentials, and start the Microsoft Store app.
|
||||
2. Click the private store tab.
|
||||
3. Click the app you want to install, and then click **Install**.
|
||||
|
||||
Another way to distribute apps is by assigning them to people in your organization.
|
||||
|
||||
If you decide that you don't want an app available for employees to install on their own, you can remove it from your private store.
|
||||
|
||||
**To remove an app from the private store**
|
||||
|
||||
1. Sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://businessstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Products & services**.
|
||||
3. Find an app, click the ellipses, choose **Remove from private store**, and then click **Remove**.
|
||||
4. Choose the private store collection, and then under **In collection**, switch to **Off**.
|
||||
|
||||
The app will still be in your inventory, but your employees will not have access to the app from your private store.
|
||||
|
||||
### Private store availability
|
||||
On the details page for each app, you can directly assign an app to a user, or for apps in your private store, you can set **Private store availability**.
|
||||
|
||||
**Private store availability** allows you to choose which groups of people can see an app in the private store:
|
||||
- No one - The app isn't in your private store
|
||||
- Everyone - The app is available to anyone in your organization
|
||||
- Specific groups - The app is available to all users in assigned security groups
|
||||
|
||||
**To assign security groups to an app**
|
||||
1. Sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://businessstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Products & services**.
|
||||
3. Find an app, choose the ellipses, and then choose **View license details**.
|
||||
4. Click **Private store availability**, select **Specific groups**, and then click **Assign groups**.
|
||||
5. Enter a name or email address for the security group you want to use, and then click **Add groups**.
|
||||
|
||||
## Manage app licenses
|
||||
|
||||
For each app in your inventory, you can view and manage license details. This give you another way to assign apps to people in your organization. It also allows you to reclaim app licenses after they've been assigned to people, or claimed by people in your organization.
|
||||
|
||||
**To view license details**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://go.microsoft.com/fwlink/p/?LinkId=691845) or [Microsoft Store for Education](https://businessstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Products & services**.
|
||||
3. Click an app you want to manage.
|
||||
4. On the app details page, you'll see the names of people in your organization who have installed the app and are using one of the licenses. From here, you can:
|
||||
|
||||
- Assign the app to other people in your organization.
|
||||
- Reclaim app licenses.
|
||||
- View app details.
|
||||
- Add the app to your private store, if it is not in the private store.
|
||||
|
||||
You can assign the app to more people in your organization, or reclaim licenses.
|
||||
|
||||
**To assign an app to more people**
|
||||
|
||||
- On the app page, click **Assign users**, type the email address for the person that you're assigning the app to, and click **Assign**.
|
||||
|
||||
Microsoft Store updates the list of assigned licenses.
|
||||
|
||||
**To reclaim licenses**
|
||||
|
||||
- On the app page, choose the person you want to reclaim the license from, click the ellipses, and then click **Reclaim licenses**.
|
||||
|
||||
Microsoft Store updates the list of assigned licenses.
|
||||
|
||||
## Purchase additional licenses
|
||||
You can purchase additional licenses for apps in your Inventory.
|
||||
|
||||
**To purchase additional app licenses**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://go.microsoft.com/fwlink/p/?LinkId=691845) or [Microsoft Store for Education](https://businessstore.microsoft.com)
|
||||
2. Click **Manage**, and then choose **Apps & software**.
|
||||
3. From **Apps & software**, click an app.
|
||||
4. On the app page, click **Buy more** for additional licenses, or click **Assign users** to manage your current licenses.
|
||||
|
||||
You'll have a summary of current license availability.
|
||||
|
||||
## <a href="" id="download-offline-licensed-apps"></a>Download offline-licensed app
|
||||
Offline licensing is a new feature in Windows 10 and allows apps to be deployed to devices that are not connected to the Internet. This means organizations can deploy apps when users or devices do not have connectivity to the Store.
|
||||
|
||||
You can download offline-licensed apps from your inventory. You'll need to download these items:
|
||||
- App metadata
|
||||
- App package
|
||||
- App license
|
||||
- App framework
|
||||
|
||||
For more information about online and offline licenses, see [Apps in the Microsoft Store for Business](apps-in-microsoft-store-for-business.md#licensing-model).
|
||||
|
||||
For more information about downloading offline-licensed apps, see [Download offline apps](distribute-offline-apps.md).
|
||||
|
||||
## Manage products programmatically
|
||||
|
||||
Microsoft Store for Business and Education provides a set of Admin management APIs. If you organization develops scripts or tools, these APIs allow Admins to programmatically manage items in **Apps & software**. For more information, see [REST API reference for Microsoft Store for Business](/windows/client-management/mdm/rest-api-reference-windows-store-for-business).
|
||||
|
||||
You can download a preview PowerShell script that uses REST APIs. The script is available from PowerShell Gallery. You can use to the script to:
|
||||
- View items in inventory (**Apps & software**)
|
||||
- Manage licenses - assigning and removing
|
||||
- Perform bulk options using .csv files - this automates license management for customers with large numbers of licenses
|
||||
|
||||
> [!NOTE]
|
||||
> The Microsoft Store for Business and Education Admin role is required to manage products and to use the MSStore module. This requires advanced knowledge of PowerShell.
|
@ -1,81 +0,0 @@
|
||||
---
|
||||
title: Apps in Microsoft Store for Business and Education (Windows 10)
|
||||
description: Microsoft Store for Business has thousands of apps from many different categories.
|
||||
ms.assetid: CC5641DA-3CEA-4950-AD81-1AF1AE876926
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Apps in Microsoft Store for Business and Education
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Microsoft Store for Business and Education has thousands of apps from many different categories.
|
||||
|
||||
These app types are supported in Microsoft Store for Business and Education:
|
||||
|
||||
- Universal Windows apps for Windows 10
|
||||
- Universal Windows apps, by device: phone, Surface Hub, IoT, HoloLens
|
||||
|
||||
Apps in your inventory will have at least one of these supported platforms listed for the app:
|
||||
|
||||
- Windows 10 desktops
|
||||
- Windows 10 phones
|
||||
- Windows 10 xbox
|
||||
- Windows 10 IOT devices
|
||||
- Windows 10 servers
|
||||
- Windows 10 \*all devices\*
|
||||
- Windows 10 Surface Hub
|
||||
- Windows 10 HoloLens
|
||||
|
||||
Apps that you acquire from Microsoft Store only work on Windows 10-based devices. Even though an app might list Windows 8 as its supported platform, that tells you what platform the app was originally written for. Apps developed for Windows 8, or Windows Phone 8 will work on Windows 10.
|
||||
|
||||
Some apps are free, and some apps charge a price. Currently, you can pay for apps with a credit card. We'll be adding more payment options over time.
|
||||
|
||||
Some apps which are available to consumers in Microsoft Store might not be available to organizations in Microsoft Store for Business and Education. App developers can opt-out their apps, and they also need to meet eligibility requirements for Microsoft Store for Business and Education. For more information, see [Organizational licensing options](/windows/uwp/publish/organizational-licensing).
|
||||
|
||||
Line-of-business (LOB) apps are also supported using Microsoft Store. Admins can invite IT devs and ISVs to be LOB publishers. Apps developed by your LOB publishers that are submitted to Microsoft Store are only available to your organization. Once an administrator accepts an app submitted by one of their LOB publishers, the app can be distributed just like any other app. For more information, see [Working with Line-of-Business apps](working-with-line-of-business-apps.md).
|
||||
|
||||
## In-app purchases
|
||||
|
||||
Some apps offer you the option to make in-app purchases. In-app purchases are not currently supported for apps that are acquired through Microsoft Store and distributed to employees.
|
||||
|
||||
If an employee makes an in-app purchase, they'll make it with their personal Microsoft account and pay for it with a personal payment method. The employee will own the item purchased, and it cannot be transferred to your organization's inventory.
|
||||
|
||||
## <a href="" id="licensing-model"></a>Licensing model: online and offline licenses
|
||||
|
||||
Microsoft Store supports two options to license apps: online and offline.
|
||||
|
||||
### Online licensing
|
||||
Online licensing is the default licensing model and is similar to the model used by Microsoft Store. Online licensed apps require customers and devices to connect to Microsoft Store service to acquire an app and its license. License management is enforced based on the user's Microsoft Entra identity and maintained by Microsoft Store as well as the management tool. By default app updates are handled by Windows Update.
|
||||
|
||||
Distribution options for online-licensed apps include the ability to:
|
||||
|
||||
- Assign an app to employees.
|
||||
- Add an app to your private store, allowing employees to download the app.
|
||||
- Distribute through a management tool.
|
||||
|
||||
### Offline licensing
|
||||
Offline licensing is a new licensing option for Windows 10. With offline licenses, organizations can cache apps and their licenses to deploy within their network. ISVs or devs can opt-in their apps for offline licensing when they submit them to the developer center. Only apps that are opted in to offline licensing will show that they are available for offline licensing in Microsoft Store. This model means organizations can deploy apps when users or devices do not have connectivity to Microsoft Store. Admins control whether or not offline apps are available in Microsoft Store with an offline app visibility setting.
|
||||
|
||||
You have the following distribution options for offline-licensed apps:
|
||||
|
||||
- Include the app in a provisioning package, and then use it as part of imaging a device.
|
||||
- Distribute the app through a management tool.
|
||||
|
||||
For more information, see [Distribute apps to your employees from Microsoft Store for Business](distribute-apps-to-your-employees-microsoft-store-for-business.md).
|
@ -1,48 +0,0 @@
|
||||
---
|
||||
title: Assign apps to employees (Windows 10)
|
||||
description: Administrators can assign online-licensed apps to employees and students in their organization.
|
||||
ms.assetid: A0DF4EC2-BE33-41E1-8832-DBB0EBECA31A
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/27/2023
|
||||
---
|
||||
|
||||
# Assign apps to employees
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Admins, Purchasers, and Basic Purchasers can assign online-licensed apps to employees or students in their organization.
|
||||
|
||||
**To assign an app to an employee**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Apps & software**.
|
||||
3. Find an app, click the ellipses under **Action**, and then choose **Assign to people**.
|
||||
-OR-
|
||||
Click the app, and then click **Assign User**.
|
||||
4. Type the email address for the person you're assigning the app to, and click **Assign**.
|
||||
|
||||
Employees will receive an email with a link that will install the app on their device. Click the link to start Microsoft Store app, and then click **Install**. Also, in Microsoft Store app, they can find the app under **My Library**.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,31 +0,0 @@
|
||||
---
|
||||
title: Billing and payments overview
|
||||
description: Find topics about billing and payment support in Microsoft Store for Business.
|
||||
keywords: billing, payment methods, invoices, credit card, debit card
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Billing and payments
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Access invoices and managed your payment methods.
|
||||
|
||||
## In this section
|
||||
|
||||
| Topic | Description |
|
||||
| ----- | ----------- |
|
||||
| [Understand your invoice](billing-understand-your-invoice-msfb.md) | Information about invoices provided by Microsoft Store for Business. |
|
||||
| [Understand billing profiles](billing-profile.md) | Information about billing profiles and how they relate to invoices. |
|
||||
| [Payment methods](payment-methods.md) | Information about managing payment methods. |
|
@ -1,51 +0,0 @@
|
||||
---
|
||||
title: Understand billing profiles
|
||||
description: Learn how billing profiles support invoices
|
||||
keywords: billing profile, invoices, charges, managed charges
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/23/2023
|
||||
ms.reviewer:
|
||||
---
|
||||
|
||||
# Understand billing profiles
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
For commercial customers purchasing software or hardware products from Microsoft using a Microsoft customer agreement, billing profiles let you customize what products are included on your invoice, and how you pay your invoices.
|
||||
|
||||
Billing profiles include:
|
||||
|
||||
- **Payment methods** – Credit cards or check/wire transfer
|
||||
- **Contact info** - Billing address and a contact name
|
||||
- **Permissions** – Permissions that allow you to change the billing profile, pay bills, or use the payment method on the billing profile to make purchases
|
||||
|
||||
Use billing profiles to control your purchases and customize your invoice. A monthly invoice is generated for the products bought using the billing profile. You can customize the invoice such as update the purchase order number and email invoice preference.
|
||||
|
||||
A billing profile is automatically created for your billing account during your first purchase. You can create new billing profiles to set up additional invoices when you make a purchase. For example, you use different billing profiles when you make purchases for each department in your organization. On your next billing date, you'll receive an invoice for each billing profile.
|
||||
|
||||
Roles on the billing profiles have permissions to control purchases, and view and manage invoices. Assign these roles to users who track, organize, and pay invoices like members of the procurement team in your organization.
|
||||
|
||||
## View billing profile
|
||||
**To view billing profiles**
|
||||
1. Sign in to [Microsoft Store for Business]( https://businessstore.microsoft.com/), or M365 admin center.
|
||||
2. Select **Manage**, and then select **Billing and payments**.
|
||||
3. Select **Billing profiles**, and then select a billing profile from the list to see details.
|
||||
- On **Overview**, you can edit billing profile details, and turn on or off sending an invoice by email.
|
||||
- On **Permissions**, you can assign roles to users to pay invoices.
|
||||
- On **Azure credit balance**, Azure customers can see transaction balance history for the azure credits used by that billing profile.
|
||||
- On **Azure credits**, Azure customers can see a list of Azure credits associated with that billing profile, and their expiration dates.
|
||||
|
||||
## Need help? Contact us.
|
||||
If you have questions or need help with your Azure charges, [create a support request with Azure support](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest).
|
||||
|
||||
If you have questions or need help with your invoice in Microsoft Store for Business, [create a support request with Store for Business support](https://businessstore.microsoft.com).
|
@ -1,121 +0,0 @@
|
||||
---
|
||||
title: Understand your Microsoft Customer Agreement invoice
|
||||
description: Learn how to read and understand your MCA bill
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
ms.reviewer:
|
||||
---
|
||||
|
||||
# Understand your Microsoft Customer Agreement invoice
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
The invoice provides a summary of your charges and provides instructions for payment. It's available for
|
||||
download in the Portable Document Format (.pdf) for commercial customers from Microsoft Store for Business [Microsoft Store for Business - Invoice](https://businessstore.microsoft.com/manage/payments-billing/invoices) or can be sent via email. This article applies to invoices generated for a Microsoft Customer Agreement billing account. Check if you have a [Microsoft Customer Agreement](https://businessstore.microsoft.com/manage/organization/agreements).
|
||||
|
||||
## General invoice information
|
||||
|
||||
Invoices are your bill from Microsoft. A few things to note:
|
||||
|
||||
- **Invoice schedule** - You're invoiced on a monthly basis. You can find out which day of the month you receive invoices by checking invoice date under billing profile overview in [Microsoft Store for Business](https://businessstore.microsoft.com/manage/payments-billing/billing-profiles). Charges that occur between the end of the billing period and the invoice date are included in the next month's invoice, since they are in the next billing period. The billing period start and end dates for each invoice are listed in the invoice PDF above **Billing Summary**.
|
||||
- **Billing profile** - Billing profiles are created during your purchase. Invoices are created for each billing profile. Billing profiles let you customize what products are purchased, how you pay for them, and who can make purchases. For more information, see [Understand billing profiles](billing-profile.md)
|
||||
- **Items included** - Your invoice includes total charges for all first and third-party software and hardware products purchased under a Microsoft Customer Agreement. That includes items purchased from Microsoft Store for Business and Azure Marketplace.
|
||||
- **Charges** - Your invoice provides information about products purchased and their related charges and taxes. Purchases are aggregated to provide a concise view of your bill.
|
||||
|
||||
## Online invoice
|
||||
For Store for Business customers, invoices are also available online. A few things to note:
|
||||
- **Link to online invoice** - Available from your PDF invoice, and from an email notification.
|
||||
- **Invoice details** - Expandable view of the charges on your invoice, so you can see more details for each item.
|
||||
- **Pricing details** - Additional information including discounting and pricing details.
|
||||
- **Pay online** - Option to make a payment online from the invoice.
|
||||
- **Azure cost management** - For Azure customers, online invoices include a link to Azure cost management.
|
||||
|
||||
**To view your online invoice**
|
||||
1. Sign in to [Microsoft Store for Business]( https://businessstore.microsoft.com/).
|
||||
2. Select **Manage**, and then select **Billing and payments**.
|
||||
3. Select an invoice from the list to view your online invoice.
|
||||
|
||||
## Detailed terms and descriptions of your invoice
|
||||
The following sections list the important terms that you see on your
|
||||
invoice and descriptions for each term.
|
||||
|
||||
### Understand the invoice summary
|
||||
|
||||
The **Invoice Summary** is on the top of the first page and shows information about your billing profile and how you pay.
|
||||
|
||||

|
||||
|
||||
|
||||
| Term | Description |
|
||||
| --- | --- |
|
||||
| Sold to |Address of your legal entity, found in billing account properties|
|
||||
| Bill to |Billing address of the billing profile receiving the invoice, found in billing profile properties|
|
||||
| Billing Profile |The name of the billing profile receiving the invoice |
|
||||
| P.O. number |An optional purchase order number, assigned by you for tracking |
|
||||
| Invoice number |A unique, Microsoft-generated invoice number used for tracking purposes |
|
||||
| Invoice date |Date that the invoice is generated, typically five to 12 days after end of the Billing cycle. You can check your invoice date in billing profile properties.|
|
||||
| Payment terms |How you pay for your Microsoft bill. *Net 30 days* means you pay by following instructions on your invoice, within 30 days of the invoice date. |
|
||||
|
||||
### Understand the billing summary
|
||||
The **Billing Summary** shows the charges against the billing profile since the previous billing period, any credits that were applied, tax, and the total amount due.
|
||||
|
||||
|
||||

|
||||
|
||||
| Term | Description |
|
||||
| --- | --- |
|
||||
| Charges|Total number of Microsoft charges for this billing profile since the last billing period |
|
||||
| Credits |Credits you received from returns |
|
||||
| Azure credits applied |Your Azure credits that are automatically applied to Azure charges each billing period |
|
||||
| Subtotal |The pre-tax amount due |
|
||||
| Tax |The type and amount of tax that you pay, depending on the country/region of your billing profile. If you don't have to pay tax, then you won't see tax on your invoice. |
|
||||
| Estimated total savings |The estimated total amount you saved from effective discounts. If applicable, effective discount rates are listed beneath the purchase line items in Details by Invoice Section. |
|
||||
|
||||
### Understand your charges
|
||||
You'll see the charges, tax, and the total amount due. Azure customers will also see the amount of Azure credits applied.
|
||||
|
||||
`Total = Charges - Azure Credit + Tax`
|
||||
|
||||
The details show the cost broken down by product order name. For Azure customers, this might be organized by invoice section. For more information about how invoice sections are used with Azure products, see [Understand invoice sections](/azure/billing/billing-mca-overview#understand-invoice-sections).
|
||||
Within each product order, cost is broken down by service family.
|
||||
|
||||
The total amount due for each service family is calculated by subtracting Azure credits from credits/charges and adding tax:
|
||||
|
||||
`Total = Charges/Credits - Azure Credit + Tax`
|
||||
|
||||

|
||||
|
||||
| Term |Description |
|
||||
| --- | --- |
|
||||
| Unit price | The effective unit price of the service (in pricing currency) that is used to the rate the usage. This is unique for a product, service family, meter, and offer. |
|
||||
| Qty | Quantity purchased or consumed during the billing period |
|
||||
| Charges/Credits | Net amount of charges after credits/refunds are applied |
|
||||
| Azure Credit | The amount of Azure credits applied to the Charges/Credits|
|
||||
| Tax rate | Tax rate(s) depending on country/region |
|
||||
| Tax amount | Amount of tax applied to purchase based on tax rate |
|
||||
| Total | The total amount due for the purchase |
|
||||
|
||||
### How to pay
|
||||
At the bottom of the invoice, there are instructions for paying your bill. You can pay by wire or online. If you pay online, you can use a credit or debit card, or Azure credits, if applicable.
|
||||
|
||||
### Publisher information
|
||||
If you have third-party services in your bill, the name and address of each publisher is listed at the bottom of your invoice.
|
||||
|
||||
## Next steps
|
||||
If there are Azure charges on your invoice that you would like more details on, see [Understand the Azure charges on your Microsoft Customer Agreement invoice](/azure/cost-management-billing/understand/mca-understand-your-invoice).
|
||||
|
||||
## Need help? Contact us.
|
||||
|
||||
If you have questions or need help with your Azure charges, [create a support request with Azure support](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest).
|
||||
|
||||
If you have questions or need help with your invoice in Microsoft Store for Business, [create a support request with Store for Business support](https://businessstore.microsoft.com/manage/support/summary).
|
@ -1,52 +0,0 @@
|
||||
---
|
||||
title: Configure an MDM provider (Windows 10)
|
||||
description: For companies or organizations using mobile device management (MDM) tools, those tools can synchronize with Microsoft Store for Business inventory to manage apps with offline licenses.
|
||||
ms.assetid: B3A45C8C-A96C-4254-9659-A9B364784673
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Configure an MDM provider
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
For companies or organizations using mobile device management (MDM) tools, those tools can synchronize with Microsoft Store for Business inventory to manage apps with offline licenses. Store for Business management tool services work with your third-party management tool to manage content.
|
||||
|
||||
Your management tool needs to be installed and configured with Microsoft Entra ID, in the same directory that you are using for Store for Business. Once that's done, you can configure it to work with Store for Business
|
||||
|
||||
**To configure a management tool in Microsoft Entra ID**
|
||||
|
||||
1. Sign in to the Azure Portal as an Administrator.
|
||||
2. Click **Microsoft Entra ID**, and then choose your directory.
|
||||
4. Click **Mobility (MDM and MAM)**.
|
||||
3. Click **+Add Applications**, find the application, and add it to your directory.
|
||||
|
||||
After your management tool is added to your Microsoft Entra directory, you can configure it to work with Microsoft Store. You can configure multiple management tools - just repeat the following procedure.
|
||||
|
||||
**To configure a management tool in Microsoft Store for Business**
|
||||
|
||||
1. Sign in to the [Store for Business](https://businessstore.microsoft.com) or [Store for Education](https://educationstore.microsoft.com)
|
||||
2. Click **Manage**, click **Settings**.
|
||||
3. Under **Distribute**, click **Management tools**.
|
||||
3. From the list of MDM tools, select the one you want to synchronize with Microsoft Store, and then click **Activate.**
|
||||
|
||||
Your MDM tool is ready to use with Microsoft Store. To learn how to configure synchronization and deploy apps, see these topics:
|
||||
- [Manage apps you purchased from Microsoft Store for Business with Microsoft Intune](/mem/intune/apps/windows-store-for-business)
|
||||
- [Manage apps from Microsoft Store for Business with Microsoft Configuration Manager](/configmgr/apps/deploy-use/manage-apps-from-the-windows-store-for-business)
|
||||
|
||||
For third-party MDM providers or management servers, check your product documentation.
|
@ -1,72 +0,0 @@
|
||||
---
|
||||
title: Distribute apps using your private store (Windows 10)
|
||||
description: The private store is a feature in Microsoft Store for Business and Microsoft Store for Education that organizations receive during the signup process.
|
||||
ms.assetid: C4644035-845C-4C84-87F0-D87EA8F5BA19
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Distribute apps using your private store
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
The private store is a feature in Microsoft Store for Business and Education that organizations receive during the signup process. When admins add apps to the private store, all employees in the organization can view and download the apps. Your private store is available as a tab in Microsoft Store app, and is usually named for your company or organization. Only apps with online licenses can be added to the private store.
|
||||
|
||||
You can make an app available in your private store when you acquire the app, or you can do it later from your inventory. Once the app is in your private store, employees can claim and install the app.
|
||||
|
||||
**To acquire an app and make it available in your private store**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
|
||||
2. Click an app, choose the license type, and then click **Get the app** to acquire the app for your organization.
|
||||
|
||||
<!---  -->
|
||||
|
||||
Microsoft Store adds the app to **Products and services**. Click **Manage**, **Apps & software** for app distribution options.
|
||||
|
||||
**To make an app in Apps & software available in your private store**
|
||||
|
||||
1. Sign in to [Microsoft Store for Business](https://businessstore.microsoft.com) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**, and then choose **Products and services**.
|
||||
|
||||
<!---  -->
|
||||
|
||||
3. Click on the application to open the application settings, then select **Private store availability**.
|
||||
4. Select **Everyone** to make application available for all people in your organization.
|
||||
|
||||
<!---  -->
|
||||
|
||||
>[!Note]
|
||||
> If you are working with a new Line-of-Business (LOB) app, you have to wait for the app to be available in **Products & services** before adding it to your private store. For more information, see [Working with line-of-business apps](working-with-line-of-business-apps.md).
|
||||
|
||||
## Private store availability
|
||||
You can use security groups to scope which users can install an app from your private store. For more information, see [Private store availability](app-inventory-management-microsoft-store-for-business.md#private-store-availability).
|
||||
|
||||
Employees can claim apps that admins added to the private store by doing the following.
|
||||
|
||||
**To claim an app from the private store**
|
||||
|
||||
1. Sign in to your computer with your Microsoft Entra credentials, and start Microsoft Store app.
|
||||
2. Click the **private store** tab.
|
||||
3. Click the app you want to install, and then click **Install**.
|
||||
|
||||
|
||||
## Related topics
|
||||
- [Manage access to private store](manage-access-to-private-store.md)
|
||||
- [Manage private store settings](manage-private-store-settings.md)
|
||||
- [Configure access to Microsoft Store](/windows/configuration/stop-employees-from-using-microsoft-store)
|
@ -1,37 +0,0 @@
|
||||
---
|
||||
title: Distribute apps to your employees from the Microsoft Store for Business and Education (Windows 10)
|
||||
description: Distribute apps to your employees from Microsoft Store for Business or Microsoft Store for Education. You can assign apps to employees,or let employees install them from your private store.
|
||||
ms.assetid: E591497C-6DFA-49C1-8329-4670F2164E9E
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Distribute apps to your employees from Microsoft Store for Business and Education
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Distribute apps to your employees from Microsoft Store for Business and Microsoft Store for Education. You can assign apps to employees, or let employees install them from your private store.
|
||||
|
||||
## In this section
|
||||
|
||||
| Topic | Description |
|
||||
| ----- | ----------- |
|
||||
| [Distribute apps using your private store](distribute-apps-from-your-private-store.md) | The private store is a feature in Microsoft Store that organizations and schools receive during the signup process. When admins add apps to the private store, all people in the organization can view and download the apps. Only apps with online licenses can be added to the private store. |
|
||||
| [Assign apps to employees](assign-apps-to-employees.md) | Admins can assign online-licensed apps to people in their organization. |
|
||||
| [Distribute apps with a management tool](distribute-apps-with-management-tool.md) | Admins can configure a mobile device management (MDM) tool to synchronize your Microsoft Store inventory. Microsoft Store management tool services work with MDM tools to manage content. |
|
||||
| [Distribute offline apps](distribute-offline-apps.md) | Offline licensing is a new licensing option for Windows 10. With offline licenses, organizations can download apps and their licenses to deploy within their network, or on devices that are not connected to the Internet. This allows organizations to deploy apps to devices without connectivity to the Store. |
|
@ -1,65 +0,0 @@
|
||||
---
|
||||
title: Distribute apps with a management tool (Windows 10)
|
||||
description: You can configure a mobile device management (MDM) tool to synchronize your Microsoft Store for Business or Microsoft Store for Education inventory. Microsoft Store management tool services work with MDM tools to manage content.
|
||||
ms.assetid: 006F5FB1-E688-4769-BD9A-CFA6F5829016
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Distribute apps with a management tool
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
You can configure a mobile device management (MDM) tool to synchronize your Microsoft Store for Business or Microsoft Store for Education inventory. Microsoft Store management tool services work with MDM tools to manage content.
|
||||
|
||||
Your MDM tool needs to be installed and configured in Microsoft Entra ID, in the same Microsoft Entra directory used with Microsoft Store.
|
||||
|
||||
In Microsoft Entra management portal, find the MDM application, and then add it to your directory. Once the MDM has been configured in Microsoft Entra ID, you can authorize the tool to work with the Microsoft Store for Business or Microsoft Store for Education. This allows the MDM tool to call Microsoft Store management tool services. For more information, see [Configure MDM provider](configure-mdm-provider-microsoft-store-for-business.md) and [Manage apps you purchased from the Microsoft Store for Business with Microsoft Intune](/mem/intune/apps/windows-store-for-business).
|
||||
|
||||
Microsoft Store services provide:
|
||||
|
||||
- Services for third-party MDM tools.
|
||||
- Synchronize app purchases and updates.
|
||||
- Synchronize metadata. For offline-licensed apps, also synchronize offline app package and offline licenses.
|
||||
- The ability to download offline-licensed apps from Store for Business.
|
||||
|
||||
MDM tool requirements:
|
||||
|
||||
- Must be a Microsoft Entra application to authenticate against the Store for Business services.
|
||||
- Must be configured in Microsoft Entra ID, and Microsoft Store.
|
||||
- Microsoft Entra identity is required to authorize Microsoft Store services.
|
||||
|
||||
## Distribute offline-licensed apps
|
||||
|
||||
If your vendor doesn't support the ability to synchronize applications from the management tool services, or can't connect to the management tool services, your vendor may support the ability to deploy offline licensed applications by downloading the application and license from the store and then deploying the app through your MDM. For more information on online and offline licensing with Store for Business, see [Apps in the Microsoft Store for Business](./apps-in-microsoft-store-for-business.md#licensing-model).
|
||||
|
||||
This diagram shows how you can use a management tool to distribute offline-licensed app to employees in your organization. Once synchronized from Store for Business, management tools can use the Windows Management framework to distribute applications to devices.
|
||||
|
||||

|
||||
|
||||
## Distribute online-licensed apps
|
||||
|
||||
This diagram shows how you can use a management tool to distribute an online-licensed app to employees in your organization. Once synchronized from Microsoft Store, management tools use the Windows Management framework to distribute applications to devices. For online-licensed applications, the management tool calls back to Microsoft Store management services to assign an application prior to issuing the policy to install the application.
|
||||
|
||||

|
||||
|
||||
## Related topics
|
||||
|
||||
[Configure MDM Provider](configure-mdm-provider-microsoft-store-for-business.md)
|
||||
|
||||
[Manage apps you purchased from the Microsoft Store for Business and Education with Microsoft Intune](/mem/intune/apps/windows-store-for-business)
|
@ -1,82 +0,0 @@
|
||||
---
|
||||
title: Distribute offline apps (Windows 10)
|
||||
description: Offline licensing is a new licensing option for Windows 10.
|
||||
ms.assetid: 6B9F6876-AA66-4EE4-A448-1371511AC95E
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Distribute offline apps
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Offline licensing is a new licensing option for Windows 10 with Microsoft Store for Business and Microsoft Store for Education. With offline licenses, organizations can download apps and their licenses to deploy within their network, or on devices that are not connected to the Internet. ISVs or devs can opt-in their apps for offline licensing when they submit them to the Windows Dev Center. Only apps that are opted in to offline licensing will show that they are available for offline licensing in Microsoft Store for Business and Microsoft Store for Education. This model allows organizations to deploy apps when users or devices do not have connectivity to the Store.
|
||||
|
||||
## Why offline-licensed apps?
|
||||
|
||||
Offline-licensed apps offer an alternative to online apps, and provide additional deployment options. Some reasons to use offline-licensed apps:
|
||||
|
||||
- **You don't have access to Microsoft Store services** - If your employees don't have access to the Internet and Microsoft Store services, downloading offline-licensed apps and deploying them with imaging is an alternative to online-licensed apps.
|
||||
|
||||
- **You use imaging to manage devices in your organization** - Offline-licensed apps can be added to images and deployed with Deployment Image Servicing and Management (DISM), or Windows Imaging and Configuration Designer (ICD).
|
||||
|
||||
- **Your employees do not have Microsoft Entra accounts** - Microsoft Entra accounts are required for employees that install apps assigned to them from Microsoft Store or that claim apps from a private store.
|
||||
|
||||
## Distribution options for offline-licensed apps
|
||||
|
||||
You can't distribute offline-licensed apps directly from Microsoft Store. Once you download the items for the offline-licensed app, you have options for distributing the apps:
|
||||
|
||||
- **Deployment Image Servicing and Management**. DISM is a command-line tool that is used to mount and service Microsoft Windows images before deployment. You can also use DISM to install, uninstall, configure, and update Windows features, packages, drivers, and international settings in a .wim file or VHD using the DISM servicing commands. DISM commands are used on offline images. For more information, see [Deployment Image Servicing and Management](/windows-hardware/manufacture/desktop/dism---deployment-image-servicing-and-management-technical-reference-for-windows).
|
||||
|
||||
- **Create provisioning package**. You can use Windows Imaging and Configuration Designer (ICD) to create a provisioning package for your offline app. Once you have the package, there are options to [apply the provisioning package](/windows/configuration/provisioning-packages/provisioning-apply-package). For more information, see [Provisioning Packages for Windows 10](/windows/configuration/provisioning-packages/provisioning-packages).
|
||||
|
||||
- **Mobile device management provider or management server.** You can use a mobile device management (MDM) provider or management server to distribute offline apps. For more information, see these topics:
|
||||
|
||||
- [Manage apps from Microsoft Store for Business with Microsoft Configuration Manager](/configmgr/apps/deploy-use/manage-apps-from-the-windows-store-for-business)
|
||||
- [Manage apps from Microsoft Store for Business with Microsoft Intune](/mem/intune/apps/windows-store-for-business)
|
||||
|
||||
For third-party MDM providers or management servers, check your product documentation.
|
||||
|
||||
## Download an offline-licensed app
|
||||
|
||||
There are several items to download or create for offline-licensed apps. The app package and app license are required; app metadata and app frameworks are optional. This section includes more info on each item, and tells you how to download an offline-licensed app.
|
||||
|
||||
- **App metadata** - App metadata is optional. The metadata includes app details, links to icons, product id, localized product ids, and other items. Devs who plan to use an app as part of another app or tool, might want the app metadata.
|
||||
|
||||
- **App package** - App packages are required for distributing offline apps. There are app packages for different combinations of app platform and device architecture. You'll need to know what device architectures you have in your organization to know if there are app packages to support your devices.
|
||||
|
||||
- **App license** - App licenses are required for distributing offline apps. Use encoded licenses when you distribute offline-licensed apps using a management tool or ICD. Use unencoded licenses when you distribute offline-licensed apps using DISM.
|
||||
|
||||
- **App frameworks** - App frameworks are optional. If you already have the required framework, you don't need to download another copy. The Store for Business will select the app framework needed for the app platform and architecture that you selected.
|
||||
|
||||
<a href="" id="download-offline-licensed-app"></a>**To download an offline-licensed app**
|
||||
|
||||
1. Sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com/) or [Microsoft Store for Education](https://educationstore.microsoft.com).
|
||||
2. Click **Manage**.
|
||||
3. Click **Settings**.
|
||||
4. Click **Shop**. Search for the **Shopping experience** section, change the License type to **Offline**, and click **Get the app**, which will add the app to your inventory.
|
||||
5. Click **Manage**. You now have access to download the appx bundle package metadata and license file.
|
||||
6. Go to **Products & services**, and select **Apps & software**. (The list may be empty, but it will auto-populate after some time.)
|
||||
|
||||
- **To download app metadata**: Choose the language for the app metadata, and then click **Download**. Save the downloaded app metadata. This is optional.
|
||||
- **To download app package**: Click to expand the package details information, choose the Platform and Architecture combination that you need for your organization, and then click **Download**. Save the downloaded app package. This is required.
|
||||
- **To download an app license**: Choose either **Encoded**, or **Unencoded**, and then click **Generate license**. Save the downloaded license. This is required.
|
||||
- **To download an app framework**: Find the framework you need to support your app package, and click **Download**. This is optional.
|
||||
|
||||
> [!NOTE]
|
||||
> You need the framework to support your app package, but if you already have a copy, you don't need to download it again. Frameworks are backward compatible.
|
@ -37,7 +37,10 @@
|
||||
"tier2"
|
||||
],
|
||||
"breadcrumb_path": "/microsoft-store/breadcrumb/toc.json",
|
||||
"uhfHeaderId": "MSDocsHeader-M365-IT",
|
||||
"uhfHeaderId": "MSDocsHeader-Archive",
|
||||
"is_archived": true,
|
||||
"is_retired": true,
|
||||
"ROBOTS": "NOINDEX,NOFOLLOW",
|
||||
"ms.author": "trudyha",
|
||||
"audience": "ITPro",
|
||||
"ms.service": "store-for-business",
|
||||
@ -65,7 +68,9 @@
|
||||
"Stacyrch140",
|
||||
"garycentric",
|
||||
"dstrome",
|
||||
"alekyaj"
|
||||
"alekyaj",
|
||||
"aditisrivastava07",
|
||||
"padmagit77"
|
||||
]
|
||||
},
|
||||
"fileMetadata": {},
|
||||
|
@ -1,86 +0,0 @@
|
||||
- name: Microsoft Store for Education
|
||||
href: ../index.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: What's new in Microsoft Store for Business and Education
|
||||
href: ../whats-new-microsoft-store-business-education.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Sign up and get started
|
||||
href: ../sign-up-microsoft-store-for-business-overview.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: Microsoft Store for Business and Education overview
|
||||
href: ../microsoft-store-for-business-overview.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Prerequisites for Microsoft Store for Business and Education
|
||||
href: ../prerequisites-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Sign up for Microsoft Store for Business or Microsoft Store for Education
|
||||
href: /microsoft-store/sign-up-microsoft-store-for-business?toc=/microsoft-store/education/toc.json
|
||||
- name: Roles and permissions in the Microsoft Store for Business and Education
|
||||
href: ../roles-and-permissions-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: "Settings reference: Microsoft Store for Business and Education"
|
||||
href: ../settings-reference-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Working with Microsoft Store for Education
|
||||
href: /education/windows/education-scenarios-store-for-business?toc=/microsoft-store/education/toc.json
|
||||
- name: Find and acquire apps
|
||||
href: ../find-and-acquire-apps-overview.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: Apps in the Microsoft Store for Business and Education
|
||||
href: ../apps-in-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Acquire apps in the Microsoft Store for Business and Education
|
||||
href: ../acquire-apps-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Working with line-of-business apps
|
||||
href: ../working-with-line-of-business-apps.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: "Get Minecraft: Education Edition"
|
||||
href: /education/windows/get-minecraft-for-education?toc=/microsoft-store/education/toc.json
|
||||
items:
|
||||
- name: "For teachers: get Minecraft Education Edition"
|
||||
href: /education/windows/teacher-get-minecraft?toc=/microsoft-store/education/toc.json
|
||||
- name: "For IT administrators: get Minecraft Education Edition"
|
||||
href: /education/windows/school-get-minecraft?toc=/microsoft-store/education/toc.json
|
||||
- name: "Get Minecraft: Education Edition with Windows 10 device promotion"
|
||||
href: /education/windows/get-minecraft-device-promotion?toc=/microsoft-store/education/toc.json
|
||||
- name: Distribute apps to your employees from the Microsoft Store for Business and Education
|
||||
href: ../distribute-apps-to-your-employees-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: Distribute apps using your private store
|
||||
href: ../distribute-apps-from-your-private-store.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Assign apps to employees
|
||||
href: ../assign-apps-to-employees.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Distribute apps with a management tool
|
||||
href: ../distribute-apps-with-management-tool.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Distribute offline apps
|
||||
href: ../distribute-offline-apps.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage products and services
|
||||
href: ../manage-apps-microsoft-store-for-business-overview.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: App inventory management for Microsoft Store for Business
|
||||
href: ../app-inventory-management-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage app orders in Microsoft Store for Business and Education
|
||||
href: ../manage-orders-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage access to private store
|
||||
href: ../manage-access-to-private-store.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage private store settings
|
||||
href: ../manage-private-store-settings.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Configure MDM provider
|
||||
href: ../configure-mdm-provider-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage Windows device deployment with Windows Autopilot Deployment
|
||||
href: ../add-profile-to-devices.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Microsoft Store for Business and Education PowerShell module - preview
|
||||
href: ../microsoft-store-for-business-education-powershell-module.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage software purchased with Microsoft Products and Services agreement in Microsoft Store for Business
|
||||
href: ../manage-mpsa-software-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Device Guard signing portal
|
||||
href: ../device-guard-signing-portal.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: Add unsigned app to code integrity policy
|
||||
href: ../add-unsigned-app-to-code-integrity-policy.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Sign code integrity policy with Device Guard signing
|
||||
href: ../sign-code-integrity-policy-with-device-guard-signing.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage settings in the Microsoft Store for Business and Education
|
||||
href: ../manage-settings-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
items:
|
||||
- name: Update Microsoft Store for Business and Microsoft Store for Education account settings
|
||||
href: ../update-microsoft-store-for-business-account-settings.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Manage user accounts in Microsoft Store for Business and Education
|
||||
href: ../manage-users-and-groups-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Troubleshoot Microsoft Store for Business
|
||||
href: ../troubleshoot-microsoft-store-for-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
||||
- name: Notifications in Microsoft Store for Business and Education
|
||||
href: ../notifications-microsoft-store-business.md?toc=%2fmicrosoft-store%2feducation%2ftoc.json
|
@ -1,37 +0,0 @@
|
||||
---
|
||||
title: Find and acquire apps (Windows 10)
|
||||
description: Use the Microsoft Store for Business and Education to find apps for your organization. You can also work with developers to create line-of-business apps that are only available to your organization.
|
||||
ms.assetid: 274A5003-5F15-4635-BB8B-953953FD209A
|
||||
ms.reviewer:
|
||||
ms.mktglfcycl: manage
|
||||
ms.sitesec: library
|
||||
ms.pagetype: store
|
||||
ms.author: cmcatee
|
||||
author: cmcatee-MSFT
|
||||
manager: scotv
|
||||
ms.topic: conceptual
|
||||
ms.localizationpriority: medium
|
||||
ms.date: 05/24/2023
|
||||
---
|
||||
|
||||
# Find and acquire apps
|
||||
|
||||
**Applies to:**
|
||||
|
||||
- Windows 10
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> - The retirement of Microsoft Store for Business and Microsoft Store for Education has been postponed. We will update this notice when a new retirement date is announced. You can continue to use the current capabilities of free apps until that time. For more information about this change, see [Update to Intune integration with the Microsoft Store on Windows](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/update-to-endpoint-manager-integration-with-the-microsoft-store/ba-p/3585077) and [FAQ: Supporting Microsoft Store experiences on managed devices](https://techcommunity.microsoft.com/t5/windows-management/faq-supporting-microsoft-store-experiences-on-managed-devices/m-p/3585286).
|
||||
> - In April 2023 the Microsoft Store for Business tab was removed from Microsoft Store apps on Windows 10 and Windows 11 PCs. An interaction with existing MDM and GPO policies may lead to customers seeing errors when accessing the Microsoft Store app. For more information see [Microsoft Store for Business tab removed](manage-access-to-private-store.md#microsoft-store-for-business-tab-removed).
|
||||
|
||||
Use the Microsoft Store for Business and Education to find apps for your organization. You can also work with developers to create line-of-business apps that are only available to your organization.
|
||||
|
||||
## In this section
|
||||
|
||||
| Topic | Description |
|
||||
| ----- | ----------- |
|
||||
| [Apps in the Microsoft Store for Business and Education](apps-in-microsoft-store-for-business.md) | Store for Business and Education has thousands of apps from many different categories. |
|
||||
| [Acquire apps in the Microsoft Store for Business and Education](acquire-apps-microsoft-store-for-business.md) | You can acquire apps from the Microsoft Store for Business and Education for your employees. |
|
||||
| [Working with line-of-business apps](working-with-line-of-business-apps.md) | Your company can make line-of-business (LOB) applications available through Microsoft Store for Business and Education. These apps are custom to your company – they might be internal business apps, or apps specific to your business or industry. |
|
||||
|
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 8.7 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 194 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 2.7 KiB |