regedit
To restore the XP Alt-Tab functionality simply, lauch regedit, add a DWORD named AltTabSettings to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer and set its value to 1.
And here's a one line powershell script which does the above:
Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer AltTabSettings ([int]1)
To restore the XP Alt-Tab functionality simply, lauch regedit, add a DWORD named AltTabSettings to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer and set its value to 1.
And here's a one line powershell script which does the above:
Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer AltTabSettings ([int]1)
恢复XP Alt-Tab功能
本文介绍了一种简单的方法来恢复Windows XP系统的Alt-Tab功能。通过使用注册表编辑器regedit,在HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer下添加名为AltTabSettings的DWORD值并设置为1即可实现。此外还提供了一个PowerShell脚本以方便操作。
1556

被折叠的 条评论
为什么被折叠?



