function OnInit(initData) { initData.name = 'SystemPhotoDateTaken'; initData.version = '2023-10-25'; initData.url = 'https://resource.dopus.com/t/possible-to-copy-iphone-images-with-correct-creation-date-or-rename-to-correct-creation-date/46634'; initData.desc = 'Retrieves System.Photo.DateTaken from the Shell'; initData.default_enable = true; initData.min_version = '12.0'; } function OnAddColumns(addColData) { var col = addColData.AddColumn(); col.name = 'SystemPhotoDateTaken'; col.justify = 'left'; col.type = 'datetime'; col.autogroup = true; col.method = 'OnColumn'; } function OnColumn(scriptColData) { var dateTaken = scriptColData.item.ShellProp('System.Photo.DateTaken'); scriptColData.value = DOpus.TypeOf(dateTaken) == 'object.Date' ? dateTaken.FromUTC() : ''; }