Abstract
ThinkVantage(AccessIBM)為ThinkPad特有的功能鍵,用來呼叫ThinkVantage軟體,但這些軟體都有熱鍵相對應,是否可以重新定義ThinkVantage鍵來啟動自己的應用程式呢?

Introduction
ThinkVantage(AccessIBM)有兩個功能:
1.剛開機時用來呼叫R&R。
2.進入Windows後用來呼叫ThinkVantage工具選單。

若沒用到這兩個功能,大大的ThinkVantage就浪費了,是否能自行定義呢?以下轉貼
http://forum.notebookreview.com/showthread.php?t=171644的方法,我個人是用ThinkVantage啟動我最常用的7Zip。

Solution
There is a way to make the ThinkVantage button open programs, open multiple programs, or hibernate after completing a clean install. Thanks to Bighaugs (who started the thread and was the original poster for the question) and Erik from thinkpads.com (who explained exactly what to do to run programs) and Hellbore and Cherude (who expanded on the idea to make the button control hibernate and possibly more). I’m only compiling the infomation they described in one place in case someone wants to try this and add functionality to the big blue button. I’ll try to explain Erik and Hellbore’s instructions here in case Mikeeeeee’s utility find doesn’t work or you want an alternative. You can see the original instructions posted HERE
One advantage of creating a batch file and registry key is that you are able to open multiple programs with the push of just one button. Also, If you have the 'Thinkpad Power Manager' software installed, you can use the batch file to power off the display and lock the workstation (same as Fn + F3). You can even create a batch file to make the laptop hibernate.
The blue button can be programmed to run any executable file as long as you have the ‘hotkey utility’ installed. It’s owned by the hotkey features located in the registry at: HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY. Follow the instructions below to set it up to open notepad – if you want to use the Thinkvantage button to open a software program or hibernate, skip down to the next set of instructions:
_____________________________________________________________________
Make The ThinkVantage Button Open Notepad
Notepad.exe is the easiest to set up to open because you don't need to create batch files. You are only creating registry key (8001) that doesn't exist anymore because you performed a clean install.
1. Open notepad (Start > Accessories > Notepad)
2. Paste the following text:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]
"File"="C:\\Windows\\notepad.exe"
3. Save the file anywhere and name it whatever you want, but change the file extension from “.txt” to “.reg”
4. Open the .reg file you just saved and…walla, use the big blue button to open the notepad program.
_____________________________________________________________________
Make The ThinkVantage Button Open Any Program
If you want to open any .exe program, you need to create a batch file in order to make it open smoothly without error. Follow these steps to create a batch file, then create a registry entry to make the ThinkVantage button point to that program:
1.Open notepad (Start > Accessories > Notepad)
2.Paste the following text (I used the path to IE, but you can replace this with any path you want):
@echo off
cd "C:\Program Files\Internet Explorer"
start iexplore
cls
3.Name the file as “runapp.bat”
4.Save the file in the following location: C:\
*Now you need to create the registry code to point to the above batch file*
5.Open notepad (Start > Accessories > Notepad)
6.Paste the following text that points to the batch file just created:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]
"File"="c:\\runapp.bat"
7.Save the file anywhere and name it whatever you want, but change the file extension from “.txt” to “.reg”
8.Open the .reg file you just saved and use the big blue button to open the.exe program you specified in step 2.
If you want to change the program that opens with the blue ThinkVantage button, you only need to edit the batch file and not the registry. Right click on the .bat file and select ‘edit’. Just follow the pattern by changing the path to the application you want next to ‘cd’ and make sure to add the name of the application after the word ‘start’
_____________________________________________________________________
Make The ThinkVantage Button Open Multiple Programs Simultaneously
You can make the ThinkVantage button open multiple programs at the same time. Follow the instructions above, except at step 2 use the following batch code (replacing the path for whatever programs you want to control):
@echo off
cd "C:\Program Files\Internet Explorer"
start iexplore
cd "C:\Program Files\Microsoft Office\OFFICE12"
start WINWORD
cls
You get the idea if you can follow the pattern and keep adding as many applications as you want. They will all open simultaneously.
_____________________________________________________________________
Make The thinkVantage Button Control Hibernate
(from post #27) If you want to make the ThinkVantage button put the laptop into hibernate mode, you need to create a batch file just like above. Follow these steps to create a batch file, then create a registry entry to make the ThinkVantage button point to that program:
1.Open notepad (Start > Accessories > Notepad)
2.Paste the following text:
@echo off
shutdown /h
3.Name the file as “hibernate.bat”
4.Save the file in the following location: C:\
*Now you need to create the registry code to point to the above batch file*
5.Open notepad (Start > Accessories > Notepad)
6.Paste the following text that points to the batch file just created:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]
"File"="c:\\hibernate.bat"
7.Save the file anywhere and name it whatever you want, but change the file extension from “.txt” to “.reg”
8.Open the .reg file you just saved and use the big blue button to open the.exe program you specified in step 2
Note: These instructions are only valid for Windows Vista. Windows XP does not have the shutdown hibernate command.
_____________________________________________________________________
Make The thinkVantage Button Control Shutdown and Turn Off
(from post #30) If you want to make the ThinkVantage button put the laptop into shut down and turn off, you need to create a batch file. Follow these steps to create a batch file, then create a registry entry to make the ThinkVantage button point to that program:
1.Open notepad (Start > Accessories > Notepad)
2.Paste the following text:
@echo off
shutdown /s /t 5
Obs: t 5 means 5 seconds, the laptop will start to shut down and turn off after 5 seconds you press the ThinkVantage button. You can increase/decrease this time as you wish.
3.Name the file as “off.bat”
4.Save the file in the following location: C:\
*Now you need to create the registry code to point to the above batch file*
5.Open notepad (Start > Accessories > Notepad)
6.Paste the following text that points to the batch file just created:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]
"File"="c:\\off.bat"
7.Save the file anywhere and name it whatever you want, but change the file extension from “.txt” to “.reg”
8.Open the .reg file you just saved and use the big blue button to open the.exe program you specified in step 2
Note: These instructions are only valid for Windows Vista. Windows XP does not have the shutdown hibernate command.
_____________________________________________________________________
If you have the 'Thinkpad Power Manager' software installed, you can also use the batch file to power off the display and lock the workstation (same as Fn + F3) by using the following code:
@echo off
cd "C:\Program Files\ThinkPad\Utilities"
start PWMOSDV
rundll32 user32.dll, LockWorkStation
cls
Keep in mind that the above only works for 32-bit Vista. If you are using 64-bit Vista OS, the path will be slightly different. For 64-bit OS, you should replace (cd "C:\Program Files\ThinkPad\Utilities") with (cd "C:\Program Files (x86)\ThinkPad\Utilities").
_____________________________________________________________________
If you want to edit the registry, you can go to Start and type “regedit” in the search field. Once there, expand the folders to find [HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]. Right click ‘file’ and select ‘Modify…’ From there, you can point the value data to any executable program (like Notepad) or batch file you want.
In other words, you can create a batch file to run an application and hibernate and keep them in the "C:\" location. Use the steps above to point to whatever you want the button to control by entering c:\\runapp.bat or c:\\hibernate.bat in the registry.

