上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 121 下一页

2012年10月17日

Debug相关的一些小技巧

摘要: 1. 如何Debug一个进程的子进程? 答: 使用WinDBG attach到父进程, 然后输入命令".childdbg 1"(无引号). 这样子进程在刚刚被加载的时候, WinDBG就Attach上去了. 这两个进程的debug session都在一个WinDBG的窗口里, 如果想要切换当前进程, 可以使用命令"|"来查看所有的进程, 使用"|0s"来切换到ID为0的进程, 以此类推. ... 阅读全文

posted @ 2012-10-17 10:31 中道学友 阅读(1285) 评论(0) 推荐(0) 编辑

2012年10月16日

User Profile Service 卡在Starting状态上, 怎么办?

摘要: 尝试一下这篇文章里的步骤吧, 很多实践证明此文是有效的. User Profile Service Stuck on Starting http://www.mysharepointadventures.com/2012/01/user-profile-service-stuck-on-starting/ 阅读全文

posted @ 2012-10-16 12:36 中道学友 阅读(347) 评论(0) 推荐(0) 编辑

2012年9月19日

记录一个用PowerShell来获得UserProfile的某个属性的脚本

摘要: 脚本如下: Clear-Host Add-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction "SilentlyContinue" $url = "http://sps2010/" $site = Get-SPSite $url $context = Get-SPServiceContext $site ... 阅读全文

posted @ 2012-09-19 14:47 中道学友 阅读(922) 评论(0) 推荐(0) 编辑

2012年9月17日

Windows内存的一些知识点

摘要: 之前, 我曾经写过一篇文章Task Manager跟Performance Monitor的区别(Working set和Private bytes), 对Windows内存的解释并不是很清楚. 最近从头到尾听了一遍Mark Russinovich的Windows内存的讲座, 于是把笔记记录在这里. 内存基础 =========================== 内存地址分为三部分... 阅读全文

posted @ 2012-09-17 10:27 中道学友 阅读(5568) 评论(0) 推荐(1) 编辑

2012年9月11日

ASP.NET性能调优文章两篇

摘要: Chapter 15 — Measuring .NET Application Performance ASP.NET Performance Monitoring, and When to Alert Administrators 阅读全文

posted @ 2012-09-11 15:26 中道学友 阅读(280) 评论(0) 推荐(0) 编辑

2012年9月5日

[持续更新]一些有用的PowerShell收集

摘要: [2012-09-05]可以使用下面的powershell命令来dump某web application中符合某条件的timerjob, 比如说, 下面的命令dump出端口在1007的web application的variation timer job. PS> (get-spwebapplication http://servername).JobDefinitions | where {$_.DisplayName -match "variation"} | select DisplayName, IsDisabled, LastRunTime, Schedul 阅读全文

posted @ 2012-09-05 13:40 中道学友 阅读(403) 评论(0) 推荐(0) 编辑

2012年8月31日

一些ADPlus配置文件的收集

摘要: 定断点在方法ntdll!RtlEnterCriticalSection 上, 一旦执行到这个方法, 就写log, 记录callstack, 并且打印寄存器的值. 定断点在地址77f5b380 上, 动作同前一个. <ADPlus> <!-- Configuring ADPlus for breakpoints --> <!... 阅读全文

posted @ 2012-08-31 16:22 中道学友 阅读(648) 评论(0) 推荐(0) 编辑

Kernel Mode Debugging 初步 一

摘要: 什么是kernel mode debugging? Kernel debugging是使用WinDBG来检验受限制的内存, 调用栈, 内部数据结构, 内部布局, 以及运行在kernel mode的操作系统组件和驱动的系统信息的过程. 在kernel mode下, 你debug的是整个操作系统, 而不是某一个应用程序, 线程, 或者进程. 这意味着你对程序的执行拥有完全的控制权, 并且需要保证你... 阅读全文

posted @ 2012-08-31 14:44 中道学友 阅读(1824) 评论(0) 推荐(0) 编辑

2012年8月29日

HTTP Status Code速查

摘要: 其实这信息网上到处都是, 但是为了我自己查找和使用的方便, 还是转载并列在这里吧. 1xx – Informational ================ These HTTP status codes indicate a provisional response. The client computer receives one or more 1xx responses befo... 阅读全文

posted @ 2012-08-29 14:57 中道学友 阅读(14776) 评论(0) 推荐(0) 编辑

关于斜杠(slash)和反斜杠(back slash)的小知识点

摘要: 这两个总容易记混, 其实英文版的更好记一些, 往前倒的叫斜杠, 往后倒的叫反斜杠. 呵呵. 在WinDBG中, 捞到一个DirectorySearcher的Filter成员的值如下: 0:014> !do rdx Unable to enumerate managed locals, HRESULT 0x80004001 Unable to enumerate mana... 阅读全文

posted @ 2012-08-29 10:51 中道学友 阅读(4360) 评论(1) 推荐(0) 编辑

上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 121 下一页

导航

技术追求准确,态度积极向上