#Get-SPOJavaScriptLink Returns all or a specific custom action(s) with location type ScriptLink ##Syntax
Get-SPOJavaScriptLink [-Scope <CustomActionScope>] [-Web <WebPipeBind>] [-Name <String>]##Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Name | String | False | Name of the Javascript link. Omit this parameter to retrieve all script links |
| Scope | CustomActionScope | False | Scope of the action, either Web, Site or All to return both |
| Web | WebPipeBind | False | The web to apply the command to. Omit this parameter to use the current web. |
| ##Examples |
###Example 1
PS:> Get-SPOJavaScriptLinkReturns all web and site scoped JavaScriptLinks
###Example 2
PS:> Get-SPOJavaScriptLink -Scope WebReturns all site scoped JavaScriptLinks
###Example 3
PS:> Get-SPOJavaScriptLink -Scope SiteReturns all web scoped JavaScriptLinks
###Example 4
PS:> Get-SPOJavaScriptLink -Name TestReturns the JavaScriptLink named Test