posted @ 2019-01-22 10:01 努力成长静待花开 阅读(258) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: 通过注册表中HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\子键下的LegalNoticeCaption和LegalNoticeText项的值 来实现 RegistryKey类的CreateSubKey 阅读全文
摘要:
实现效果: 知识运用: EventLog类的Source属性和WriteEntry方法 实现代码: 阅读全文
posted @ 2019-01-21 20:22 努力成长静待花开 阅读(182) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: EventLog类的SourceExists CreateEventSource方法 public static bool SourceExists (string source) //在计算机的注册表中搜索给定的事件源 public static void CreateEv 阅读全文
posted @ 2019-01-21 19:43 努力成长静待花开 阅读(340) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: EventLog类的Log属性 Entries属性 EventLogEntryCollection类的Count属性 及 EventLogEntry类的相关属性 实现代码: 阅读全文
posted @ 2019-01-21 19:14 努力成长静待花开 阅读(635) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: EventLog类的Log属性 Entries属性 EventLogEntryCollection类的Count属性 及 EventLogEntry类的相关属性 实现代码: 阅读全文
posted @ 2019-01-21 18:37 努力成长静待花开 阅读(227) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: EventLog类的Log属性 Entries属性 //获取或设置读取或写入的日志名称 public string Log ( get; set;) //属性值: 日志的名称 Application System 和 Security或其他自定义 默认为(“”); publi 阅读全文
posted @ 2019-01-21 17:59 努力成长静待花开 阅读(740) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: WindowsPrincipal类的IsInRole方法 //确定当前主体是否属于制定的Windows用户组 public virtual bool IsInRole (WindowsBuiltInRole role) //属性为枚举值之一 实现代码: 阅读全文
posted @ 2019-01-21 16:29 努力成长静待花开 阅读(1078) 评论(0) 推荐(0) 编辑
摘要:
实现效果: 知识运用: Environment类的UserName属性 //获取已登陆Windows的人员的用户名 public static string UserName ( get; ) 实现代码: 阅读全文
posted @ 2019-01-21 15:52 努力成长静待花开 阅读(242) 评论(0) 推荐(0) 编辑