-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerShellWSL.format.ps1xml
More file actions
75 lines (69 loc) · 2.93 KB
/
Copy pathPowerShellWSL.format.ps1xml
File metadata and controls
75 lines (69 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<ViewDefinitions>
<View>
<Name>WslDistributionTable</Name>
<ViewSelectedBy>
<TypeName>WslDistribution</TypeName>
</ViewSelectedBy>
<TableControl>
<TableHeaders>
<TableColumnHeader>
<Label>Distribution</Label>
<Width>15</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>IsDefault</Label>
<Width>10</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Version</Label>
<Width>7</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Status</Label>
<Width>8</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>VhdFile</Label>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<TableColumnItems>
<TableColumnItem>
<PropertyName>Distribution</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>IsDefault</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Version</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Status</PropertyName>
</TableColumnItem>
<TableColumnItem>
<ScriptBlock>
$Path = $_.VhdFile
$PathElem = $Path -split '\\'
if ($Path.Length -le 60) {
$Path
} else {
($PathElem | Foreach-Object {
if ($_.Length -gt 10) {
"..."
} else {
$_
}
}) -join '\'
}
</ScriptBlock>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
</ViewDefinitions>
</Configuration>