Windows
Denny辉
愿意用一支黑色的铅笔画一出沉默舞台剧,灯光再亮也抱住你。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Asp.net 读取AD信息
新建一个控制台应用程序,添加引用:System.DirectoryServices 定义参数: private static string ADPassword ="xxxxxx"; private static string ADPath = "LDAP://xxx.com"; private static string ADUser ="xxxxxx"; private static...原创 2019-11-05 15:23:44 · 472 阅读 · 0 评论 -
完全卸载Windows Service
常规做法:sc delete ServiceName 但是这种操作有时候没有用,服务名称还是会在服务列表里面 当出现这种情况的时候可以使用以下做法: 查找windows service的PID:SC queryex service_name 杀掉进程:taskkill /PID service_pid /f 至此服务已经完全卸载掉了。...原创 2018-07-24 11:41:32 · 624 阅读 · 0 评论
分享