(轉貼) 如何重新定義Thinkvantage(AccessIBM)按鍵的功能? (NB) (ThinkPad) (OS) (Windows)相关推荐

  1. (轉貼) LCD入門常識

    Abstract一些TFT-LCD的入門常識,雖然有些過時,對於選購LCD時,應該還是有幫助. Introduction LCD 相關知識 顯示器這種東西是比較級的,在某一家店看完一款顯示器,過條馬路 ...

  2. (轉貼) 資訊相關科系畢業的學生,未來會是什麼樣子?(Misc)

    Abstract 一篇講的很中懇的文章,也道盡台灣產業的轉變. Introduction 轉貼自Mr.Firday的資訊相關科系畢業的學生,未來會是什麼樣子? 請注意:本篇文章只是試圖提出問題與一些個 ...

  3. dataTable.NET的column index的不同定義

    dataTable.NET是一個jQuery的plug in 第三方的library, 用來實現web page中table的interaction controls, 另外最近有在用的還有Teler ...

  4. android 仿ios timepicker,android:TimePicker仿照IOS時間選擇器,可自定義選擇器

    背景: 項目要求寫一個選擇器:不僅僅是單純的時間,還包括自定義部分. 搜了很久,搜出來只用一個自定義view.java類,再簡單封裝下的選擇器: 貼下源碼:public class PickerVie ...

  5. (轉貼) 太空探索/液態水存在?火星南極有廣大冰層 可能有生命 (News)

    轉貼自http://tw.news.yahoo.com/article/url/d/a/070317/17/bofx.html 歐洲太空總署的火星快車號外太空探測船,最近傳回火星上的最新影像,證實火星 ...

  6. (轉貼) Ubuntu 7.10 Linux on ThinkPad X61 安裝筆記 (NB) (ThinkPad) (X61) (Linux) (Ubuntu)

    Abstractmezl在Mobile01所發表的安裝心得,我本人也還沒試過,提供給有需要的人參考. Introduction 轉貼自http://www.mobile01.com/topicdeta ...

  7. (轉貼) 解決 AppLocale 造成的程式亂碼現象 (OS) (Windows)

    Abstract AppLocale是為了解決亂碼而使用的小工具,卻可能因為這個工具反而造成亂碼. Introduction 轉貼自http://vfp.sunyear.com.tw/viewtopi ...

  8. 影像處理之空間及頻率定義域

    http://zip.nvp.com.tw/forum.php?mod=viewthread&tid=1499&extra=page%3D11 影像處理可分為空間定義域(Spatial ...

  9. (轉貼) 「TCP/IP Patcher」破解Windows XP SP3連線數限制 (OS) (Windows)

    Abstract 如果你有安裝了Windwos XP SP3修補程式,可能會發現XP連線數限制重回10,如果你有增加連線數的需求,可以使用這個「TCP/IP Patcher」小軟體來處理一下,將他設定 ...

