//.cs 文件类型,便于外部编辑时使用
// 引用必要的命名空间
using Microsoft.Win32;
// Quicker将会调用的函数
public static void Exec(Quicker.Public.IStepContext context)
{
//var oldValue = context.GetVarValue("varName"); // 读取动作里的变量值
//MessageBox.Show(oldValue as string);
//context.SetVarValue("varName", "从脚本输出的内容。"); // 向变量里输出值
//MessageBox.Show("Hello World!");
object objResult = new object();
RegistryKey hkSoftWare = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Tencent\PlatForm_Type_List\1",false);
objResult = hkSoftWare.GetValue("TypePath");
hkSoftWare.Close();
context.SetVarValue("QQPath", objResult.ToString());
//MessageBox.Show(objResult.ToString());
}