Acronis Cyber Protect Home Office (formerly Acronis True Image) activation

Discussion in 'MDL Projects and Applications' started by nova-s, Aug 23, 2014.

  1. burnix

    burnix MDL Junior Member

    Jan 4, 2011
    61
    9
    0
  2. lt

    lt MDL Novice

    Nov 29, 2012
    47
    38
    0
    you can also open .tib files by just installing acronis drivers :)
     
  3. nova-s

    nova-s MDL Addicted

    Aug 22, 2010
    503
    1,882
    30
    ok - where to get these drivers?
     
  4. lt

    lt MDL Novice

    Nov 29, 2012
    47
    38
    0
    gather files after normal installation:
    Code:
    x64
    icu38.dll
    icudt38.dll
    resource.dll
    tishell64.dll
    tishell_svr64.dll
    
    x86
    icu38.dll
    icudt38.dll
    resource.dll
    tishell32.dll
    tishell_abr.dll
    create and run this *.cmd
    Code:
    @echo off
    pushd %~dp0
    SET CurDir=%CD%\
    if exist %SystemRoot%\SysWOW64\wdscore.dll goto x64
    goto x86
    :x64
    REG.exe ADD HKLM\SOFTWARE\Acronis\BackupAndRecovery\CommonComponents /f /v "icu38.dll" /T REG_SZ /D "%CurDir%x64\icu38.dll"
    REG.exe ADD HKLM\SOFTWARE\Acronis\BackupAndRecovery\CommonComponents /f /v "resource.dll" /T REG_SZ /D "%CurDir%x64\resource.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\.tib" /f /v "" /t REG_SZ /d "tibfile"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile" /f /v "" /t REG_SZ /d "Acronis Backup File"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\CLSID" /f /v "" /t REG_SZ /d "{C539A15B-3AF9-4c92-B771-50CB78F5C751}"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\DefaultIcon" /f /v "" /t REG_SZ /d "%CurDir%x64\tishell64.dll,0"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open" /f /v "" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\command" /f /v "" /t REG_SZ /d "explorer /idlist,%%I,%%L"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec" /f /v "NoActivateHandler" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec" /f /v "" /t REG_SZ /d "[ViewFolder(\"%%l\", %%I, %%S)]"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\application" /f /v "" /t REG_SZ /d "Folders"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\ifexec" /f /v "" /t REG_SZ /d "[]"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\topic" /f /v "" /t REG_SZ /d "AppProperties"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}" /f /v "" /t REG_SZ /d "Acronis Backup and Recovery 10 Shell Extension"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "ThreadingModel" /t REG_SZ /d "Apartment"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "" /t REG_SZ /d "%CurDir%x64\tishell64.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\Implemented Categories\{00021490-0000-0000-C000-000000000046}" /f /v "" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "" /t REG_SZ /d "%CurDir%x64\tishell_svr64.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "ThreadingModel" /t REG_SZ /d "Apartment"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}" /f /v "" /t REG_SZ /d "Acronis True Image Shell Extension Backend"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}" /f /v "AppID" /t REG_SZ /d "{C4E69DB9-E094-483e-B922-E7ADE65FB497}"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\ShellFolder" /f /v "Attributes" /T REG_DWORD /D 2684354560
    nircmd sysrefresh environment
    nircmd shellrefresh
    goto end
    :x86
    REG.exe ADD HKLM\SOFTWARE\Acronis\BackupAndRecovery\CommonComponents /f /v "icu38.dll" /T REG_SZ /D "%CurDir%x86\icu38.dll"
    REG.exe ADD HKLM\SOFTWARE\Acronis\BackupAndRecovery\CommonComponents /f /v "resource.dll" /T REG_SZ /D "%CurDir%x86\resource.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\.tib" /f /v "" /t REG_SZ /d "tibfile"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile" /f /v "" /t REG_SZ /d "Acronis Backup File"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\CLSID" /f /v "" /t REG_SZ /d "{C539A15B-3AF9-4c92-B771-50CB78F5C751}"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\DefaultIcon" /f /v "" /t REG_SZ /d "%CurDir%x86\tishell_abr.dll,0"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open" /f /v "" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\command" /f /v "" /t REG_SZ /d "explorer /idlist,%%I,%%L"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec" /f /v "NoActivateHandler" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec" /f /v "" /t REG_SZ /d "[ViewFolder(\"%%l\", %%I, %%S)]"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\application" /f /v "" /t REG_SZ /d "Folders"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\ifexec" /f /v "" /t REG_SZ /d "[]"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\tibfile\Shell\open\ddeexec\topic" /f /v "" /t REG_SZ /d "AppProperties"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}" /f /v "" /t REG_SZ /d "Acronis True Image Shell Extension Backend"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}" /f /v "AppID" /t REG_SZ /d "{C4E69DB9-E094-483e-B922-E7ADE65FB497}"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "ThreadingModel" /t REG_SZ /d "Apartment"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15C-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "" /t REG_SZ /d "%CurDir%x86\tishell32.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\Implemented Categories\{00021490-0000-0000-C000-000000000046}" /f /v "" /t REG_SZ /d ""
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "" /t REG_SZ /d "%CurDir%x86\tishell_abr.dll"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\InProcServer32" /f /v "ThreadingModel" /t REG_SZ /d "Apartment"
    REG.EXE ADD "HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}" /f /v "" /t REG_SZ /d "Acronis Backup and Recovery 10 Shell Extension"
    REG.EXE ADD HKLM\SOFTWARE\Classes\CLSID\{C539A15B-3AF9-4c92-B771-50CB78F5C751}\ShellFolder /f /v "Attributes" /T REG_DWORD /D 2684354560
    nircmd sysrefresh environment
    nircmd shellrefresh
    goto end
    :end
    pause
    exit
    get nircmd from nirsoft.net

    found this from somewhere i can't recall and not my work
     
  5. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    tishell_svr64.dll or tishell_abr.dll did not exist in Acronis True Image!

    Maybe in Acronis Backup? Where I can get this for a test?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. nova-s

    nova-s MDL Addicted

    Aug 22, 2010
    503
    1,882
    30
    thanks skyteddy - maybe you can upload a .zip somehwere, so people can get this "driver" without being forced to install the whole package first...
     
  8. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    @skyteddy Uploading the packed files, as @nova-s asked, would be indeed very much obliged here likewise :D.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    hello nova-s and s1ave77,

    you know a good place where I can upload the zip-file? "Good" means a site without the user get a virus or a site with one "download-button" and not more blinki "download-buttons"?

    View minutes ago I found a NSI-file (a NSIS (Nullsoft Scriptable Install System)-file) from 2013 which do a view things more. I'll check this the next view days, maybe there do important things.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #270 s1ave77, May 8, 2017
    Last edited: May 9, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #272 s1ave77, May 9, 2017
    Last edited: May 9, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    I have non to test.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    Ok, I'll try it on the weekend.

    btw: your used files in x32 and x64 are not up to date
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. nova-s

    nova-s MDL Addicted

    Aug 22, 2010
    503
    1,882
    30
    can't open protected files, tried 2017, 2011, v.11(2007) .tib files.
    only 2017 .tib prompts for password but doesn't accept
     
  17. skyteddy

    skyteddy MDL Senior Member

    Dec 22, 2009
    333
    1,104
    10
    Thank you for your tests!

    That's exactly what I thought. But I think I have a solution, but I have no free time the next view days to try this and that.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    If you have solution/idea to check, feel free to post in the ATIBShell thread from my sig (or via conversation if preferred) :D.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...