2021年12月1日

ventoy改開機畫面 windows開機執行及差異備份

ventoy改變開機畫面

參考文章:https://webnas.bhes.ntpc.edu.tw/wordpress/archives/23125

 參考文章:https://www.ventoy.net/cn/plugin_theme.html

ventoy基於grub2,到網址:https://www.gnome-look.org/browse?cat=109&ord=latest 

下載themes,解壓縮到ventoy磁碟下的ventoy資料夾中,在ventoy.json檔案中加入設定

"theme": {
        "file": "/ventoy/themes/monterey-grub-theme/theme.txt",
        "gfxmode": "1920x1080",
        "display_mode": "GUI",
        "serial_param": "--unit=0 --speed=9600",
        "ventoy_left": "5%",
        "ventoy_top": "95%",
        "ventoy_color": "#eff0f1",
           },


ventoy 開機預設選項

在ventoy資料夾下編輯ventoy.json檔案加入以下內容:

"control": [
        { "VTOY_MENU_TIMEOUT": "10" },
        { "VTOY_DEFAULT_IMAGE": "/vhd/win10_chd_work.vhdx" }
    ]


選單列表

"image_list": [
        "/os/USBOX_V6.iso",
        "/os/win10/work.vhdx",
        "/os/win10/chd.vhdx"
    ],

選單別名

"menu_alias": [
        {
            "image": "/os/USBOX_V6.iso",
            "alias": "維護用 PE"
        },
        {
            "image": "/os/win10/work.vhdx",
            "alias": "啟動 Win10"
        },
        {
            "image": "/os/win10/chd.vhdx",
            "alias": "啟動 Win10 還原"
        }
    ],

選單加密 

"password": {
        "menupwd": [
            {
                "file":"/os/win10/chd.vhdx",
                "pwd":"txt#password"
            }
        ]
    } 

windows vhd差異備份

以最高權限執行命令視窗,輸入下列指令

diskpart

create vdisk file="d:\vhd\xxxx.vhd" parent="d:\vhd\source.vhd"

 

windows開機執行

Windows 鍵 + R,輸入 shell:startup,然後選取 [確定]。這會開啟 [啟動] 資料夾。
把要執行的程式拷貝到這裡,就會自動執行。

@echo off

copy d:\vhd\base.vhdx d:\vhd\work.vhdx

shutdow -r -t 0 -f

 

擴容

select vdisk file="目標檔名"
list vdisk
expand vdisk maximum=大小(G,*1024)
attach vdisk
list volume
select volume 分割區編號
extend
list volume
detach vdisk
exit

沒有留言: