explorer

[IE8]运用Internet Explorer Administration Kit 8产生自定风格与功能的IE8安装档

匿名 (未验证) 提交于 2019-12-03 00:03:02
运用Internet Explorer Administration Kit 8产生我的风格与功能IE8安装档,也许此法也可以作为备份自己电脑IE8各种设定的方式 Internet Explorer Administration Kit(以下简称 IEAK )可以透过简单的设定步骤,产生自己专属风格与功能的IE8安装程序,接着我们来一步步实践 首先,到微软的官方网站下载Internet Explorer Administration Kit 8 http://www.microsoft.com/downloads/details.aspx?FamilyID=0be39082-e9c6-4f6b-a38e-cb4e284cf987&displaylang=en 根据您的需求下载不同语系的IEAK,假如像我ㄧ样英文不太好的,可以下载繁体中文 WIN32_XPchtieak.msi 下载完成后,在安装IEAK前,您的电脑要先安装Internet Explorer 8才能使用IEAK 安装 IEAK 安装完成后,可以在开始->程序集->Windows IEAK 8 点选 Internet Explorer 自订精灵 8 开始制作 自我风格的IE8安装档 接着这边就是重点啦,选择自己想要封装的功能进去,而这边我只勾选 加速器 的部分作为 封装的范例 接着会做版本同步的检查

js 获取浏览器名字版本

匿名 (未验证) 提交于 2019-12-02 23:47:01
// 获取浏览器信息 function getExplorerInfo() { let explorer: any = window.navigator.userAgent; explorer = explorer.toLowerCase(); //ie if (explorer.indexOf('msie') >= 0) { let ver = explorer.match(/msie ([\d.]+)/)[1] || ''; return { name: 'IE', version: ver }; } //firefox else if (explorer.indexOf('firefox') >= 0) { let ver = explorer.match(/firefox\/([\d.]+)/)[1] || ''; return { name: 'Firefox', version: ver }; } //Chrome else if (explorer.indexOf('chrome') >= 0) { let ver = explorer.match(/chrome\/([\d.]+)/)[1] || ''; return { name: 'Chrome', version: ver }; } //Opera else if (explorer.indexOf(

【Windows 10】

匿名 (未验证) 提交于 2019-12-02 23:43:01
文章目录 Windows 10 错误 应用商店错误 系统更新错误 与这些错误代码相关联的错误消息 激活 win10 专业版 运行命令 psr.exe mspaint.exe ntsd.exe autorun.inf 禁止程序运行 软件注册码 Other WPS全角、半角转换 HTML转换为PDF Windows 10 错误 应用商店错误 系统更新错误 Microsoft Update Catalog (没啥用) 修复 Windows 更新错误 与这些错误代码相关联的错误消息 错误代码 错误消息 0x800F0906 无法下载源文件。 使用“源”选项指定还原该功能所需的文件的位置。 有关指定源位置的详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkId=243077。 DISM 日志文件可在 C:\Windows\Logs\DISM\dism.log 中找到Windows 无法完成所请求的更改。 Windows 无法连接到 Internet 下载所需的文件。 请确保您已连接到 Internet,然后单击“重试”,再试一次。安装一个或多个角色、角色服务或功能失败。 无法找到源文件。 再次尝试在新的“添加角色和功能向导”会话中安装角色、角色服务或功能,然后在向导的“确认”页上,单击“指定备用源路径”,以指定安装所需的源文件的有效位置。

Open Windows Explorer directory, select a specific file (in Delphi)

心已入冬 提交于 2019-12-02 23:30:16
I have a procedure to open a folder in Windows Explorer that gets passed a directory path: procedure TfrmAbout.ShowFolder(strFolder: string); begin ShellExecute(Application.Handle,PChar('explore'),PChar(strFolder),nil,nil,SW_SHOWNORMAL); end; Is there a way to also pass this a file name (either the full file name path or just the name + extension) and have the folder open in Windows Explorer but also be highlighted/selected? The location I am going to has many files and I need to then manipulate that file in Windows. Yes, you can use the /select flag when you call explorer.exe : ShellExecute(0

清除扩展名默认打开方式

匿名 (未验证) 提交于 2019-12-02 22:56:40
@echo off setlocal enabledelayedexpansion set "ext=%~x1" :loop if defined ext set "ext=!ext:"=!" if defined ext goto ok echo 如果你不知道文件的扩展名,关闭批处理然后把文件拖到批处理文件的图标上。 set /p "v=请输入扩展名(如txt)然后回车:" for /f "delims=" %%i in (".!v!") do set "ext=%%~xi" goto loop :ok echo 扩展名:!ext! pause reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\!ext!" /f reg query "HKCR\!ext!" /ve|find /i "!ext:~1!_auto_file">nul if not errorlevel 1 ( reg delete "HKCR\!ext!" /ve /f reg delete "HKCR\!ext:~1!_auto_file" /f ) taskkill /im explorer.exe /f start %windir%\explorer.exe pause 原文:https://www

Get the field on which the explorer window is sorted

三世轮回 提交于 2019-12-02 22:27:50
问题 I would like to know if there is a way to know how the files in a Windows Explorer window are sorted. Kind of having the "ORDER BY" clause of the window. Example : "Name ascending" or "Date Modified Descending". This question is NOT about windows' name-sorting algorithm, but about user-defined sort criteria of a specific open Windows Explorer window. The goal is, when I double-click on an image in Windows Explorer, to start my program (no problem there), and to find which were the previous

How can I access a text file in the project explorer “read, write” which is not in the isolated storage in Windows Phone 7?

杀马特。学长 韩版系。学妹 提交于 2019-12-02 22:12:00
问题 How can I access a text file in the project explorer "read, write" which is not in the isolated storage in Windows Phone 7? I want it to be in the project explorer for me and i don't want it to be in the isolated storage .. got the point? thx 回答1: I found some resources that useful for you. Read File var resource = System.Windows.Application.GetResourceStream(new Uri("textfile.txt", UriKind.Relative) Write File using (System.IO.StreamWriter writer = new System.IO.StreamWriter(fileName, true))

Is there something similar for emacs like vims's NERDtree

大兔子大兔子 提交于 2019-12-02 14:18:06
For vim there is a filesystem explorer called NERDtree: https://github.com/scrooloose/nerdtree Surely an alternative or superior package exists for Emacs? I prefer dirtree (screenshot below) by Ye Wenbin. It feels pretty close to NERDTree / the TextMate drawer. It took me a few minutes of trial and error to figure out the dependencies, so take a look at the install instructions (and a few minor edits to the source) I've got in this repo . You can try NeoTree . https://github.com/jaypei/emacs-neotree Screenshot: Have you looked at Speedbar ? Who needs any tree, when you have the mighty ido-mode

Get the field on which the explorer window is sorted

只谈情不闲聊 提交于 2019-12-02 12:37:26
I would like to know if there is a way to know how the files in a Windows Explorer window are sorted. Kind of having the "ORDER BY" clause of the window. Example : "Name ascending" or "Date Modified Descending". This question is NOT about windows' name-sorting algorithm, but about user-defined sort criteria of a specific open Windows Explorer window. The goal is, when I double-click on an image in Windows Explorer, to start my program (no problem there), and to find which were the previous and next images (for my program's previous and next buttons), as it was in the explorer window. Do you

How can I access a text file in the project explorer “read, write” which is not in the isolated storage in Windows Phone 7?

雨燕双飞 提交于 2019-12-02 07:44:44
How can I access a text file in the project explorer "read, write" which is not in the isolated storage in Windows Phone 7? I want it to be in the project explorer for me and i don't want it to be in the isolated storage .. got the point? thx likewer I found some resources that useful for you. Read File var resource = System.Windows.Application.GetResourceStream(new Uri("textfile.txt", UriKind.Relative) Write File using (System.IO.StreamWriter writer = new System.IO.StreamWriter(fileName, true)) { writer.Write("Write some text here"); } More information: read file in C# read text file in