Time of Update: 2018-12-05
1 首先下載WinDbg http://msdl.microsoft.com/download/symbols/debuggers/dbg_x86_6.5.3.8.exe?WinDbg 安裝2 開啟WinDbg -> File -> Symbol File Path 設定符號檔案路徑 可以下載服務表安裝到系統中,http://msdl.microsoft.com/download/symbols/packages/windowsxp/WindowsXP-KB835935-SP2
Time of Update: 2018-12-05
首先說明實模式,音效模擬模式,保護模式是X86中的概念。 我從定址方式來說,CPU的IP(EIP)中存放的是虛地址,把一個虛地址轉換為物理地址,模式不同,轉換方式不同: 實模式下-虛地址到真實位址轉換,段寄存器左移四位與位移相加,得到物理地址,定址空間1M。
Time of Update: 2018-12-05
1. 托盤表徵圖 電驢的托盤表徵圖的。相關代碼的實現在CemuleDlg::OnTrayRButtonUp裡面。void CemuleDlg::OnTrayRButtonUp(CPoint pt){ ..............if (m_pSystrayDlg) {m_pSystrayDlg->BringWindowToTop();return;} //具體的實現都在CMuleSystrayDlg裡面m_pSystrayDlg = new
Time of Update: 2018-12-05
#define REG_SHELLFODLER _T("Software//Microsoft//Windows//CurrentVersion//Explorer//Shell Folders")void CTestDlg::OnBnClickedButton7(){// TODO: 在此添加控制項通知處理常式代碼CString szLink , szPath;CString
Time of Update: 2018-12-05
I had to use the information below when I inadvertently relocated a VM from one ESX server to another without first checking to see if it had snapshots. You see, if you ever move a VM with Snapshots you will break the links between the VMDK and
Time of Update: 2018-12-05
轉載自: http://www.cnblogs.com/poissonnotes/archive/2012/02/24/2366903.htmlSharePoint Server 2010用來取代MOSS 2007,它有標準版和企業版兩個版本,使用SQL Server資料庫;早期版本中的STS或WSS在2010中更名為SharePoint Foundation;而SPS 2010包含了SharePoint Foundation和SharePoint Server。 SharePoint
Time of Update: 2018-12-05
最近因開發需要,開始使用Windbg,有點心得記錄於此。首先,一開始啟動並執行時候就是會遇到這個問題*** ERROR: Module load completed but symbols could not be loaded for
Time of Update: 2018-12-05
轉載自: http://www.cnblogs.com/poissonnotes/archive/2010/11/26/1889103.html除了拓撲結構和軟體邊界,效能和可用性也分別受硬體限制和冗餘的影響。這一節將提供一些通用建議來協助你為伺服器陣列選擇合適的硬體。為最佳效能選擇硬體時,應首先考慮下列建議。● 購買64位的硬體儘管 SharePoint可以部署到32位的伺服器,我們還是強烈建議選擇64位的硬體和64位的Windows
Time of Update: 2018-12-05
重載CPropertySheet類,在它的OnInitDialog函數中添加 //嚮導模式下ID_WIZNEXT,ID_WIZFINISH, ID_WIZBACK, IDCANCEL int ids [] = ...{ID_WIZBACK ,ID_WIZNEXT, IDCANCEL};//, ID_APPLY_NOW, IDHELP }; CRect rectBtn,rectDlg; int nSpacing = 6; // space between t
Time of Update: 2018-12-05
問題描述: 在其他類中包含*view.h,編譯出*view.h(16) : error C2143: 語法錯誤 : 缺少“;”(在“*”的前面)*view.h(16) : error C4430: 缺少類型說明符 - 假定為 int。注意: C++ 不支援預設 int*view.h(16) : error C4430: 缺少類型說明符 - 假定為 int。注意: C++ 不支援預設 int 問題定位在: public: C*Doc* GetDocument()
Time of Update: 2018-12-05
基本HTML代碼www.027good.cn <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head><title>Div Float Sample<
Time of Update: 2018-12-05
!drvobj!devobj!podev!devstack"!drvobj Driver Name | PDRIVER_OBJECT pointer" 列出這個驅動建立的所有裝置。kd> !drvobj /Driver/i8042prtDriver object (82158040) is for: /Driver/i8042prtDriver Extension List: (id , addr)Device Object list:8213c3d0 82153738
Time of Update: 2018-12-05
問題描述: RT,利用debug跟蹤,發現出錯位置在 if (!_AfxCheckDialogTemplate(lpszTemplateName, TRUE)) { ASSERT(FALSE); // invalid dialog template name PostNcDestroy(); // cleanup if Create fails too soon return
Time of Update: 2018-12-05
驅動程式開發實在是一件很頭疼的事情,入手幾天還是沒什麼感覺。找到一段代碼,麻雀雖小五髒俱全,看了之後能對整個完整的架構有個基本的瞭解,很有參考價值。發這裡一起分享。//標頭檔#ifdef __cplusplusextern "C"{#endif#include <wdm.h>#ifdef __cplusplus}#endiftypedef struct _DEVICE_EXTENSION{ PDEVICE_OBJECT fdo; PDEVICE_OBJECT
Time of Update: 2018-12-05
這篇文章只是對Fast I/O和IRP做個簡單的區分,不同點做簡單的說明而已。NT 下 Fast I/O 是一套 IO MANAGER 與 DEVICE DRIVER 溝通的另外一套 API。在進行基於 IRP 為基礎的介面調用前, IO MANAGER 會嘗試使用Fast I/O介面來加速各種 IO操作.首先,Fast I/O是獨立於普通的處理 IRP的分發函數之外的另一組介面。但是他們的作用是一樣的,就是由驅動處理外部給予的請求。而且所處理的請求也基本相同。其次,檔案系統的普通分發常式和
Time of Update: 2018-12-05
今天在研究SSO的時候,參照此文章http://www.cnblogs.com/abcdwxc/archive/2008/05/16/1200586.html配置SSO。在配置的過程中碰到一些問題,在此記錄下來供以後查看。 在第一步進入管理中心->操作->管理SSO,系統提示如資訊。 於是我在服務裡面開啟Microsoft Single Sing-on
Time of Update: 2018-12-05
最近,公司想用SharePoint做OA平台,在伺服器部署的時候出現許多問題,主要是使用者設定檔同步問題,所以在此將收集的問題放在這裡,希望能幫到大家,稍後會更新。 1. AD connection已經建立,但是在完全同步時卻沒有使用者設定檔匯入。查看事件記錄,發現以下錯誤:The management agent "MOSSAD-ADConnection" failed on run profile "DS_DELTAIMPORT" because
Time of Update: 2018-12-05
方法一。這種方式無法監視到檔案的修改,只有右鍵屬性中修改檔案的操作才能監視到。註冊BOOL Register(HWND hWnd){SHChangeNotifyEntry pfsne;LPITEMIDLIST pidl;if(NOERROR == SHGetSpecialFolderLocation(hWnd,CSIDL_DESKTOP,&pidl))pfsne.pidl=pidl;pfsne.fRecursive = TRUE; if(m_dwSHNotify == 0) {
Time of Update: 2018-12-05
分層與分模組開發2009-04-14 17:18:31| 分類: 他山之石 閱讀87 評論0 字型大小:大中小 訂閱
Time of Update: 2018-12-05
IIS中,每個SharePoint網站下面都有一個 “~controltemplates”虛擬目錄,映射到 C:/Program Files/Common Files/Microsoft Shared/Web Server