在 Powershell 中我用来type -wait
观察日志文件的更新。
我想要一个上下文菜单项,可以打开 powershell 窗口和type -wait
目标文件。但我无法让它工作。
我已经尝试在 .reg 文件中对该命令进行各种排列:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\WatchFIle]
"MUIVerb"="&Watch File"
[HKEY_CLASSES_ROOT\*\shell\WatchFIle\command]
@="powershell.exe -Command {type -wait \"%V\"}"
但所发生的只是 Powershell 窗口短暂出现。
我究竟做错了什么?