You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/apps/develop/settings/settings-common.md
+23-63Lines changed: 23 additions & 63 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,67 +115,6 @@ The value of the *compatFlags* field of the backup JSON file is a combination of
115
115
116
116
## AppList
117
117
118
-
As part of backup, when the user has enabled backup of the apps list, the following data is collected and placed in a db file for uploading to the Cloud. The path to this JSON is:
119
-
120
-
`%LocalAppData%\ConnectedDevicesPlatform\<Any folder starting with “AAD.”>\Activity.db`
121
-
122
-
> [!NOTE]
123
-
> This data is ephemeral and is removed locally once it has been uploaded to the cloud.
124
-
125
-
The following code segment describes the format of the file and provides descriptions for each field.
126
-
127
-
```json
128
-
{
129
-
"appId": Unique identifier for App ,
130
-
"installSource": Description of type of installer for the app. See below for supported values,
131
-
"appName": String containing the friendly name of the app from ARP [TBD - What is ARP?],
132
-
"publisher": String containing the publisher name of the app from ARP [TBD - What is ARP?],
133
-
"lastLaunchTime": Calculated value. The last time the app was launched. ,
134
-
"appVersion": Version of the app from ARP,
135
-
"appLanguage": Language list in ARP,
136
-
"appArch": Architecture specified in ARP,
137
-
"reinstallId": Reinstall ID specified in ARP,
138
-
"productUrl": Product URL Specified in ARP,
139
-
"isPinned": A boolean indicating if this app was pinned to the start menu ,
140
-
"wingetID": Identifier to indicate if this app can be installed through winget,
141
-
"wingetSource": Specifies if this app was installed originally from winget community repository, or from the web. See below for supported values.
142
-
}
143
-
lightIconInfo=>{
144
-
"Data": {
145
-
"appIconAssetId": Unique identifier for light icon,
146
-
"isPlated": false
147
-
}
148
-
}
149
-
150
-
darkIconInfo=>{
151
-
"Data": {
152
-
"appIconAssetId": Unique identifier for light icon,
153
-
"isPlated": false
154
-
}
155
-
}
156
-
157
-
```
158
-
159
-
Supported values for the *installSource* field.
160
-
161
-
| Value | Description |
162
-
|-------|-------------|
163
-
| "Store MSIX" | An MSIX from the Microsoft Store |
164
-
| "Sideloaded MSIX” | A sideloaded MSIX |
165
-
| "Edge PWA MSIX” | A PWA MSIX |
166
-
| "Unknown MSIX” | Not one of the other MSIX values. |
167
-
| “Store Win32” | A non-UWP app from the Microsoft Store |
168
-
| "Android" | An Android app |
169
-
| "External MSI" | An external MSI. |
170
-
171
-
Supported values for the *wingetSource* field.
172
-
| Value | Description |
173
-
|-------|-------------|
174
-
| "External" | From the web, but winget has an ID. |
175
-
| "Winget" | From the winget catalog. |
176
-
| "Spark" | Spark app. |
177
-
| "MSStore" | Microsoft Store. |
178
-
| "NoReliableInfo" | Don’t have info from winget APIs. |
179
118
180
119
### Type: Windows.Data.Apps.IconInfo structure
181
120
@@ -207,11 +146,32 @@ Supported values for the *wingetSource* field.
| isPinned | bool | Boolean indicating if this app was pinned to the start menu. |
209
148
| wingetID | wstring | Identifier to indicate if this app can be installed through winget. |
210
-
| wingetSource | wstring | Specifies if this app was installed originally from winget community repository, or from the web. See above for supported values. |
149
+
| wingetSource | wstring | Specifies if this app was installed originally from winget community repository, or from the web. See below for supported values. |
150
+
151
+
152
+
Supported values for the *installSource* field.
153
+
154
+
| Value | Description |
155
+
|-------|-------------|
156
+
| "Store MSIX" | An MSIX from the Microsoft Store |
157
+
| "Sideloaded MSIX” | A sideloaded MSIX |
158
+
| "Edge PWA MSIX” | A PWA MSIX |
159
+
| "Unknown MSIX” | Not one of the other MSIX values. |
160
+
| “Store Win32” | A non-UWP app from the Microsoft Store |
161
+
| "Android" | An Android app |
162
+
| "External MSI" | An external MSI. |
211
163
164
+
Supported values for the *wingetSource* field.
165
+
| Value | Description |
166
+
|-------|-------------|
167
+
| "External" | From the web, but winget has an ID. |
168
+
| "Winget" | From the winget catalog. |
169
+
| "Spark" | Spark app. |
170
+
| "MSStore" | Microsoft Store. |
171
+
| "NoReliableInfo" | Don’t have info from winget APIs. |
0 commit comments