mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-14 14:27:22 +00:00
Merge branch 'master' into v-smandalika-5494946
This commit is contained in:
commit
6a1162e12b
@ -295,7 +295,7 @@ SurfaceHub
|
||||
<p>The data type is boolean. Supported operation is Get and Replace.
|
||||
|
||||
<a href="" id="inboxapps-welcome-currentbackgroundpath"></a>**InBoxApps/Welcome/CurrentBackgroundPath**
|
||||
<p>Download location for image to be used as the background during user sessions and on the welcome screen. To set this, specify an https URL to a PNG file (only PNGs are supported for security reasons). If any certificate authorities need to be trusted in order to access the URL, please ensure they are valid and installed on the Hub, otherwise it may not be able to load the image.
|
||||
<p>Download location for image to be used as the background during user sessions and on the welcome screen. To set this, specify an https URL to a 32-bit PNG file (only PNGs are supported for security reasons). If any certificate authorities need to be trusted in order to access the URL, please ensure they are valid and installed on the Hub, otherwise it may not be able to load the image.
|
||||
|
||||
<p>The data type is string. Supported operation is Get and Replace.
|
||||
|
||||
|
@ -231,7 +231,7 @@ If you are running Windows 10, version 1803 or later, Subscription Activation wi
|
||||
|
||||
If you are using Windows 10, version 1607, 1703, or 1709 and have already deployed Windows 10 Enterprise, but you want to move away from depending on KMS servers and MAK keys for Windows client machines, you can seamlessly transition as long as the computer has been activated with a firmware-embedded Windows 10 Pro product key.
|
||||
|
||||
If the computer has never been activated with a Pro key, run the following script. Copy the text below into a .cmd file and run the file from an elevated command prompt:
|
||||
If the computer has never been activated with a Pro key, run the following script. Copy the text below into a `.cmd` file, and run the file from an elevated command prompt:
|
||||
|
||||
```console
|
||||
@echo off
|
||||
@ -249,6 +249,12 @@ changepk.exe /ProductKey %ProductKey%
|
||||
)
|
||||
```
|
||||
|
||||
Since [WMIC was deprecated](/windows/win32/wmisdk/wmic) in Windows 10, version 21H1, you can use the following Windows PowerShell script instead:
|
||||
|
||||
```powershell
|
||||
$(Get-WmiObject SoftwareLicensingService).OA3xOriginalProductKey | foreach{ if ( $null -ne $_ ) { Write-Host "Installing"$_;.\changepk.exe /Productkey $_ } else { Write-Host "No key present" } }
|
||||
```
|
||||
|
||||
### Obtaining an Azure AD license
|
||||
|
||||
Enterprise Agreement/Software Assurance (EA/SA):
|
||||
|
2
windows/manage/TOC.yml
Normal file
2
windows/manage/TOC.yml
Normal file
@ -0,0 +1,2 @@
|
||||
- name: Test
|
||||
href: test.md
|
19
windows/manage/test.md
Normal file
19
windows/manage/test.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
title: Test
|
||||
description: Test
|
||||
ms.prod: w11
|
||||
ms.mktglfcycl: deploy
|
||||
ms.sitesec: library
|
||||
author: dstrome
|
||||
ms.author: dstrome
|
||||
ms.reviewer:
|
||||
manager: dstrome
|
||||
ms.topic: article
|
||||
---
|
||||
|
||||
# Test
|
||||
|
||||
## Deployment planning
|
||||
|
||||
This article provides guidance to help you plan for Windows 11 in your organization.
|
||||
|
Loading…
x
Reference in New Issue
Block a user