是否可以在 c# 中获取 Windows 操作系统上次备份详细信息的详细信息
本文关键字:详细信息 操作系统 备份 Windows 获取 是否 | 更新日期: 2023-09-27 18:36:16
我正在尝试创建一个显示Windows操作系统上次备份时间和日期的WPF应用程序。我尝试了EventLogger
但找不到细节。有没有办法获取窗口上次备份时间和日期?
您正在寻找环境类
提供有关当前的信息和操作方法 环境和平台。此类不能继承。
编辑:
您还可以检查以下内容:使用 PInvoke 创建系统还原点
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RestorePointInfo
{
public int dwEventType; // The type of event
public int dwRestorePtType; // The type of restore point
public Int64 llSequenceNumber; // The sequence number of the restore point
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = MaxDescW + 1)]
public string szDescription; // The description to be displayed so
//the user can easily identify a restore point
}