發布時間:2021-05-21 文章來源:xp下載站 瀏覽:
Windows XP是美國微軟公司研發的基于X86、X64架構的PC和平板電腦使用的操作系統,于2001年8月24日發布RTM版本,并于2001年10月25日開始零售。其名字中“XP”的意思來自英文中的“體驗(Experience)”。該系統是繼Windows 2000及Windows ME之后的下一代Windows操作系統,也是微軟首個面向消費者且使用Windows NT5.1架構的操作系統。 使用XP系統過程中,正常情況下,同時打開多個程序在任務欄下面就會展示一個個標簽,這些標簽能幫助用戶快速查找到已開啟的窗口。但有時也會遇到任務欄故障,比如有用戶反饋,無論開啟了什么程序,都是以相同標簽的方式顯示出上下2個。怎么辦?其實此問題,可通過創建一個批處理BAT文件即可解決,現小編介紹深度技術XP系統任務欄出現兩行相同的標簽的應對辦法,具體操作如下: 1、打開一個記事本文件,輸入以下代碼內容。 Set WSHShell = WScript.CreateObject("WScript.Shell") Message = "本腳本用于修復Windows XP中當最小化程序時,無法在任務欄顯示圖標的問題。"& vbCR & vbCR Message = Message & "為了正常工作,本腳本將關閉和重啟 Windows Explorer 外殼,這個操作不會損壞你的系統。" & vbCR & vbCR Message = Message & "請關閉所有殺毒軟件的實時監控!并保存所有打開的文件。"& vbCR & vbCR Message = Message & "是否繼續?" X = MsgBox(Message, vbYesNo+vbExclamation, "注意") If X = 6 Then On Error Resume Next WshShell.RegDelete "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStuckRects2" WshShell.RegDelete "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsMRU" WshShell.RegDelete "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerStreamsDesktop" WshShell.RegDelete "HKCUSoftwareMicrosoftInternet ExplorerExplorer Bars{32683183-48a0-441b-a342-8.1c2a440a948.18}BarSize" P1 = "HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer" WshShell.RegWrite p1 & "NoBandCustomize", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoMovingBands", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoSetTaskbar", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoSaveSettings",0,"REG_DWORD" WshShell.RegWrite p1 & "NoToolbarsOnTaskbar", 0, "REG_DWORD" WshShell.RegWrite p1 & "NoSetTaskbar",0,"REG_DWORD" WshShell.RegWrite p1 & "NoActiveDesktop",0,"REG_DWORD" WshShell.RegWrite p1 & "ClassicShell",0,"REG_DWORD" p1 = "HKCUSoftwareMicrosoftWindowsCurrentVersionGroup Policy Objects本地UserSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer" WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" WshShell.RegDelete p1 & "NoMovingBands" p1 = "HKLMSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell" WshShell.RegWrite p1, "explorer.exe", "REG_SZ" p1 = "HKCUSoftwareMicrosoftInternet ExplorerExplorer Bars{32683183-48a0-441b-a342-8.1c2a440a948.18}" Windows XP服役時間長達13年,產生的經濟價值也較高。2014年4月8日,微軟終止對該系統的技術支持,但在此之后仍在一些重大計算機安全事件中對該系統發布了補丁。 |