Skip to content

Commit 63d1ecc

Browse files
authored
Update Set-WindowsSearchSetting.md
added new command with description **Set-WindowsSearchSetting -EnableMeteredWebResultsSetting $True** article link **https://learn.microsoft.com/en-us/powershell/module/windowssearch/set-windowssearchsetting?view=windowsserver2022-ps**
1 parent e44e3f4 commit 63d1ecc

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

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 metered web searching results only.
53+
4754
## PARAMETERS
4855

4956
### -EnableMeteredWebResultsSetting

0 commit comments

Comments
 (0)