0

我检查了周围,甚至使用/调整了几种解决方案,包括以下解决方案,但我不断收到两个错误之一。我要么得到

************** Exception Text **************
System.Runtime.InteropServices.COMException (0x80070422)
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
at System.Management.ManagementObject.InvokeMethod(String methodName, ManagementBaseObject inParameters, InvokeMethodOptions options)
at Check_In_Tool.checkInForm.CreateRestorePoint() in C:\Users\Greg\Source\Repos\Check In Tool\Check In Tool\Check In Tool\Form1.cs:line 268
at Check_In_Tool.checkInForm.button1_Click(Object sender, EventArgs e) in C:\Users\Greg\Source\Repos\Check In Tool\Check In Tool\Check In Tool\Form1.cs:line 64
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam))

或者

RPC 服务器不可用。(来自 HRESULT 的异常:0x800706BA)

我目前使用的代码如下:

try
{
    // select local computer
    ManagementScope ManScope = new ManagementScope("\\\\localhost\\root\\DEFAULT");
    // create system restore point
    ManagementPath ManPath = new ManagementPath("SystemRestore");
    // select default options
    ObjectGetOptions ManOptions = new ObjectGetOptions();
    // create management class with previous options
    ManagementClass ManClass = new ManagementClass(ManScope, ManPath, ManOptions);
    // load function parameters
    ManagementBaseObject ManBaseObject = ManClass.GetMethodParameters("CreateRestorePoint");
    // description
    ManBaseObject["Description"] = "Check-In Tool Restore Point";
    // type of the restore point
    ManBaseObject["RestorePointType"] = 0;
    // type of the event
    ManBaseObject["EventType"] = 100;

    ManagementBaseObject OutParam = ManClass.InvokeMethod("CreateRestorePoint", ManBaseObject, null);

    restLabel.Text = "Restore Point Set: Yes";
}
catch (ManagementException err)
{
    restLabel.Text = "Restore Point Set: No - Error";
    MessageBox.Show(err.Message);
}

编辑:我将代码从 err.Message 更新为 err.ToString() 并获得了一些新信息。显然,问题在于这行代码:

ManagementBaseObject OutParam = ManClass.InvokeMethod("CreateRestorePoint", ManBaseObject, null);

有任何想法吗?

4

0 回答 0