将下述复制进记事本,然后把后缀.txt改成.vbs执行

'xp_taskbar_desktop_fixall.vbs - Repairs the Taskbar when minimized programs don't show. 
'?Kelly Theriot and Doug Knox - 8/22/2003 
Set WSHShell = WScript.CreateObject("WScript.Shell") 
Message = "To work correctly, the script will close" & vbCR 
Message = Message & "and restart the Windows Explorer shell." & vbCR 
Message = Message & "This will not harm your system." & vbCR & vbCR 
Message = Message & "Continue?" 
X = MsgBox(Message, vbYesNo, "Notice") 
If X = 6 Then 
On Error Resume Next 
WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2\" 
WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU\" 
WshShell.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop\" 
WshShell.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{32683183-48a0-441b-a342-7c2a440a9478}\BarSize" 
P1 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" 
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 = "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\" 
WshShell.RegWrite p1 & "NoCloseDragDropBands", 0, "REG_DWORD" 
WshShell.RegDelete p1 & "NoMovingBands" 
p1 = "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell" 
WshShell.RegWrite p1, "explorer.exe", "REG_SZ" 
p1 = "HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{32683183-48a0-441b-a342-7c2a440a9478}\" 
WshShell.RegDelete p1 & "BarSize" 
WshShell.RegWrite p1, "Media Band", "REG_SZ" 
On Error Goto 0 
For Each Process in GetObject("winmgmts:"). _ 
ExecQuery ("select * from Win32_Process where name='explorer.exe'") 
Process.terminate(0) 
Next 
MsgBox "Finished." & vbcr & vbcr & "?Kelly Theriot and Doug Knox", 4096, "Done" 
Else 
MsgBox "No changes were made to your system." & vbcr & vbcr & "?Kelly Theriot and Doug Knox", 4096, "User Cancelled" 
End If

win10 程序最小化不在任务栏了?在左下角相关推荐

  1. win10程序最小化后任务栏没有显示的解决方法

    通常情况下我们会在电脑打开很多应用程序,当我们暂时不需要使用的时候我们会将它最小化,最小化后会以缩略图的形式出现在任务栏中,等我们有需要的时候再打开就行.但是今天用电脑时发现将程序最小化之后任务栏中却 ...

  2. delphi如何让程序最小化到任务栏(使用Shell_NotifyIcon API函数)

    delphi如何让程序最小化到任务栏(使用Shell_NotifyIcon API函数) 转载于:https://www.cnblogs.com/LittleTiger/p/6519238.html

  3. unity程序最小化,隐藏桌面和任务栏

    Windows系统unity程序最小化,隐藏桌面和任务栏 [DllImport("user32.dll")] public static extern bool ShowWindo ...

  4. WinCE应用程序最小化后的最大化

    个人将应用程序最小化的方法是 ShowWindow(SW_HIDE); 最大化的时候发现有个程序老是显示不正常,只有任务栏那一块paint出来了,点击任务栏后才全部出来 InitInstance()中 ...

  5. VC++:如何将程序最小化到托盘

    转自:http://qzone.qq.com/blog/412405871-1211101395 一.托盘简介 所谓的"托盘",在Windows系统界面中,指的就是下面任务条右侧, ...

  6. VC实现将程序最小化到托盘

    一.托盘简介                 所谓的"托盘",在Windows系统 界面中,指的就是下面任务条右侧,有系统时间等等的标志的那一部分.在程序最小化或挂起时,但有不希望 ...

  7. 程序最小化后释放了很多的内存的原因

    程序最小化后释放了很多的内存的原因 http://soartomato.iteye.com/blog/726135 博客分类: expr Windows.net应用服务器虚拟机软件测试 偶然发现程序最 ...

  8. Qt cef3 无边框程序最小化之后,再打开 hover 状态失效

    1. 使用qt + cef3 开发的 pc 桌面程序出现一个奇怪的问题,描述如下: 1. 程序最小化之后,再最大化,所有Qt 按钮的hover状态都失效. 2. hover 失效后的程序,showNo ...

  9. MFC程序最小化到托盘

    记录下常用小功能,后续使用可以直接Ctrl+C && Ctrl+V. 简而言之:程序最小化到托盘就是先在托盘区绘制一个图标,然后把程序隐藏不见.而恢复就是将程序窗口显示,再将托盘中的图 ...

最新文章

  1. 读书:历史 -- 空王冠
  2. 注意:你智能机中的流氓APP
  3. INNODB的锁的类型
  4. directly to phd is good for laying a solid foundation for future career
  5. 1、MyEclipse插件配置以及通过MyEclipse生成表对应的JPA代码
  6. java.lang.OutOfMemoryError: Java heap space错误及处理办法(收集整理、转)
  7. HTML5中微数据在搜索引擎中的使用举例
  8. linux常见文件打开,Linux常用操作有哪些? Linux常用操作介绍
  9. PHP的学习--在sublime中使用XDebug(Ubuntu)
  10. CentOS7 屏保 “小火车”
  11. linux 监控系统资源-内存
  12. MongoVUE的基本使用
  13. ubuntu命令行启动浏览器_如何从终端启动默认Web浏览器?
  14. C语言实现康托尔集cantor set(附完整源码)
  15. netstat -ano命令失效怎么办
  16. factor java_使用randomForest,Caret和factor变量预测栅格时出错
  17. 让小伙伴大呼过瘾的数据可视化作品!
  18. SpringBoot 使用事务注解 @Transactional 遇到的问题
  19. PROGPPCNEXUS读写烧录刷写软件 飞思卡尔MPC55xx/56xx/57xx/58xx 没有次数限制
  20. 淘宝按关键词搜索示例

热门文章

  1. node-exporter安装
  2. 什么是LSB,MSB
  3. 多路复用技术(频分多路复用、时分多路复用和波分多路复用)
  4. 微型计算机只能识别的语言,计算机唯一能直接识别和处理的语言是( )。
  5. 相位相关计算两张图片的平移量
  6. 如何从JavaScript中的数组替换元素?
  7. 论文阅读笔记(7-1)---Supervised Contrastive Learning
  8. js构造函数(原型链)及Es6的class类
  9. 性能测试能力提升-关于性能测试
  10. android gridview 详解,Android GridView九宫图