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
Write-Host"\config\migrator-config.json file validation passed"-ForegroundColor Green
63
+
} else {
64
+
Write-Host"Validation failed: Please verify and ensure that either all properties are set or all variables are empty in \config\migrator-config.json"-ForegroundColor Red
Copy file name to clipboardexpand all lines: README.md
+21
Original file line number
Diff line number
Diff line change
@@ -169,6 +169,27 @@ SharePoint List forms customized with Power Apps can be migrated if you follow t
169
169
170
170
171
171
# Latest Updates
172
+
### 3.9.0 Version - 2023-06-07
173
+
174
+
#### Changes
175
+
- Added an ability to run migrations using SharePoint-only App ID and App Secret. Use the `config\migrator-config.json` file to do it:
176
+
177
+
```
178
+
{
179
+
"source-site-url": "",
180
+
"target-site-url": "",
181
+
"source-site-app-id":"",
182
+
"source-site-app-secret":"",
183
+
"target-site-app-id":"",
184
+
"target-site-app-secret":""
185
+
}
186
+
```
187
+
188
+
#### Known issues
189
+
- If the source and the target sites were created using different languages, then the app migrator will fail with the [Access is denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))](https://github.com/Zerg00s/FlowPowerAppsMigrator/issues/34) error.
190
+
- Migrated lists with custom content types end up with an extra content type that should be deleted manually after migration.
191
+
- Migrated lists might need fields to be added to the content type or a form. In some cases, migrated lists show only the Title in the edit form.
Write-Host"\config\migrator-config.json file validation passed"-ForegroundColor Green
76
+
} else {
77
+
Write-Host"Validation failed: Please verify and ensure that either all properties are set or all variables are empty in \config\migrator-config.json"-ForegroundColor Red
78
+
}
79
+
80
+
if($areAllFilled){
81
+
$USE_APP_ONLY_AUTHENTICATION=$true
82
+
}
83
+
54
84
if ($Migration.MIGRATE_LISTS-like"true"-or
55
85
$Migration.MIGRATE_LISTS-like"yes"-or
56
86
$Migration.MIGRATE_LISTS-like"1"
@@ -78,18 +108,21 @@ if ($MIGRATE_LISTS) {
78
108
}
79
109
80
110
Write-Host"[Attention] Look for a login popup in a separate window. Please, log in to the target site $TARGET_SITE_URL."-ForegroundColor Cyan
0 commit comments