Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc0cde3f

Browse files
author
Denis Molodtsov
committed
3.10.0 Version - 2024-01-18
1 parent744888f commitc0cde3f

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

‎MISC/Move-Lists.ps1‎

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,28 @@ if ($MigrationType -eq "Export") {
106106
$node.ParentNode.RemoveChild($node)|Out-Null
107107
}
108108

109+
$nodesToRemove=@(
110+
"0x0100415C46DF0F4B45939BDEC96C5014A10E",# Microblog Properties Content Type
111+
"0x0101009148F5A04DDD49CBA7127AADA5FB792B",# Rich Media Asset Content Type
112+
"0x0101009148F5A04DDD49CBA7127AADA5FB792B00291D173ECE694D56B19D111489C4369D"# Video Rendition Content Type
113+
"0x0101009D1CB255DA76424F860D91F20E6C41180043153F945E98468297E67C3EEE43AB70"# Space Content Type
114+
)
115+
116+
foreach ($nodeIdin$nodesToRemove) {
117+
$nodes=$xml.SelectNodes("//*[@ID='$nodeId']")
118+
foreach ($nodein$nodes) {
119+
$node.ParentNode.RemoveChild($node)|Out-Null
120+
}
121+
}
122+
123+
# Find all nodes with CustomFormatter attribute and remove this attribute along with its value
124+
# <Field CustomFormatter="XXX" DisplayName="Choice Field" FillInChoice="FALSE" Format="Dropdown" IsModern="TRUE" Name="ChoiceField" Title="Choice Field" Type="Choice" ID="{37f50195-22dc-46c3-bbd5-70f5c539e6c7}" SourceID="{{listid:Test list}}" >
125+
126+
$nodes=$xml.SelectNodes("//*[@CustomFormatter]")
127+
foreach ($nodein$nodes) {
128+
$node.RemoveAttribute("CustomFormatter")|Out-Null
129+
}
130+
109131
# Select all extended columns nodes based on the Group attribute
110132
# We don't want to migrate extended columns
111133
$extendedColumnNodes=$xml.SelectNodes("//*[@Group='Extended Columns']")

‎README.md‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![SharePoint Online](https://img.shields.io/badge/SharePoint-Online-yellow.svg)
22
![Windows](https://img.shields.io/static/v1?label=OS&message=Windows&color=green)
3-
![Version](https://img.shields.io/static/v1?label=Version&message=3.9.8&color=white)
3+
![Version](https://img.shields.io/static/v1?label=Version&message=3.10.0&color=white)
44

55

66
#Flow & Power Apps Migrator
@@ -49,7 +49,8 @@ Finally, the Flow & Power Apps Migrator converts **SharePoint List Forms customi
4949
| SharePoint Lists||
5050
| SharePoint Libraries||
5151
| Cross-Language Lists migration| ❌ Both source and target sites must be created with the same language. Otherwise, you'll get the`0x80070005 (E_ACCESSDENIED)` error|
52-
| Modern JSON List customizations||
52+
| JSON List customizations||
53+
| JSON Column formatting||
5354
| SharePoint data||
5455
| Content Types| ✔ (migrated automatically)|
5556
| Lookup fields| ⚠️ (migrated only if you migrate the lookup list, too)|
@@ -182,6 +183,13 @@ SharePoint List forms customized with Power Apps can be migrated if you follow t
182183

183184
#Latest Updates
184185

186+
187+
###3.10.0 Version - 2024-01-18
188+
####Changes
189+
- Removed migration of the column formatting JSON. This was causing the issues with the migrated lists.
190+
- Removing the migration of several out-of-the-box content types.
191+
192+
185193
###3.9.8 Version - 2023-09-25
186194
####Changes
187195
- Added additional tips to the users who are getting the`0x80070005 (E_ACCESSDENIED)` error.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp