-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into fixes/BatchTaxonomyListItem
- Loading branch information
Showing
53 changed files
with
6,524 additions
and
5,913 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"Updated": "20241130-024739", | ||
"PnPPowerShell": "3f644bb639eb2454e181077b09c58b8c4a341114", | ||
"PnPFramework": "79a4ab2d889a61f693777d517fdb76b8428d0bff", | ||
"PnPCore": "b4011dcffc2ec7bab3455abb0b59a9a8336989fd" | ||
"Updated": "20241215-025730", | ||
"PnPPowerShell": "299de9de420a6aacf4e3de62a6d8d572377f770e", | ||
"PnPFramework": "a5b9e781502a19752d98fae0d85e7df826a5f004", | ||
"PnPCore": "d014e37bd2d15827dfe218275760f3326ba54b80" | ||
} |
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
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
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,105 @@ | ||
--- | ||
document type: cmdlet | ||
external help file: PnP.PowerShell.dll-Help.xml | ||
HelpUri: '' | ||
Locale: en-US | ||
Module Name: PnP.PowerShell | ||
ms.date: 12/06/2024 | ||
PlatyPS schema version: 2024-05-01 | ||
title: Get-PnPCopilotAgent | ||
--- | ||
|
||
# Get-PnPCopilotAgent | ||
|
||
## SYNOPSIS | ||
|
||
Returns the Microsoft Copilot Agents (*.agent) in a site collection. | ||
|
||
## SYNTAX | ||
|
||
### __AllParameterSets | ||
|
||
```powershell | ||
Get-PnPCopilotAgent [-ServerRelativeUrl <string>] [-Connection <PnPConnection>] [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
|
||
This cmdlet iterates through the document libraries in a site and finds the copilot agents in that site. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1 | ||
|
||
```powershell | ||
Get-PnPCopilotAgent | ||
``` | ||
|
||
This will return all the Microsoft Copilot agents in a site. | ||
|
||
|
||
### Example 2 | ||
|
||
```powershell | ||
Get-PnPCopilotAgent -ServerRelativeUrl /sites/demo/siteassets/copilots/approved/main.agent | ||
``` | ||
|
||
This will return the specific Microsoft Copilot agent if it exists. | ||
|
||
|
||
## PARAMETERS | ||
|
||
### -Connection | ||
|
||
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. | ||
|
||
```yaml | ||
Type: PnP.PowerShell.Commands.Base.PnPConnection | ||
DefaultValue: '' | ||
SupportsWildcards: false | ||
ParameterValue: [] | ||
Aliases: [] | ||
ParameterSets: | ||
- Name: (All) | ||
Position: Named | ||
IsRequired: false | ||
ValueFromPipeline: false | ||
ValueFromPipelineByPropertyName: false | ||
ValueFromRemainingArguments: false | ||
DontShow: false | ||
AcceptedValues: [] | ||
HelpMessage: '' | ||
``` | ||
### -ServerRelativeUrl | ||
The server relative URL to the .agent file. | ||
```yaml | ||
Type: System.String | ||
DefaultValue: '' | ||
SupportsWildcards: false | ||
ParameterValue: [] | ||
Aliases: [] | ||
ParameterSets: | ||
- Name: (All) | ||
Position: Named | ||
IsRequired: false | ||
ValueFromPipeline: false | ||
ValueFromPipelineByPropertyName: false | ||
ValueFromRemainingArguments: false | ||
DontShow: false | ||
AcceptedValues: [] | ||
HelpMessage: '' | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, | ||
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, | ||
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see | ||
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). | ||
## RELATED LINKS | ||
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) |
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
Oops, something went wrong.