applying Liza's fix

This commit is contained in:
jaimeo
2018-04-04 15:23:38 -07:00
parent 598211f1ae
commit 20ea1fd567

View File

@ -18,135 +18,135 @@ Windows 10 devices can receive updates from a variety of sources, including Wind
2. Run `\$MUSM = New-Object -ComObject “Microsoft.Update.ServiceManager”`. 2. Run `\$MUSM = New-Object -ComObject “Microsoft.Update.ServiceManager”`.
3. Run `\$MUSM.Services`. The resulting output should be similar to the following: 3. Run `\$MUSM.Services`. The resulting output should be similar to the following:
``` ```
Name : Microsoft Update Name : Microsoft Update
ContentValidationCert : {} ContentValidationCert : {}
ExpirationDate : ExpirationDate :
IsManaged : False IsManaged : False
IsRegisteredWithAU : True IsRegisteredWithAU : True
IssueDate : 01-Jan-01 12:00:00 AM IssueDate : 01-Jan-01 12:00:00 AM
OffersWindowsUpdates : True OffersWindowsUpdates : True
RedirectUrls : System.__ComObject RedirectUrls : System.__ComObject
ServiceID : 7971f918-a847-4430-9279-4a52d1efe18d ServiceID : 7971f918-a847-4430-9279-4a52d1efe18d
IsScanPackageService : False IsScanPackageService : False
CanRegisterWithAU : True CanRegisterWithAU : True
ServiceUrl : https://fe2.update.microsoft.com/v6/ ServiceUrl : https://fe2.update.microsoft.com/v6/
SetupPrefix : mu SetupPrefix : mu
IsDefaultAUService : False IsDefaultAUService : False
Name : DCat Flighting Prod Name : DCat Flighting Prod
ContentValidationCert : {} ContentValidationCert : {}
ExpirationDate : ExpirationDate :
IsManaged : False IsManaged : False
IsRegisteredWithAU : False IsRegisteredWithAU : False
IssueDate : 01-Jan-01 12:00:00 AM IssueDate : 01-Jan-01 12:00:00 AM
OffersWindowsUpdates : False OffersWindowsUpdates : False
RedirectUrls : System.__ComObject RedirectUrls : System.__ComObject
ServiceID : 8b24b027-1dee-babb-9a95-3517dfb9c552 ServiceID : 8b24b027-1dee-babb-9a95-3517dfb9c552
IsScanPackageService : False IsScanPackageService : False
CanRegisterWithAU : False CanRegisterWithAU : False
ServiceUrl : https://fe3.delivery.mp.microsoft.com/ ServiceUrl : https://fe3.delivery.mp.microsoft.com/
SetupPrefix : wu SetupPrefix : wu
IsDefaultAUService : False IsDefaultAUService : False
Name : Windows Store (DCat Prod) Name : Windows Store (DCat Prod)
ContentValidationCert : {} ContentValidationCert : {}
ExpirationDate : ExpirationDate :
IsManaged : False IsManaged : False
IsRegisteredWithAU : False IsRegisteredWithAU : False
IssueDate : 01-Jan-01 12:00:00 AM IssueDate : 01-Jan-01 12:00:00 AM
OffersWindowsUpdates : False OffersWindowsUpdates : False
RedirectUrls : System.__ComObject RedirectUrls : System.__ComObject
ServiceID : 855e8a7c-ecb4-4ca3-b045-1dfa50104289 ServiceID : 855e8a7c-ecb4-4ca3-b045-1dfa50104289
IsScanPackageService : False IsScanPackageService : False
CanRegisterWithAU : True CanRegisterWithAU : True
ServiceUrl : https://fe3.delivery.mp.microsoft.com/ ServiceUrl : https://fe3.delivery.mp.microsoft.com/
SetupPrefix : ws SetupPrefix : ws
IsDefaultAUService : False IsDefaultAUService : False
Name : Windows Server Update Service Name : Windows Server Update Service
ContentValidationCert : {} ContentValidationCert : {}
ExpirationDate : 18-Jun-54 9:21:00 PM ExpirationDate : 18-Jun-54 9:21:00 PM
IsManaged : True IsManaged : True
IsRegisteredWithAU : True IsRegisteredWithAU : True
IssueDate : 01-Jan-03 12:00:00 AM IssueDate : 01-Jan-03 12:00:00 AM
OffersWindowsUpdates : True OffersWindowsUpdates : True
RedirectUrls : System.__ComObject RedirectUrls : System.__ComObject
ServiceID : 3da21691-e39d-4da6-8a4b-b43877bcb1b7 ServiceID : 3da21691-e39d-4da6-8a4b-b43877bcb1b7
IsScanPackageService : False IsScanPackageService : False
CanRegisterWithAU : True CanRegisterWithAU : True
ServiceUrl : ServiceUrl :
SetupPrefix : SetupPrefix :
IsDefaultAUService : True IsDefaultAUService : True
Name : Windows Update
ContentValidationCert : {}
ExpirationDate :
IsManaged : False
IsRegisteredWithAU : False
IssueDate : 01-Jan-01 12:00:00 AM
OffersWindowsUpdates : True
RedirectUrls : System.__ComObject
ServiceID : 9482f4b4-e343-43b6-b170-9a65bc822c77
IsScanPackageService : False
CanRegisterWithAU : True
ServiceUrl : https://fe2.update.microsoft.com/v6/
SetupPrefix : wu
IsDefaultAUService : False
```
Name : Windows Update
ContentValidationCert : {}
ExpirationDate :
IsManaged : False
IsRegisteredWithAU : False
IssueDate : 01-Jan-01 12:00:00 AM
OffersWindowsUpdates : True
RedirectUrls : System.__ComObject
ServiceID : 9482f4b4-e343-43b6-b170-9a65bc822c77
IsScanPackageService : False
CanRegisterWithAU : True
ServiceUrl : https://fe2.update.microsoft.com/v6/
SetupPrefix : wu
IsDefaultAUService : False
```
4. Check the category **Name** and **OffersWindowsUpdates**:  4. Check the category **Name** and **OffersWindowsUpdates**: 
Name: **Microsoft Update** Name: **Microsoft Update**
Indicates the source against which we will are checking the Client capability. Microsoft Updates indicates, updates for other Microsoft Products checkbox. Indicates the source against which we will are checking the Client capability. Microsoft Updates indicates, updates for other Microsoft Products checkbox.
OffersWindowsUpdates: **True** OffersWindowsUpdates: **True**
Indicates that the client is configured to receive updates for all Microsoft Products (Office, etc.) Indicates that the client is configured to receive updates for all Microsoft Products (Office, etc.)
--- ---
Name: **DCat Flighting Prod** Name: **DCat Flighting Prod**
The update source is the Windows Insider Program. The update source is the Windows Insider Program.
OffersWindowsUpdates: **False** OffersWindowsUpdates: **False**
Indicates that the client will not receive or is not configured to receive these updates. Indicates that the client will not receive or is not configured to receive these updates.
--- ---
Name: **Windows Store (DCat Prod)** Name: **Windows Store (DCat Prod)**
The update source is Insider Updates for Store Apps. The update source is Insider Updates for Store Apps.
OffersWindowsUpdates: **False** OffersWindowsUpdates: **False**
Indicates that the client will not receive or is not configured to receive these updates. Indicates that the client will not receive or is not configured to receive these updates.
--- ---
Name: **Windows Server Update Service** Name: **Windows Server Update Service**
The source is a Windows Server Updates Services server. The source is a Windows Server Updates Services server.
OffersWindowsUpdates: **True** OffersWindowsUpdates: **True**
The client is configured to receive updates from WSUS The client is configured to receive updates from WSUS
--- ---
Name: **Windows Update** Name: **Windows Update**
The source is Windows Update. The source is Windows Update.
OffersWindowsUpdates: **True** OffersWindowsUpdates: **True**
The client is configured to receive updates from Windows Update Online The client is configured to receive updates from Windows Update Online
--- ---
 
   
See also: See also: