Windows XP 上保存的“运行”对话框的历史记录在哪里?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/169905/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 11:23:37  来源:igfitidea点击:

Where is the history of the 'run' dialogue saved on Windows XP?

windowswindows-xp

提问by Nick Stinemates

I want to write a script which cleans the 'run' dialogue automatically every log off. Where is the history stored?

我想编写一个脚本,在每次注销时自动清除“运行”对话框。历史记录存储在哪里?

回答by aku

From:

从:

How to Remove Individual Entries from Run Command History

如何从运行命令历史记录中删除单个条目

Where is the Run MRU (Most Recently Used) List?

The RUNMRU list is stored in the Windows Registry in the following location:

HKEY_CURRENT_USER\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ RunMRU\

Is There a Program to Delete Individual Entries from the RUNMRU List?

Many of my customers would rather not edit the Windows registry to remove these individual entries, so I setup a VBScript that you can download and run to delete individual commands from this list. Follow these instructions to download and use this program to clear unwanted entries from the Run Command history.

1) Click on the following link and download the EditRunMRUList.vbs script to your desktop

Download EditRunMRUList.vbs

Run MRU(最近使用)列表在哪里?

RUNMRU 列表存储在 Windows 注册表中的以下位置:

HKEY_CURRENT_USER\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ RunMRU\

是否有从 RUNMRU 列表中删除单个条目的程序?

我的许多客户宁愿不编辑 Windows 注册表来删除这些单独的条目,因此我设置了一个 VBScript,您可以下载并运行该脚本以从该列表中删除单个命令。按照这些说明下载并使用此程序从运行命令历史记录中清除不需要的条目。

1) 单击以下链接并将 EditRunMRUList.vbs 脚本下载到您的桌面

下载EditRunMRUList.vbs

回答by Vincent McNabb

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU

回答by Nick Stinemates

Never use registry, just use Win32 SH api to clean it.

永远不要使用注册表,只需使用 Win32 SH api 来清理它。