The Resource Library
Nov 18, 2020 12:21:43 GMT -8
Post by travis on Nov 18, 2020 12:21:43 GMT -8
Hey everybody, I don't know where to put this, a mod may move this to the right category. But here will be a list of scripts, themes, icons, etc. To be more easy to find them instead of being in threads everywhere on the forum.
Quero Skins:
Windows 2000 Toolbar: QueroWin2K.dll (264 KB)
Windows 2000 Tahoma: Win2KTahoma.dll (372 KB)
Windows 98 Toolbar: Quero98.dll (372 KB)
CSM/OSM Start Buttons & Menu Icons:
\
Transparent 2000 Button with line & no line
26px Start Menu Icons:
More accurate Windows 98 start menu icons.
Download
AHK Scripts:
32px Icons with Labels Below:
Executable Download
www.winclassic.net/thread/160/icons-file-manager-exactly-labels
AHK Code:
Classic Toolbars:
Executable Download
www.winclassic.net/thread/244/classic-toolbar-borders-explorer
AHK Code:
Clientedge:
No Executable Download Yet!
www.winclassic.net/thread/12/windows-explorer-folderview-bordder-clientedgelink
AHK Code:
3D Explorer Toolbar icons:
Executable Download
Wonderful script made by The Jackal .
AHK Code:
Address Bar Remover:
Executable Download
www.winclassic.net/thread/132/removing-navigation-bar-windows-explorer
AHK Code:
3D Toolbar Icons:
www.winclassic.net/thread/435/3d-quick-launch-buttons
AHK Code:
3RVX Skins:
Windows 95 - 2000 Volume Skin Windows XP Volume Skin
Download Download
Classic Theme Tools:
SimpleClassicTheme:
Easy to use program that enables classic theme, install programs, etc.
ClassicThemeTray:
A program that uses 0% CPU usage and quickly enable & disable Classic Theme in the tray,
or via command line in a script. Closes access to the theme section.
Setting up classic theme on Windows 8.1 via task scheduler
This tutorial also includes steps recommended for Windows 10.
ClassicTheme.exe/ClassicThemeA.exe
An old way to have classic theme with or without it being resident to memory (install mode is broken now).
Deletes the theme section altogether from memory, so freeing more space. Undo requires session restart.
Conflicts with Pale Moon browser.
Classic Theme Script:
An simple BAT script that enables classic theme, remove Ribbon & Command bar, restores XP Paint,
ETC. Recommended for Windows 10 Versions Before 1809.
Classic Theme Taskbars:
ReactOS Explorer Taskbar:
A easy to use AHK script, does not save your config and has a broken tray, and the start button doesn't stay
pressed with Open-Shell.
SimpleClassicThemeTaskbar:
A taskbar that is configurable, Open-Shell compatible, able to change the Start Button without changing files.
StartIsBack++:
For people who want to get a very accurate Windows 7 taskbar. Doesn't follow Color Schemes and Fonts.
Doesn't work with Open-Shell and requires a taskbar image to make it work with CSM. Uses skinned Windows Explorer's taskbar. No subpixel smoothing of the fonts.
The taskbar is thicker by 2 pixels than classic one.
Taskbar image for CSM:
Old Windows & Classic Theme Programs
Windows 2000, 95, NT Welcome:
Collection of the 3 welcome programs, works without changing anything.
95 Welcome Download
NT Welcome Download
2K Welcome Download
ReactOS Programs
ReactOS Welcome
Pretty self explanatory, fairly basic.
Download
ReactOS Keyboard Switcher
A identical "classic" keyboard switcher on the tray.
Download
ReactOS Program Collection
A archive of programs, files, fonts, wallpapers from ReactOS. Big thanks to The Jackal for making the archive.
Download
Icons and Resources
Microsoft Office Icon Collection
A collection of all Office programs. (Credit to kamuisuki for this)
Download
Windows 9x Icon Pack
Filled to the brim with Windows 95, 98, and 2000 icons.
www.winclassic.net/thread/504/full-windows-9x-icon-pack
High-Res Windows XP Icons
Some Windows XP Icons in beautiful 256x256.
www.winclassic.net/thread/96/resolution-windows-icons-official-microsoft
Wallpapers
Windows Chicago Wallpapers
Tiled wallpapers from Windows Chicago and ME.
Download
Quero Skins:
Windows 2000 Toolbar: QueroWin2K.dll (264 KB)
Windows 2000 Tahoma: Win2KTahoma.dll (372 KB)
Windows 98 Toolbar: Quero98.dll (372 KB)
CSM/OSM Start Buttons & Menu Icons:
\
Transparent 2000 Button with line & no line
26px Start Menu Icons:
More accurate Windows 98 start menu icons.
Download
AHK Scripts:
32px Icons with Labels Below:
Executable Download
www.winclassic.net/thread/160/icons-file-manager-exactly-labels
AHK Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetControlDelay, -1
SetBatchLines -1
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam,lParam) {
If (wParam = 1 or wParam = 6) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
SendMessage, 0x108F,,,SysListView321, ahk_id %lParam%
If (ErrorLevel=0x2){
Control, Style, +0x2, SysListView321, ahk_id %lParam%
Control, Style, -0x2, SysListView321, ahk_id %lParam%
}
}
}
}
Classic Toolbars:
Executable Download
www.winclassic.net/thread/244/classic-toolbar-borders-explorer
AHK Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetControlDelay, -1
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam,lParam) {
If (wParam = 1 or wParam = 6) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
Control, Style, +0x800000, ReBarWindow322, ahk_id %lParam%
Control, Style, +0x00000400, ReBarWindow322, ahk_id %lParam%
ControlGetPos,,,,h, ReBarWindow322, ahk_id %lParam%
ControlMove, ReBarWindow322,,,,h+1, ahk_id %lParam%
ControlMove, ReBarWindow322,,,,h, ahk_id %lParam%
}
}
}
Clientedge:
No Executable Download Yet!
www.winclassic.net/thread/12/windows-explorer-folderview-bordder-clientedgelink
AHK Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetControlDelay, -1
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam,lParam)
{
If (wParam = 1 or wParam = 6) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass")
{
Control, ExStyle, +0x200, SysTreeView321, ahk_id %lParam%
Control, ExStyle, +0x200, FolderView, ahk_id %lParam%
ControlGetPos,,,,h, ShellTabWindowClass1, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,,,,h+1, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,,,,h, ahk_id %lParam%
DllCall( "SetWindowPos", UInt,lParam, UInt,0, Int,0, Int,0, Int,0, Int,0, Uint,39 )
}
}
}
3D Explorer Toolbar icons:
Executable Download
Wonderful script made by The Jackal .
AHK Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetControlDelay, -1
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam,lParam) {
If (wParam = 1 or wParam = 6) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
Control, Style, -0x800, ToolbarWindow326, ahk_id %lParam%
}
}
}
Address Bar Remover:
Executable Download
www.winclassic.net/thread/132/removing-navigation-bar-windows-explorer
AHK Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetControlDelay, -1
SetBatchLines -1
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(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, 100
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, 100
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, 100
SendMessage, 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%
}
}
}
3D Toolbar Icons:
www.winclassic.net/thread/435/3d-quick-launch-buttons
AHK Code:
#NoTrayIcon
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
Control, Style, -0x800, ToolbarWindow323, ahk_class Shell_TrayWnd
3RVX Skins:
Windows 95 - 2000 Volume Skin Windows XP Volume Skin
Download Download
Classic Theme Tools:
SimpleClassicTheme:
Easy to use program that enables classic theme, install programs, etc.
ClassicThemeTray:
A program that uses 0% CPU usage and quickly enable & disable Classic Theme in the tray,
or via command line in a script. Closes access to the theme section.
Setting up classic theme on Windows 8.1 via task scheduler
This tutorial also includes steps recommended for Windows 10.
ClassicTheme.exe/ClassicThemeA.exe
An old way to have classic theme with or without it being resident to memory (install mode is broken now).
Deletes the theme section altogether from memory, so freeing more space. Undo requires session restart.
Conflicts with Pale Moon browser.
Classic Theme Script:
An simple BAT script that enables classic theme, remove Ribbon & Command bar, restores XP Paint,
ETC. Recommended for Windows 10 Versions Before 1809.
Classic Theme Taskbars:
ReactOS Explorer Taskbar:
A easy to use AHK script, does not save your config and has a broken tray, and the start button doesn't stay
pressed with Open-Shell.
SimpleClassicThemeTaskbar:
A taskbar that is configurable, Open-Shell compatible, able to change the Start Button without changing files.
StartIsBack++:
For people who want to get a very accurate Windows 7 taskbar. Doesn't follow Color Schemes and Fonts.
Doesn't work with Open-Shell and requires a taskbar image to make it work with CSM. Uses skinned Windows Explorer's taskbar. No subpixel smoothing of the fonts.
The taskbar is thicker by 2 pixels than classic one.
Taskbar image for CSM:
Old Windows & Classic Theme Programs
Windows 2000, 95, NT Welcome:
Collection of the 3 welcome programs, works without changing anything.
95 Welcome Download
NT Welcome Download
2K Welcome Download
ReactOS Programs
ReactOS Welcome
Pretty self explanatory, fairly basic.
Download
ReactOS Keyboard Switcher
A identical "classic" keyboard switcher on the tray.
Download
ReactOS Program Collection
A archive of programs, files, fonts, wallpapers from ReactOS. Big thanks to The Jackal for making the archive.
Download
Icons and Resources
Microsoft Office Icon Collection
A collection of all Office programs. (Credit to kamuisuki for this)
Download
Windows 9x Icon Pack
Filled to the brim with Windows 95, 98, and 2000 icons.
www.winclassic.net/thread/504/full-windows-9x-icon-pack
High-Res Windows XP Icons
Some Windows XP Icons in beautiful 256x256.
www.winclassic.net/thread/96/resolution-windows-icons-official-microsoft
Wallpapers
Windows Chicago Wallpapers
Tiled wallpapers from Windows Chicago and ME.
Download