我尝试使用此版本Windows附带的其他锁定功能在Windows 8.1 IND中设置自定义shell。
我可以在锁定管理器中成功创建所需条目,并通过c#和WMI打开和关闭自定义shell没问题。
因为我们正在计划部署到大量设备,所以我也想要有问题地应用自定义shell设置。
我使用WMI Code Generator来帮助我访问和设置正确的值。
但是,在尝试运行生成器生成的代码时,WMI代码生成器和我的C#应用程序都崩溃了。
Unhandled Exception: System.ArgumentOutOfRangeException: Specified argument was
out of the range of valid values.
Parameter name: path
at System.Management.ManagementObject.ManagementObjectCTOR(ManagementScope sc
ope, ManagementPath path, ObjectGetOptions options)
at WMISample.CallWMIMethod.Main()
代码示例:
public static void Main()
{
try
{
ManagementObject classInstance =
new ManagementObject("root\\StandardCimv2\\embedded",
"WESL_UserSetting", null);
// Obtain in-parameters for the method
ManagementBaseObject inParams =
classInstance.GetMethodParameters("SetCustomShell");
// Add the input parameters.
inParams["DefaultAction"] = 3;
inParams["Shell"] = "C:\\Dash\\someapp.exe";
inParams["Sid"] = "S-1-5-21-2560287794-1129801719-3036876794-1001";
// Execute the method and obtain the return values.
ManagementBaseObject outParams =
classInstance.InvokeMethod("SetCustomShell", inParams, null);
// List outParams
Console.WriteLine("Out parameters:");
Console.WriteLine("ReturnValue: " + outParams["ReturnValue"]);
}
catch(ManagementException err)
{
MessageBox.Show("An error occurred while trying to execute the WMI method: " + err.Message);
}
}
documentation中没有提到路径。任何人都可以建议代码为什么不设置自定义shell?