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. 这届 AI 预测欧洲杯冠军,通通被打脸
  2. 【机器学习】粗糙集属性约简算法与mRMR算法的本质区别
  3. “云原生”为何而生?
  4. python抓取网站图片_利用python抓取网站图片
  5. TFN推出2.5G传输分析仪D240S 等待您来验证
  6. 阿里云认证(ACA/ACP/ACE)的分类以及官网价格
  7. 比特率控制模式ABR、VBR、CBR
  8. 英文论文的proposal怎么写?
  9. 2022 火狐插件 Tamper Data 下载安装使用教程
  10. 使用CMSTP绕过AppLocker
  11. 关于Nginx mmap(MAP_ANON|MAP_SHARED, 314572800)报错
  12. 【Caffe】简单介绍
  13. windows下对python的pip更新到最新版本
  14. Java的支持率让小伙伴们都惊呆了
  15. 【OBS】OBS预览
  16. SpringBoot后端生成漂亮美观的验证码图片
  17. 斯坦福SCI论文写作课笔记(一)
  18. 数据恢复工具什么牌子的好
  19. 假货防不胜防?LV母公司将推区块链防伪平台
  20. jd实习生面试过程记录

热门文章

  1. 视频平台。。。。 。
  2. ie10和ie11支持html5吗,ie11好用吗?ie10和ie11的区别
  3. 互联网产品之网站活动策划
  4. 世界顶级户外运动品牌
  5. XMUOJ·小H的塔防游戏2
  6. 将jpg文件转换成bgr二进制文件
  7. 怎样用云服务器搭建一款可以多人联网的传奇手游
  8. CISCO路由器初始化必备安全命令。
  9. 传感器实验报告(第五次)
  10. 【KKT】∇f(x)+λ∇g(x)=0中λ的讨论