「Free Registry Jump – 跳转到指定注册表」的评论 http://inloveinparis.com/free-registry-jump/ 分享免费、小巧、实用、有趣、绿色的软件 Sat, 17 Nov 2012 13:14:08 +0000 hourly 1 https://wordpress.org/?v=6.8.1 评论者:ccaiai http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-133886 Sat, 17 Nov 2012 13:14:08 +0000 http://inloveinparis.com/free-registry-jump/#comment-133886 回复给 RobertL

@RobertL,
怎么设置的?指点下,谢谢啦

]]>
评论者:SpikeKnox http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123949 Mon, 13 Aug 2012 11:08:13 +0000 http://inloveinparis.com/free-registry-jump/#comment-123949 07年的时候写过个批处理,也是这个功能.

用过 sysinternals 的 regjump
就用BAT来写了一把,
但缺点是不能定位到具体的值。
——————————————————–
@Echo OFF
::
:: BatName: OpenReg.bat
:: Version: 0.1
:: Purpose: 注册表快速定位
::
:: Usage: OpenReg [path]
:: example: OpenReg HKLM\Software\Microsoft\Windows
::
:: Code by SpikeKnox 2007.01.31
::

rem Show help
If [%1]==[/?] (Type “%~f0” | findstr “^::” && Goto :EOF)

:OpenReg
SetLocal EnableDelayedExpansion
rem %1 要定位的路径(可选,为空时将regedit定位到根目录)
If NOT [%1]==[] (

Set tag=我的电脑\%1
Set “tag=!tag:”=!”

rem 缩写路径转换
Set “tag=!tag:HKCR\=HKEY_CLASSES_ROOT\!”
Set “tag=!tag:HKCU\=HKEY_CURRENT_USER\!”
Set “tag=!tag:HKLM\=HKEY_LOCAL_MACHINE\!”
Set “tag=!tag:HKU\=HKEY_USERS\!”
Set “tag=!tag:HKCC\=HKEY_CURRENT_CONFIG\!”

Set tag=”!tag!”

) Else (

Set “tag=我的电脑”

)

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit /v LastKey /d %tag% /f >NUL
Start regedit

SetLocal DisableDelayedExpansion
Goto :EOF
———————————————————————-

]]>
评论者:脑缺痒 http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123379 Wed, 08 Aug 2012 10:57:11 +0000 http://inloveinparis.com/free-registry-jump/#comment-123379 回复给 rodall1

@rodall1, Offline Explorer

]]>
评论者:rodall1 http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123365 Wed, 08 Aug 2012 05:57:54 +0000 http://inloveinparis.com/free-registry-jump/#comment-123365 有什么软件可以把网站下载,然后断网后还可以浏览的??

]]>
评论者:大马哈鱼 http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123343 Wed, 08 Aug 2012 03:40:49 +0000 http://inloveinparis.com/free-registry-jump/#comment-123343 一向用RegEditPlus~~~~

]]>
评论者:泡尼姑 http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123321 Wed, 08 Aug 2012 01:25:46 +0000 http://inloveinparis.com/free-registry-jump/#comment-123321 已经很少动注册表了,现在需要动注册表的很少了吧。

]]>
评论者:tonyjian http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123317 Wed, 08 Aug 2012 00:56:17 +0000 http://inloveinparis.com/free-registry-jump/#comment-123317 还是Registry Workshop

]]>
评论者:大眼仔 http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123307 Tue, 07 Aug 2012 14:39:51 +0000 http://inloveinparis.com/free-registry-jump/#comment-123307 绿色汉化版的己经出来喽,喜欢的可以到这里下载:
百度网盘:
http://pan.baidu.com/netdisk/singlepublic?fid=912889_3067261483

华为网盘下载:
http://dl.dbank.com/c0edmeogj1

哎,可怜的浙江,在刮台风啊,我勒个去,我就在台风附近哇~

]]>
评论者:keeds http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123305 Tue, 07 Aug 2012 14:37:13 +0000 http://inloveinparis.com/free-registry-jump/#comment-123305 ;AHK脚本,来自AHK快餐店,稍微做了些修改
;■选中文字,然后按下Win + J 打开对应注册表路径
#j::
send ^c
clipwait
StringReplace, clipboard, clipboard, \, \, All
StringReplace, clipboard, clipboard, \\, \, All
StringReplace, clipboard, clipboard, hkcu, HKEY_CURRENT_USER, All
StringReplace, clipboard, clipboard, hkcr, HKEY_CLASSES_ROOT, All
StringReplace, clipboard, clipboard, hklm, HKEY_LOCAL_MACHINE, All
RegWrite, REG_SZ, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Applets\Regedit, LastKey, 计算机\%clipboard%
run regedit
return

]]>
评论者:olfav http://inloveinparis.com/free-registry-jump/comment-page-1/#comment-123299 Tue, 07 Aug 2012 13:31:44 +0000 http://inloveinparis.com/free-registry-jump/#comment-123299 Total Command有个插件,可以实现类似的功能,将注册表的路径像普通的文件夹路径一样处理。

]]>