Jump to content

Anixx

Member
  • Posts

    65
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Russian Federation

Everything posted by Anixx

  1. Regarding true color icons and the cleartype, look at this topic: http://www.msfn.org/board/topic/93160-windows-2000-revolutions-pack/ Regarding DirectX, I have confused the version. But for version 11 check these links: http://www.itechtics.com/directx-full-setup-download/ http://directx11.info/ https://www.raymond.cc/blog/easily-install-and-download-directx-10-for-windows-xp/ Also, Microsoft RAMdrive for Windows 2000: https://support.microsoft.com/en-us/kb/257405
  2. Sure it is , possibly with one exception : JFYI:http://www.overclock.net/t/1193401/why-it-is-bad-to-store-the-page-file-on-a-ram-disk jaclaz How it is relevant? It speaks about 64-bit systems which have no address space limitation.
  3. I have just found this thread and I think it is amazing! I hevent read it all but I want to poit some bits that can be useful. * There is Microsoft Application Verifier. It allows to lie the windows version to applications that require higher one. May be worth inclusion to this unofficial SP. https://www.microsoft.com/en-us/download/details.aspx?id=20028 * There is a way of installing IPv6 support on Win2000, the driver is by Microsoft. Link: https://www.microsoft.com/en-us/download/details.aspx?id=21676Somewhere I read that this needs sone fix for better work... Do not remember. * Some people added ClearType subpixel smoothing to Win2000 as well as support for true color icons * It is possible to install the Windows Restore service on Win2000 from XP. The recipe is the same as with Windows 2003 http://blogs.msdn.com/b/carloc/archive/2007/01/24/enable-system-restore-on-windows-2003.aspx * It is possible to install DX12 on Windows 2000 (the way is the same as with XP). It will not employ some things which only available with newer drivers but the programs that require newer DX will work well. * The program Pitaschio allows to arrange icons on the desktop by a grid like in Win XP. * If one needs more memory it is possible either to make Windows to think it is a server version (the difference is only in registry keys) or install a ramdrive putting the swap on it. I hope this is helpful.
  4. Does anyone know how to make Explorer to display the icons in folders with size 32px but having the labels BELOW the icons, like on the desktop? Can this functionality be added to Old New Explorer or maybe it is possible to do so with AHK?
  5. Hi! Is it possible to restore the classic context menus in file explorer in Windows 10?
  6. One monitor and one the TV? Say thanks to Microsoft who drowned the effort to make a unified industrial standard on pixel positioning.
  7. 1. Taskbar works, but some elements are shifted by 1 px. I wrote an AHK script that mostly fixes the problem. 2. IE can be patched 3. Extension for Firefox is available that fixes a similar problem 4. Task manager does not work, one needs one from Win7 (there is an utility that installs it) All the rest should be the same as with the hack from this topic.
  8. In essence it is the same method with handle hack, just using another utility: http://forum.thinkpads.com/viewtopic.php?f=67&t=113024 The one I use is attached, it is not the latest version but works the best for me. Also I use ClassicShell 4.1.0 because they broke classic theme support later. w8classic.zip
  9. Can this feature be included? This is Address Bar remover. When it is running, explorer windows have no Address bar (Navbar, Rebar). The executable is attached, and here is the AHK source code: #NoTrayIcon#NoEnvGui +LastFoundhWnd := WinExist()SetControlDelay, -1SetBatchLines -1DllCall( "RegisterShellHookWindow", UInt,hWnd )MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )OnMessage( MsgNum, "ShellMessage" )ReturnShellMessage(wParam,lParam) {If (wParam = 1 ) ; HSHELL_WINDOWCREATED := 1{WinGetClass, WinClass, ahk_id %lParam%if (WinClass = "CabinetWClass") {ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%Control, Hide,, WorkerW1, ahk_id %lParam%Control, Hide,, ReBarWindow321, ahk_id %lParam%ControlGetPos,,y2,,h1,ShellTabWindowClass1, ahk_id %lParam%ControlMove, ShellTabWindowClass1,, y1,,y2-y1+h1, ahk_id %lParam%ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%WinSet, Redraw,, ahk_id %lParam%Sleep, 100SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%Control, Hide,, WorkerW1, ahk_id %lParam%Control, Hide,, ReBarWindow321, ahk_id %lParam%ControlGetPos,,y2,,h1,ShellTabWindowClass1, ahk_id %lParam%ControlMove, ShellTabWindowClass1,, y1,,y2-y1+h1, ahk_id %lParam%ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%WinSet, Redraw,, ahk_id %lParam%Sleep, 100SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%Control, Hide,, WorkerW1, ahk_id %lParam%Control, Hide,, ReBarWindow321, ahk_id %lParam%ControlGetPos,,y2,,h1,ShellTabWindowClass1, ahk_id %lParam%ControlMove, ShellTabWindowClass1,, y1,,y2-y1+h1, ahk_id %lParam%ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%WinSet, Redraw,, ahk_id %lParam%Sleep, 100SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%Control, Hide,, WorkerW1, ahk_id %lParam%Control, Hide,, ReBarWindow321, ahk_id %lParam%ControlMove, ShellTabWindowClass1,, y1,,y2-y1+h1, ahk_id %lParam%ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%WinSet, Redraw,, ahk_id %lParam%}}} But I think it would be better to add such feature as a checkbox. P.S. I have updated the script (November, 1015)
  10. The downside with this is that the window is not getting updated until resized. Using redraw command does not help :-(
  11. This indeed works and very interesting! But what I wanted is to set the property for the control captioned "FolderView" (class SysListView32 or SysItemView32 as reported by ZeroDump) rather than the whole window... Also is it possible to do the same for open/save dialogs? ***** Later edit: ***** Well, I have changed to Control, ExStyle, ^0x200, FolderView, ahk_id %lParam% and it works! This is great! ***** Still later edit: ***** Is it possible to do the same to other applications (Mathematica, open/save dialogs etc)? Also is it possible to resize a control on each window resize (that is not only when a window created but when it is resized as well)?
  12. The way to make it like on the screenshots is known. Unfortunately I have no programming skills to implement it. But for those who has it should not be a big trouble, all necessary info is known, no research is needed and even test implementation with source is there.
  13. Is it possible to include a feature that would implement this new fascinating find? There is a great open-source utility Zero Dump but unfortunately it is abandoned. With this utility it is possible to modify control styles of the running windows. Particularly, it is possible to make the FolderView in Windows Explorer in Vista+ to appear like in Classic Windows, with the 3D border around: This can be done by setting the property "Client Edge" in the extended style tab in ZeroDump. This sets the control style to the value 56001348. Unfortunately the utility can do this only with one Explorer window and every time the procedure should be repeated manually. It would be great if Shell Folder Fix could do the same every time it loads.
×
×
  • Create New...