Skip to content

Commit 03ae815

Browse files
authored
Merge pull request MicrosoftDocs#2614 from TimShererWithAquent/startlayout-v-tishe
StartLayout PowerShell reference update
2 parents 31f953a + 9961e27 commit 03ae815

File tree

3 files changed

+137
-1
lines changed

3 files changed

+137
-1
lines changed

docset/winserver2022-ps/startlayout/Export-StartLayout.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,7 @@ Export as an .xml file.
138138
139139
## RELATED LINKS
140140
141+
[Export-StartLayoutEdgeAssets](Export-StartLayoutEdgeAssets.md)
142+
141143
[Import-StartLayout](./Import-StartLayout.md)
142144
Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
---
2+
description: The Export-StartLayoutEdgeAssets cmdlet exports secondary tiles for Microsoft Edge that display a custom image.
3+
external help file: Microsoft.Windows.StartLayout.Commands.dll-Help.xml
4+
Module Name: StartLayout
5+
ms.date: 09/20/2021
6+
online version: https://docs.microsoft.com/powershell/module/startlayout/export-startlayoutedgeassets?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
7+
schema: 2.0.0
8+
---
9+
10+
# Export-StartLayoutEdgeAssets
11+
12+
## SYNOPSIS
13+
Exports secondary tiles for Microsoft Edge that display a custom image.
14+
15+
## SYNTAX
16+
17+
### Non-literal
18+
```
19+
Export-StartLayoutEdgeAssets [-Path] <String> [-WhatIf] [-Confirm] [<CommonParameters>]
20+
```
21+
22+
### Literal
23+
```
24+
Export-StartLayoutEdgeAssets -LiteralPath <String> [-WhatIf] [-Confirm] [<CommonParameters>]
25+
```
26+
27+
## DESCRIPTION
28+
The **Export-StartLayoutEdgeAssets** cmdlet exports secondary tiles for Microsoft Edge that display a custom image.
29+
Use [Export-StartLayout](./Export-StartLayout.md) and [Import-StartLayout](./Import-StartLayout.md) along with the current cmdlet to import the assets.
30+
For more information, see [Add image for secondary Microsoft Edge tiles](/windows/configuration/start-secondary-tiles).
31+
32+
The provisioning policies that use the exported assets are no longer used with the Windows 11 Start menu.
33+
34+
## EXAMPLES
35+
36+
### Example 1: Export assets
37+
```powershell
38+
Export-StartLayoutEdgeAssets -Path "C:\Layouts\assets.xml"
39+
```
40+
41+
This example exports the assets to the file `assets.xml` in the `C:\Layouts` folder.
42+
This cmdlet doesn't append `.xml` to a file name.
43+
44+
## PARAMETERS
45+
46+
### -LiteralPath
47+
Specifies a literal path for an asset file.
48+
Include the `.xml` file name extension.
49+
This parameter does not accept the wildcard character (*).
50+
If the path includes an escape character (\\), enclose the string in single quotes (').
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: Literal
55+
Aliases:
56+
57+
Required: True
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: False
61+
Accept wildcard characters: False
62+
```
63+
64+
### -Path
65+
Specifies an absolute path for an asset file.
66+
Include the `.xml` file name extension.
67+
This parameter does not accept the wildcard character (*).
68+
69+
```yaml
70+
Type: String
71+
Parameter Sets: Non-literal
72+
Aliases:
73+
74+
Required: True
75+
Position: 1
76+
Default value: None
77+
Accept pipeline input: False
78+
Accept wildcard characters: False
79+
```
80+
81+
### -Confirm
82+
Prompts you for confirmation before running the cmdlet.
83+
84+
```yaml
85+
Type: SwitchParameter
86+
Parameter Sets: (All)
87+
Aliases: cf
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### -WhatIf
97+
Shows what would happen if the cmdlet runs.
98+
The cmdlet is not run.
99+
100+
```yaml
101+
Type: SwitchParameter
102+
Parameter Sets: (All)
103+
Aliases: wi
104+
105+
Required: False
106+
Position: Named
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### CommonParameters
113+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
114+
115+
## INPUTS
116+
117+
### None
118+
119+
## OUTPUTS
120+
121+
### System.Object
122+
123+
## NOTES
124+
125+
## RELATED LINKS
126+
127+
[Export-StartLayout](./Export-StartLayout.md)
128+
129+
[Get-StartApps](Get-StartApps.md)
130+
131+
[Import-StartLayout](./Import-StartLayout.md)

docset/winserver2022-ps/startlayout/StartLayout.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ This reference provides cmdlet descriptions and syntax for all Start screen cmdl
1717
### [Export-StartLayout](./Export-StartLayout.md)
1818
Exports the layout of the Start screen.
1919

20-
### [Get-StartApps](./Get-StartApps.md)
20+
### [Export-StartLayoutEdgeAssets](Export-StartLayoutEdgeAssets.md)
21+
Exports secondary tiles for Microsoft Edge that display a custom image.
22+
23+
### [Get-StartApps](Get-StartApps.md)
2124
Gets the names and AppIDs of installed apps.
2225

2326
### [Import-StartLayout](./Import-StartLayout.md)

0 commit comments

Comments
 (0)