Help With Macrium Columns Script
Posted: 25 Oct 2018 03:21
`
Macrium Refect has shell integration for Windows Explorer columns.
https://knowledgebase.macrium.com/displ ... rercolumns
I have a working VB script for another file manager (Dopus) and wondering if anyone could convert this into an XYplorer script.
I found the two columns "Backup Method" and "Backup Comment" in XY but they don't work, probably because Macrium is x64 and XY is well... 32-bit
, and Macrium won't let you install the 32 bit if your Windows is x64.
Any help would be greatly appreciated.
James
Macrium Refect has shell integration for Windows Explorer columns.
https://knowledgebase.macrium.com/displ ... rercolumns
I have a working VB script for another file manager (Dopus) and wondering if anyone could convert this into an XYplorer script.
I found the two columns "Backup Method" and "Backup Comment" in XY but they don't work, probably because Macrium is x64 and XY is well... 32-bit
Any help would be greatly appreciated.
James
Code: Select all
option explicit
' macrium-columns
'
Function OnInit(initData)
initData.name = "Macrium"
initData.version = "1.0"
initData.default_enable = true
initData.min_version = "12.0"
Dim props, prop, col
Set props = DOpus.FSUtil.GetShellPropertyList("Macrium.*", "r")
for each prop in props
Set col = initData.AddColumn
col.name = prop.raw_name
col.method = "OnMacriumColumn"
col.label = prop.display_name
col.justify = "left"
col.autogroup = true
col.userdata = prop.pkey
next
End Function
Function OnMacriumColumn(scriptColData)
scriptColData.value = scriptColData.item.shellprop(scriptColData.userdata)
End Function