-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
185 additions
and
40 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
resources/Help/Microsoft.Windows.Setting.Apps/AppsForWebsites.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
external help file: Microsoft.Windows.Setting.Apps.psm1-Help.xml | ||
Module Name: Microsoft.Windows.Setting.Apps | ||
ms.date: 01/10/2025 | ||
online version: | ||
schema: 2.0.0 | ||
title: AppsForWebsites | ||
--- | ||
|
||
# AppsForWebsites | ||
|
||
## SYNOPSIS | ||
|
||
The `AppsForWebsites` DSC Resource allows you to manage application associations for websites on Windows. | ||
|
||
## DESCRIPTION | ||
|
||
The `AppsForWebsites` DSC Resource allows you to manage application associations for websites on Windows. | ||
|
||
## PARAMETERS | ||
|
||
| **Parameter** | **Attribute** | **DataType** | **Description** | **Allowed Values** | | ||
| ------------- | -------------- | ------------ | ------------------------------------------------------------------------------------------- | ---------------------------------------------------- | | ||
| `LinkUri` | Key, Mandatory | String | The link URI. | Any valid URI that is associated with an URI handler | | ||
| `Exist` | Optional | Boolean | Indicates whether the application association should be turned on or off. Default is `True` | `True` or `False` | | ||
|
||
## EXAMPLES | ||
|
||
### EXAMPLE 1 - Turn off Adobe Acrobat to open links in the app | ||
|
||
```powershell | ||
Invoke-DscResource -ModuleName Microsoft.Windows.Setting.Apps -Name AppsForWebsites -Method Set -Property @{ | ||
LinkUri = 'acrobat.adobe.com' | ||
Exist = $false | ||
} | ||
# This example ensures that the application association for 'acrobat.adobe.com' is turned off. | ||
``` |
38 changes: 0 additions & 38 deletions
38
resources/Help/Microsoft.Windows.Setting.Apps/OfflineMap.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters