作者:长不大的二楞子 | 来源:互联网 | 2023-09-04 14:39
在C#和Windows命令提示符下共有新手,所以请耐心等待。
这是我第一次编写代码来创建旨在更改注册表以及Chrome中的首选项的可执行文件。
首先要有一些背景知识。与我签约的公司的工程师使用的是一个名为Cadkey的旧程序,该程序用于查看自40年代以来该公司一直在制造的东西的文件。
众所周知,Chrome浏览器不再允许出于安全目的在浏览器中查看小程序和其他类型的文件,但是该公司的大多数工程师宁愿使用Chrome而不是IE。
因此,我承担了赋予他们通过“应用程序链接”打开文件的能力的任务,有些人也将其称为“自定义网址协议”,例如以下示例:
some file
这允许工程师在浏览器中单击文件名,然后在程序Cadkey中打开文件。
要完成此操作,我必须在用户注册表中注册密钥,并更改Chrome的首选项文件,以免它们被提醒他们该文件即将使用的小窗口打扰。 Windows命令提示符。后来我没问题,但老板希望这个过程尽可能顺利。
说了这么多,我就能用下面的代码来做到这一点:
using System;
using System.IO;
using microsoft.Win32;
using Newtonsoft.Json.Linq;
namespace CadkeyRegAndPrefs
{
class Program
{
static void Main()
{
try
{
RegistryKey hkCurUsr = Registry.CurrentUser.OpenSubKey("Software\\Classes",true);
// Create a subkey named cadkey under HKEY_CURRENT_USER.
RegistryKey cadkey = hkCurUsr.CreateSubKey("cadkey",true);
cadkey.Setvalue("","URL:cadkey Protocol");
cadkey.Setvalue("URL Protocol","");
// Create data for the defltIcn subkey.
RegistryKey cadkeyDefltIcn = cadkey.CreateSubKey("DefaultIcon",true);
cadkeyDefltIcn.Setvalue("","");
cadkeyDefltIcn.Setvalue("C:\\CK19\\Ckwin.exe","-1");
// Create data for the cadkeyShell subkey.
RegistryKey cadkeyShell = cadkey.CreateSubKey("shell",true);
RegistryKey cadkeyShellOpen = cadkeyShell.CreateSubKey("open",true);
// Create data for the cadkeyCommand subkey.
RegistryKey cadkeyCommand = cadkeyShellOpen.CreateSubKey("command",true);
cadkeyCommand.Setvalue("","");
cadkeyCommand.Setvalue("","cmd /V:ON /C \"SET r=%1 & start C:\\CK19\\Ckwin.exe !r:cadkey:=!\"");
// Retrieve path of the current user
string path = System.Environment.ExpandEnvironmentVariables("%userprofile%");
string pathToPrefs = path + "\\AppData\\Local\\Google\\Chrome\\User Data\\Default\\Preferences";
// Have to create a JObject of the json file
JObject jsOnObj= JObject.Parse(File.ReadAllText(pathToPrefs));
// Determine if the user has a protocol handler set and append cadkey set to false,otherwise,create node and set cadkey to false
var isExlcudedSchemes = jsonObj.SelectToken("protocol_handler.excluded_schemes");
if (isExlcudedSchemes != null)
{
jsonObj["protocol_handler"]["excluded_schemes"]["cadkey"] = false;
} else {
jsonObj.Add(new JProperty("protocol_handler",new JObject(
new JProperty("excluded_schemes",new JObject(
new JProperty("cadkey",new JObject()))))));
jsonObj["protocol_handler"]["excluded_schemes"]["cadkey"] = false;
}
// set the variable output and write the json content to the preferences file for Chrome
string output = Newtonsoft.Json.JsonConvert.SerializeObject(jsonObj,Newtonsoft.Json.Formatting.Indented);
File.WriteAllText(pathToPrefs,output);
// Let the end user know that the operation was successful
Console.WriteLine("Cadkey registration installed successfully");
Console.WriteLine("\nPress any key to exit");
Console.ReadKey();
}
catch (Exception e)
{
Console.WriteLine("{0} Exception caught.",e.ToString());
}
}
}
}
工程师有一些引导程序模式,可以为他们提供下载exe的说明,然后双击该exe安装注册表项并更改Chrome偏好设置。
那是什么问题?该代码将密钥注册到用户的注册表,并更改Chrome偏好设置文件,并在最后通知用户成功。
问题在于某些文件的名称中有一个空格,这会使Cadkey提示用户找不到该文件。主要是因为在空间的位置出现了“%20”。我猜Cadkey是在urlencoding不在设计中的时候制作的。
我尝试通过命令提示符更改URL,就像我从传递给命令提示符的参数中删除字符串“ cadkey:”一样。
cmd /V:ON /C \"SET r=%1 & start C:\\CK19\\Ckwin.exe !r:cadkey:=! & !r:%20= !\"
我尝试过:
cmd /V:ON /C \"SET r=%1 & start C:\\CK19\\Ckwin.exe !r:cadkey:=! | !r:%20= !\"
我尝试过:
cmd /V:ON /C \"SET r=%1 & start C:\\CK19\\Ckwin.exe !r:cadkey:=! & !r:%%20= !\"
我尝试使用另一个变量
cmd /V:ON /C \"SET r=%1 & !r:cadkey:=! & SET s=r start C:\\CK19\\Ckwin.exe !s:%20= !\"
虽然命令成功替换了字符串“ cadkey:”-我尚未同时替换两个字符串。我已经尝试了太多东西,但是我是一个新手,任何帮助将不胜感激。
预先感谢
昨晚与老板一起工作后,我们终于找到了答案,如下:
更改
cadkeyCommand.SetValue("","cmd /V:ON /C \"SET r=%1 & start C:\\CK19\\Ckwin.exe !r:cadkey:=!\"");
收件人:
cadkeyCommand.SetValue("","cmd /V:ON /C \"SET r=%1 & SET s=!r:cadkey:= ! & SET t=!s:%%20= ! & start C:\\CK19\\Ckwin.exe !t!\"");
结果是删除了字符串“ cadkey:”和字符串“%20”,并用空格替换了字符串“%20”,这导致将以下内容传递给cadkey变量“ t”