2024年9月17日

透過更改Registry的方式達成恢復舊版選單的功能。

 透過更改Registry的方式達成恢復舊版選單的功能。

2024年5月9日

Rufus - 輕鬆製作可開機的 USB 磁碟機

輕鬆製作可開機的 USB 磁碟機

2024年4月10日

[VBS] Winword 的增益集 (Addin)

 https://learn.microsoft.com/zh-tw/office/vba/api/word.addin

Word (AddIn) 物件


代表已安裝或未安裝的單一增益集。 AddIn 物件是 AddIns 集合的成員。 AddIns 集合包含所有增益集可不論是否目前載入 Microsoft Word。 AddIns 集合包含全域範本或 Word 增益集程式庫 (Wll) 顯示在 [ 範本與增益集] 對話方塊。

2024年4月2日

[CMD] IF EXIST FOLDER check

 if exist "FOLDER\" echo FOLDER exist

if exist "FILE" echo FILE or FOLDER exist

if exist "FOLDER\nul" echo not use

if exist "FILE\." echo also FILE exist

2024年3月27日

[WORD VBA] Paragraphs.Add

 Paragraphs.Add 會將 Paragraphs set 增加一個 paragraph, 但是返回的並不是新增的而是新增之前倒數一個 paragraph.

2024年3月25日

2024年3月13日

將目錄建立在虛擬磁碟機 - Subst

 建立路徑與磁碟機代號之間的關聯。

(all user)

REGEDIT4 

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices] 
"Z:"="\\??\\C:\\Documents and Settings\\All Users\\Shared Documents"

(personal)

SUBST [drive1: [drive2:]path]

SUBST drive1: /D


  drive1:        指定您要指派路徑的虛擬磁碟機。

  [drive2:]path  指定您要指派給虛擬磁碟機的實際

                 磁碟機與路徑。

  /D             刪除取代的 (虛擬) 磁碟機。


鍵入 SUBST 而不加任何參數,即可顯示目前虛擬磁碟機的清單。