最新文章

  1. 解决Pycharm中SystemError报错
  2. Shell命令-管理与性能监视之strace、ltrace
  3. php百合网,来百合网直播,做最真实的自己
  4. QT的QTextLayout类的使用
  5. 这些Spring面试题,你都会了吗?
  6. 为什么java需要静态类_java – 为什么OOP中静态类的最佳实践有所不同?
  7. linux服务器程序开发,怎样搭建一个linux开发服务器
  8. python创建二维数组的方法_Python创建二维数组的正确姿势
  9. 如何解决mysql数据倾斜_什么是数据倾斜?如何解决数据倾斜?
  10. html中icon小图标大全,iconfont字体图标和各种CSS小图标
  11. 平安城市视频监控运维解决方案
  12. jQuery读书笔记
  13. 阿里云部署Java网站和微信开发调试心得技巧(下)
  14. 买传奇域名空间要注意什么?
  15. B站试用期刚过,被HR和大老板一起谈话,说我工作没任何问题,但今晚必须走人!...
  16. iphone长截图哪个软件好_这应该是目前为止,iPhone上最好的长截图工具
  17. 03-行为型设计模式
  18. Javaweb基础知识
  19. 快速搭建一款输入法(前端UI搭建)
  20. ActiveMQ安装与使用总结

热门文章

  1. 英语数学不好能学Java吗?
  2. 音乐疗法可缓解精神分裂症状
  3. SAP SD CMD_EI_API=>MAINTAIN 创建客户主数据
  4. Oracle一个语句多个left,oracle 多个 left join
  5. 什么是阿里云服务器?云服务器的优缺点
  6. 二分法、三分法的详解
  7. 市值缩水98%至3.53亿港元,达芙妮是如何走向末路的?
  8. 扫拖一体洗地机哪个品牌好、家用洗地机品牌介绍
  9. 技术族谱:从 草根娱乐 到 草根学习
  10. 一个野蛮生长的程序员