|
本帖最后由 2012mshs 于 2018-10-1 22:45 编辑
I was make new version Acronis True Image 2018, 2017, 2016 PE and ISO
You can boot in UEFI mode with grub2. Use this code in menu
- menuentry "Acronis True Image Home 2018 ISO" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati18cn.iso"
- search --set -f $isofile
- loopback loop $isofile
- linux (loop,msdos1)/dat10.dat lang=zh_CN quiet force_modules=usbhid
- initrd (loop,msdos1)/dat11.dat (loop,msdos1)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2018 ISO ElTorito" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati18cn.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)232+224000
- #ls (ElTorito)/
- linux (ElTorito)/dat10.dat lang=zh_CN quiet force_modules=usbhid
- initrd (ElTorito)/dat11.dat (ElTorito)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2017 ISO" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati17cn.iso"
- search --set -f $isofile
- loopback loop $isofile
- linux (loop,msdos1)/dat10.dat lang=zh_CN quiet force_modules=usbhid
- initrd (loop,msdos1)/dat11.dat (loop,msdos1)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2017 ISO ElTorito" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati17cn.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)232+208000
- #ls (ElTorito)/
- linux (ElTorito)/dat10.dat lang=zh_CN quiet force_modules=usbhid
- initrd (ElTorito)/dat11.dat (ElTorito)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2016 ISO ElTorito" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati16.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)232+184000
- #ls (ElTorito)/
- linux (ElTorito)/dat10.dat lang=13 quiet force_modules=usbhid
- initrd (ElTorito)/dat11.dat (ElTorito)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2016 ISO" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/ati16.iso"
- search --set -f $isofile
- loopback loop $isofile
- linux (loop,msdos1)/dat10.dat lang=13 quiet force_modules=usbhid
- initrd (loop,msdos1)/dat11.dat (loop,msdos1)/dat12.dat
- boot
- }
- menuentry "Acronis True Image Home 2016 - Extract ISO" {
- linux /acronis/dat10.dat lang=13 vga=791 mbrcrcs=on quiet force_modules=usbhid
- initrd /acronis/dat11.dat /acronis/dat12.dat
- boot
- }
- menuentry "Acronis Disk Director Home 12 ISO ElTorito" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/add12.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)220+161792
- #ls (ElTorito)/
- linux (ElTorito)/dat5.dat quiet
- initrd (ElTorito)/dat4.dat
- boot
- }
- menuentry "Acronis Backup Advanced 11.7" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/abr11cn.iso"
- search --set -f $isofile
- loopback loop $isofile
- loopback ElTorito (loop)228+368000
- #ls (ElTorito)/
- linux (ElTorito)/abr64ker.dat product=bootagent media_for_windows quiet
- initrd (ElTorito)/abr64ram.dat (ElTorito)/dat8.dat
- boot
- }
- menuentry "Acronis Snap Deploy 5 Standalone Utility" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/asd5s.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)208+154000
- #ls (ElTorito)/
- linux (ElTorito)/dat4.dat quiet
- initrd (ElTorito)/dat5.dat
- boot
- }
- menuentry "Acronis Snap Deploy 5 Master Image Creator" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/asd5m.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)208+146000
- #ls (ElTorito)/
- linux (ElTorito)/dat8.dat quiet
- initrd (ElTorito)/dat9.dat
- boot
- }
- menuentry "Acronis Snap Deploy 5 Agent" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/iso/asd5a.iso"
- search --set -f $isofile
- loopback loop $isofile
- echo mount the El Torito floppy image
- loopback ElTorito (loop)208+148000
- #ls (ElTorito)/
- linux (ElTorito)/dat16.dat quiet
- initrd (ElTorito)/dat17.dat
- boot
- }
复制代码
Multi Language code (for version 2017)
- PE
- - Wellcome test: Change value language=en to region code (zh_CN only need zh...)
复制代码
- ISO: Use region code (can found when change region from acronis website)
Edit file BOOTIA32.XML, BOOTX64.XML;
- Arguments="  lang=zh_CN; quiet"
复制代码
BOOTWIZ.CFG
- KERNEL dat10.dat lang=zh_CN force_modules=usbhid quiet
复制代码
Multi Language code (for version 2016) (thanks waterchu for ideas)
- PE
- REG.exe Add HKLM\Software\Acronis /f /v "language" /T REG_DWORD /D "13"
- ...............DWORD.............
- 1-ENGLISH; 11-BRAZIL; 13-CHINESE; 14-CHINESET; 8-CZECH; 6-DUTCH; 27-ESPANA; 2-GERMAN; 25-INDIAN; 15-ITALIAN; 9-JAPAN; 3-KOREAN; 5-POLISH; 19-PORTUGUESE; 0-RUSSIAN; 12-SPANISH; 17-FRENCH
复制代码
- ISO: Edit file BOOTIA32.XML, BOOTX64.XML;
- Arguments="  lang=13; quiet"
复制代码
BOOTWIZ.CFG
- KERNEL dat10.dat lang=13 force_modules=usbhid quiet
复制代码
If Extract ISO and boot with Grub4dos
- title Acronis True Image 2016
- find --set-root --ignore-floppies --ignore-cd /acronis/dat10.dat
- kernel /acronis/dat10.dat lang=13 vga=791 mbrcrcs=on force_modules=usbhid quiet
- initrd /acronis/dat11.dat /acronis/dat12.dat
复制代码
If try with Recovery Manager (F11), only need extract folder Recovery Manager from original ISO
- ..........Grub2 (Boot with grub2 can use Recovery Manager)
- menuentry "Acronis True Image Home 2016 - F11" {
- linux /Recovery\ Manager/kernel64.dat lang=13 vga=791 mbrcrcs=on force_modules=usbhid quiet
- initrd /Recovery\ Manager/ramdisk_merged64.dat /Recovery\ Manager/DAT12.DAT
- boot
- }
- ....................Grub4dos............
- title Acronis True Image Home 2016 - F11
- find --set-root --ignore-floppies --ignore-cd /Recovery\ Manager/kernel.dat
- kernel /Recovery\ Manager/kernel64.dat lang=13 vga=791 mbrcrcs=on force_modules=usbhid quiet
- initrd /Recovery\ Manager/ramdisk_merged64.dat /Recovery\ Manager/DAT12.DAT
复制代码
Link:
Acronis True Image 2019 PE
https://mega.nz/#!voBQRQTT!uOL8i ... crkvLjQcArv84kATico
Acronis True Image 2018 PE
https://pan.baidu.com/s/1eRWSw50
Acronis True Image 2018 ISO
https://pan.baidu.com/s/1o8rAOo6
Acronis True Image 2017 PE
http://pan.baidu.com/s/1i4JgeTf
Acronis True Image 2017 ISO
http://pan.baidu.com/s/1jIxF8cY
http://pan.baidu.com/s/1skH3RLb
Acronis True Image 2016 PE(CN)
http://pan.baidu.com/s/1c2zRdTY
Acronis True Image 2016 ISO (CN)
http://pan.baidu.com/s/1o8sfhNW
Activator nova-s for installer version
http://pan.baidu.com/s/1qY2Tg5Y
Acronis Backup 11.7 PE&ISO (CN - Build 50064)
https://pan.baidu.com/s/1qYr25Uc
https://pan.baidu.com/s/1jHQAxL0
https://pan.baidu.com/s/1c1HZjSs
Acronis Backup 12 Beta for PE (English)
http://pan.baidu.com/s/1i5jS1sp
http://pan.baidu.com/s/1jIlStXs
For old acronis version, need replace new driver (Snapapi64.dll only for Acronis True Image 2015, Disk Director 2012x64 - delete old snapapi.dll, copy and rename snapapi64.dll to snapapi.dll)
http://pan.baidu.com/s/1kTD8Jnp
If you try use on real system, try to uninstall driver first. If 64bit, use Fltsrv64. Right Click on snapman_uninstall.inf, fltsrv_uninstall.inf and select Install. Also you can update snapman & Flisrv driver.
http://pan.baidu.com/s/1i3m80rN
Some English version
Acronis Disk Director 12 ISO (English - Build 3270)
http://pan.baidu.com/s/1i33vRRf
Acronis Snap deploy 5 mini version
- Master image: http://pan.baidu.com/s/1miuMLEo
- Standalone Utility: http://pan.baidu.com/s/1slwE4OX
- Agent: http://pan.baidu.com/s/1o8Hdz6q
-TIB shell: Open TIB file in windows explorer
http://pan.baidu.com/s/1sk9MvNn
Aomei Partition Assistant 6.5
http://pan.baidu.com/s/1bJxTp0
Try test and report! :D |
评分
-
查看全部评分
|