Skip to content

Commit 9f1d073

Browse files
authored
Merge pull request MicrosoftDocs#3698 from MicrosoftDocs/main
Publish 11/06/2023, 3:30 PM
2 parents 639b622 + 6cce850 commit 9f1d073

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

docset/winserver2022-ps/appx/Get-AppxPackageAutoUpdateSettings.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ Get-AppxPackageAutoUpdateSettings -PackageFullName publisher.package1_1.0.0.0_ne
5454
This will return the Auto Update and Repair settings for a specific Windows App that has been
5555
installed and registered to the signed-in user.
5656

57+
### Example 4: Get App Package Auto Update settings for all installed Windows Apps
58+
59+
```powershell
60+
Get-AppxPackageAutoUpdateSettings -ShowUpdateAvailability
61+
```
62+
63+
Displays available update information for all installed Windows Apps.
64+
5765
## PARAMETERS
5866

5967
### -PackageFullName

docset/winserver2022-ps/windowssearch/Set-WindowsSearchSetting.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,24 @@ You can also specify SafeSearch settings.
3333
PS C:\> Set-WindowsSearchSetting -SearchExperienceSetting "Personalized"
3434
```
3535

36-
This command allows Windows Search to use search history, but not specific location of the user, to personalize results.
36+
This command allows Windows Search to use search history, but not the specific location of the user, to personalize results.
3737

3838
### Example 2: Modify Windows Search settings
3939
```
4040
PS C:\> Set-WindowsSearchSetting -EnableWebResultsSetting $True -SafeSearchSetting "Strict" -SearchExperienceSetting "PersonalizedAndLocation"
4141
```
4242

4343
This command modifies Windows Search settings.
44-
The command enables the use of search history and specific location of the user by specifying a value of PersonalizedAndLocation for the *SearchExperienceSetting* parameter.
44+
The command enables the use of search history and the specific location of the user by specifying a value of PersonalizedAndLocation for the *SearchExperienceSetting* parameter.
4545
The command enables web results and sets SafeSearch to a value of Strict.
4646

47+
### Example 3: Enable metered web search
48+
```
49+
PS C:\> Set-WindowsSearchSetting -EnableMeteredWebResultsSetting $True
50+
```
51+
52+
This command enables Windows Search to display web results and suggestions while using metered connections.
53+
4754
## PARAMETERS
4855

4956
### -EnableMeteredWebResultsSetting

0 commit comments

Comments
 (0)