通過 Windows 資源管理器開啟檔案

在指令碼內部,使用第一行儲存第一個變數(在本例中為%1%),並帶有要處理的名稱。示例:OpenWithFile = %1%

通過 Windows 開啟帶有此指令碼的檔案後(右鍵單擊 MS Windows 上的任何檔案並選擇“開啟方式…”然後選擇指令碼的編譯版本,例如 script.exe) 所選檔案的名稱將為儲存在此變數中,因此,指令碼將能夠使用它。例:

OpenWithFile = %1%
if OpenWithFile !=
{
FileRead, content, %OpenWithFile%
msgbox %content%
return
}