|
|||||||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#91 | |
|
DriverHeaven Extreme Member
|
Quote:
__________________
|
|
|
|
|
|
|
#92 |
|
DriverHeaven Newbie
Join Date: Feb 2003
Posts: 10
Rep Power: 0 ![]() |
thats prolly it but I hav no use for it as I hav 256K and XP should be using this
tnx anyhow Same goes for those videocard settings? Maybe I got xtra FPS because of the better use in L2cache? disabling mesenger with gpedit gave me an xtra 10mb free (mesenger kept loading without showing its face even after I ended the process it would load again) I'm now donw to 115mb for xp pro and little over 20mb is from norton 2k3 and powerstrip I'm happy now , xp is using less then 100mb ram So I'm doing the same thing for my dad laptop wich has xp home and only 128mb ram (yea I know i told him) gpedit doesnt seem te work so how do I disable mensenger in home? and last but not least : Use active desktop to save memory used by wallpapers: When you choose a wallpaper using the standard method (selecting a background on the desktop tab, in the properties window), Windows converts this image to a huge .bmp file (even if you selected a .jpg). Then instead of having a nice 220K wallpaper, you get a 3,15MB wallpaper. To get rid of this, try using active desktop's web capabilities, like this: 1. Right click on your desktop and select "properties", then select the "desktop" tab. 2. Click on "Customize Desktop". 3. Select the "Web" tab and click on "New..." 4. Browse for your favorite image and click OK when you are done. 5. Make sure "Lock desktop items" is uncheck. 6. Click OK, and OK again. 7. Now your image is like another window. Drag it to where you want and then right clik over it. 8. Select "arrange icons by" and the check "Lock Web Items on Desktop". 9. That's it. Now you have a "low memory usage wallpaper". With this you can make interesting things, like using various small wallpapers, or even animated ones!! (you can select an animated .gif too!!). Simply select various images, and when you click OK, drag all them to its right location, and lock the content again. Last edited by Tum0r; Dec 6, 2003 at 01:48 AM. |
|
|
|
|
|
#93 |
|
The Cable Guy
|
GREAT stuff!! Thanxs for all the info!
__________________
|
|
|
|
|
|
#94 |
|
DriverHeaven Newbie
Join Date: May 2003
Posts: 11
Rep Power: 0 ![]() |
is there a single file for all of these great tweaks ?
__________________
|
|
|
|
|
|
#95 |
|
DriverHeaven Junior Member
Join Date: Oct 2003
Location: DK
Posts: 75
Rep Power: 0 ![]() |
What do thay do exactly?
__________________
AMD2500+@(2402Mhz) [30%OC]218x11 1.93Vcore Abit NF7-S Rev 2.0 BIOS D22 VDD 1.9 2x256Mb OcZ EL-DDR Pc3200 11-3-2-2(2.9v)(434Mhz)(4.5ns) Powercolor ATi9800Pro 128Mb DDR (CAT 3.9) (378@337) LG Flatron 19" Max Res: 2048x1536@60Hz / 1600x1200@85Hz Antec TP 550W PEC (24A) (12+:12.03) (5+:4.89) (3.3+:3.28) (-12:-11.97/-12.03) (-5:-5.01) 200Gb HDD: WD120JB/8MbCache/7200Rpm´s/Maxtor 80Gb/2MbCache/7200Rpm´s Case/CPU-Cooling: (6x80mm Papst Low Noise (4 on 7V 2 on 12v) + 1x92mm Papst Low Noise (7V) (Case 25° Socket 37°Idle 56°Load) |
|
|
|
|
|
#96 | |
|
DriverHeaven Senior Member
Join Date: Jun 2002
Location: Toronto
Posts: 1,211
Rep Power: 0 ![]() |
Quote:
|
|
|
|
|
|
|
#97 | |
|
BANNED
Join Date: Apr 2004
Posts: 604
Rep Power: 0 ![]() |
Re: DiskCache Tweaks
Quote:
Isn't this kinda high? 04000000 is around 67gigs right? I set mine for either 128MB or 256MB. |
|
|
|
|
|
|
#98 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
PageFileInfo.vbs 4 KB.
Code:
' Script begin
Option Explicit : On Error Resume Next
Dim objWSH : Dim obj : Dim myPC : Dim info : Dim title : Dim timeout : Dim bt
Set objWSH = WScript.CreateObject("Wscript.Shell")
title = ( WScript.ScriptName + " - by TIRO" ) 'show Script's name on title
timeout = 30 ' wait xx seconds
myPC = "."
bt = vbInformation + vbOKOnly
'date-time and time out
info = ( Now ) & vbtab & "Close in 30 secs" & vbcrlf
' *************************
' * Page file usage
' *************************
info = info & vbcrlf & "Page File Usage."
info = info & vbcrlf & "------------------------------------------------------- "
' * 1 *
For Each obj in GetObject("winmgmts:\\" & myPC & "\root\cimv2").ExecQuery(_
"Select * from Win32_PageFileUsage",,48)
info = info & vbcrlf & "PF Physical Location: " & vbtab & obj.Name
info = info & vbcrlf & "Current Usage: " & vbtab & obj.CurrentUsage & vbtab & " MB"
info = info & vbcrlf & "Peak Usage: " & vbtab & obj.PeakUsage & vbtab & " MB"
info = info & vbcrlf & "Allocated Base Size: " & vbtab & obj.AllocatedBaseSize & vbtab & " MB"
Next
' *************************
' * Page file settings.
' *************************
info = info & vbcrlf
info = info & vbcrlf & "Page File Setting."
info = info & vbcrlf & "------------------------------------------------------- "
' * 2 *
For Each obj in GetObject("winmgmts:\\" & myPC & "\root\cimv2").ExecQuery(_
"Select * from Win32_PageFileSetting",,48)
info = info & vbcrlf & "PF Physical Location: " & vbtab & obj.Name
info = info & vbcrlf & "Initial Size: " & vbtab & vbtab & obj.InitialSize & vbtab & " MB"
info = info & vbcrlf & "Maximum Size: " & vbtab & obj.MaximumSize & vbtab & " MB" & vbtab
Next
' *************************
' * Registry Size.
' *************************
info = info & vbcrlf
info = info & vbcrlf & "Registry Size."
info = info & vbcrlf & "------------------------------------------------------- "
' * 3 *
For Each obj in GetObject("winmgmts:\\" & myPC & "\root\cimv2").ExecQuery(_
"Select * from Win32_Registry",,48)
info = info & vbcrlf & "Current Size: " & vbtab & obj.CurrentSize & vbtab & " MB"
info = info & vbcrlf & "Maximum Size: " & vbtab & obj.MaximumSize & vbtab & " MB"
info = info & vbcrlf & "Proposed Size: " & vbtab & obj.ProposedSize & vbtab & " MB"
Next
' *************************
' * OS Installed Date.
' *************************
info = info & vbcrlf
info = info & vbcrlf & "Operating System Installed."
info = info & vbcrlf & "------------------------------------------------------- "
' * 4 *
For Each obj in GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery(_
"Select CurrentTimeZone, InstallDate From Win32_OperatingSystem")
With CreateObject("WbemScripting.SWbemDateTime")
.Value = obj.InstallDate
info = info & vbcrlf & DateAdd("n", -obj.CurrentTimeZone, .GetVarDate) & vbcrlf
End With
Next
' *************************
objWSH.Popup info, timeout, title, bt
' release object references
Set objWSH = Nothing
WScript.Quit() ' terminate script and End
|
|
|
|
|
|
#99 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
'anyname.vbs
'Create an empty .reg file -Regfile.reg- on Desktop Code:
Option Explicit : On Error Resume Next : Dim WSH, where, fso, myFile
Set WSH = CreateObject("WScript.Shell")
where = WSH.SpecialFolders("Desktop")
Set fso = CreateObject("Scripting.FileSystemObject")
Set myFile = fso.CreateTextFile(where & "\Regfile.reg", True)
myFile.WriteLine("Windows Registry Editor Version 5.00" & _
vbcrlf & vbcrlf & "; Always export the keys in the registry that you plan to edit," & _
vbNewline & "; If a problem occurs, you can restore the registry to its previous state.")
WSH.Popup "File Created!", 3, "TIRO"
WSH.Run "notepad %HOMEDRIVE%%HOMEPATH%\Desktop\Regfile.reg", 3, FALSE
Set WSH = Nothing
|
|
|
|
|
|
#100 | |
|
DriverHeaven Lover
Join Date: Oct 2004
Location: Seoul-Tokyo Connection
Posts: 235
Rep Power: 0 ![]() |
Quote:
__________________
![]() AMD 64 +3000 Venice 2 Infineon 1 gig PC2700 333Mhz DDRAM ECS Elite nForce3a Mobo Seagate Barracuda 120GB HD SoundBlaster Audigy2 ZS Inno3D Geforce 6600 AGP |
|
|
|
|
|
|
#101 |
|
DriverHeaven Senior Member
Join Date: Oct 2003
Posts: 532
Rep Power: 0 ![]() |
I tried the Desktop wall paper thing, and it worked. However the text in all my shortcuts looks like its highlighted and I cant get rid of it. I think I know why, but I dunno how to fix it. I set my actual wall paper to none, and whatever background color I select is "highlighting" the text. I seem to have to select some color to use I think what i need is like a transparent background color or something?
__________________
Sony Vaio PCV-RX670 P4 1.8ghz XP Pro SP2 1 GB PC2100 RAM ATI All in Wonder 9700 pro Audigy 2 ZS Aquamark ~29,500 3dMark03 ~ 5,000 |
|
|
|
|
|
#102 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
open up the System Properties, Start ->Run... and type sysdm.cpl and hit enter key,
click on Advanced tab -> Performance, Visual effects, click Settings, check "Use drop shadows for icon lables on the desktop", and see if this helps. |
|
|
|
|
|
#103 |
|
DriverHeaven Senior Member
Join Date: Oct 2003
Posts: 532
Rep Power: 0 ![]() |
Thats the first thing i checked was the drop shadows and they were on. Thats what it looks like though when you use regular wallpaper w/o drop shadows.
__________________
Sony Vaio PCV-RX670 P4 1.8ghz XP Pro SP2 1 GB PC2100 RAM ATI All in Wonder 9700 pro Audigy 2 ZS Aquamark ~29,500 3dMark03 ~ 5,000 |
|
|
|
|
|
#104 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
What's Desktop wall paper thing ?
|
|
|
|
|
|
#105 |
|
DriverHeaven Lover
Join Date: Oct 2004
Location: Seoul-Tokyo Connection
Posts: 235
Rep Power: 0 ![]() |
i think he's referring to disabling the wallpaper
__________________
![]() AMD 64 +3000 Venice 2 Infineon 1 gig PC2700 333Mhz DDRAM ECS Elite nForce3a Mobo Seagate Barracuda 120GB HD SoundBlaster Audigy2 ZS Inno3D Geforce 6600 AGP |
|
|
|
|
|
#106 |
|
DriverHeaven Senior Member
Join Date: Oct 2003
Posts: 532
Rep Power: 0 ![]() |
the desktop wall paper this is the tweak mentioned in this forum
"1. Right click on your desktop and select "properties", then select the "desktop" tab. 2. Click on "Customize Desktop". 3. Select the "Web" tab and click on "New..." 4. Browse for your favorite image and click OK when you are done. 5. Make sure "Lock desktop items" is uncheck. 6. Click OK, and OK again. 7. Now your image is like another window. Drag it to where you want and then right clik over it. 8. Select "arrange icons by" and the check "Lock Web Items on Desktop". 9. That's it. Now you have a "low memory usage wallpaper".
__________________
Sony Vaio PCV-RX670 P4 1.8ghz XP Pro SP2 1 GB PC2100 RAM ATI All in Wonder 9700 pro Audigy 2 ZS Aquamark ~29,500 3dMark03 ~ 5,000 |
|
|
|
|
|
#107 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Desktop icons and icon labels may not display background transparency or the drop shadow effect in Windows Server 2003 and Windows XP - http://support.microsoft.com/default...b;en-us;305117
|
|
|
|
|
|
#108 |
|
DriverHeaven Senior Member
Join Date: Oct 2003
Posts: 532
Rep Power: 0 ![]() |
Hmm well thats the exact problem I am having, but the resolution listed there doesnt work. The icon text looks the same w/ or w/o drop shadows on.
__________________
Sony Vaio PCV-RX670 P4 1.8ghz XP Pro SP2 1 GB PC2100 RAM ATI All in Wonder 9700 pro Audigy 2 ZS Aquamark ~29,500 3dMark03 ~ 5,000 |
|
|
|
|
|
#109 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
i don't think there's a way to make the drop shadow effect icon on a page or image that you use it as desktop wallpaper. i disabled the active desktop, but will enable it later and check it out.
|
|
|
|
|
|
#110 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
i saw what you've tried to do, you display a desktop content (which's an image) on your desktop. and therefore that desktop content turns on the active desktop feature. i don't know how to make the desktop icons to look the way you wanted. nwih i'll be able to figure this out myself. so pls share whatever you'll find out after.
|
|
|
|
|
|
#111 | |||||||||||||||||||||
|
DriverHeaven Senior Member
Join Date: Jun 2002
Location: Toronto
Posts: 1,211
Rep Power: 0 ![]() |
i haven't searched the whole thread, hope there's not dupes.
these are mostly changes to the UI always remember to backup first! stop file open with for asking to search the web Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
disable recent docs Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
put this into a .bat file and run from anywhere Quote:
speed up ntfs drives by disabling some win31 / 16bit support Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Last edited by ChoGGi; Apr 23, 2005 at 04:09 AM. |
|||||||||||||||||||||
|
|
|
|
|
#112 | |
|
DriverHeaven Senior Member
Join Date: Jun 2002
Location: Toronto
Posts: 1,211
Rep Power: 0 ![]() |
and my services config (network connections is disabled, see bottom to enable, its called netman)
if errorcontrol is 1 it gives an error somewhere errorcontrol 2 (or 3) means windows refuses to start so i put them all to 0 Quote:
if you have DSL (or a modem i guess) then change "Start"=dword:0000000? to "Start"=dword:00000002 for these [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\RasAuto] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\RasMan] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\TapiSrv] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Netman] Last edited by ChoGGi; Apr 27, 2005 at 04:18 PM. |
|
|
|
|
|
|
#113 |
|
DriverHeaven Senior Member
Join Date: Jun 2003
Location: San Diego, Ca
Posts: 716
Rep Power: 0 ![]() |
Some of these tweak are ok but just do not over do them. If you go to www.tweakhound.com some of these can hurt your system performance or have no evidence of any improvement. But so not mess with your registry unless if you know what what you are doing. I would recommend that you do some research at www.tweakhound.com and check out www.tweakxp.com
__________________
Case- Cooler Master ATC-201B-BXT Aluminum Case Power Supply- Antec 480w TrueBlue480 ATX-12V MX518 Mouse CPU- AMD Athlon 64 processor 4000+ (2.4GHz) Socket-939 Motherboard-K8N Neo2 Platinum 2 GB DDR (2 pcs 1GB) PC-3200 (400) OCZ Dual Channel Platinum Hard Drive- WD 74GB 8MB 10000rpm S-ATA WD740GD Sound Card- Creative SB Audigy 2 Zs Platinum CDRW- LG GCE-8525BI 52X32X52 CD-RW OS- Microsoft Windows XP Pro Edition w/SP2 Video-Radeon X850XT AGP 256MB |
|
|
|
|
|
#114 |
|
DriverHeaven Junior Member
Join Date: Feb 2003
Location: Utah, USA
Posts: 43
Rep Power: 0 ![]() |
I recently released a Windows XP tweaking guide that I feel everyone here should be informed about. All the tweaks on the guide have been tested to be sure they are valid and help out your computer. Check it out.
Whistling Cricket Windows XP Tweaking v2.0 |
|
|
|
|
|
#115 |
|
DriverHeaven Senior Member
Join Date: Jun 2002
Location: Toronto
Posts: 1,211
Rep Power: 0 ![]() |
thanks Vyrticl looks pretty good.
|
|
|
|
|
|
#116 |
|
DriverHeaven Junior Member
Join Date: Jun 2005
Posts: 63
Rep Power: 0 ![]() |
unload dll tweak for xp does nothing, its useless.
__________________
[color=White][color=green][/color][/color]AMD Athlon 64 3200+ Venice (Socket 939) Epox EP-9NPA+ nForce4 (Socket 939) (PCI-Express) GeIL 1GB PC3200 Sapphire ATI Radeon X850XT 256MB (PCI-Express)
|
|
|
|
|
|
#117 |
|
DriverHeaven Lover
Join Date: Feb 2005
Location: TR
Posts: 184
Rep Power: 0 ![]() |
Yes it does but not in all cicumstances,,Unloading dll directly after program exit releases memory area releated with DLL.This keeps memory clean and defragmented.But if you run a program frequently than this causes a slowdown because DLL needs to be loaded every start of program
Last edited by Aligokalppeker; Jul 6, 2005 at 11:16 AM. |
|
|
|
|
|
#118 | |
|
DriverHeaven Newbie
Join Date: Jun 2005
Posts: 5
Rep Power: 0 ![]() |
Quote:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html dir=ltr>
<head>
<style>
a:link {font:8pt/11pt verdana; color:FF0000}
a:visited {font:8pt/11pt verdana; color:#4e4e4e}
</style>
<META NAME="ROBOTS" CONTENT="NOINDEX">
<title>The page cannot be found</title>
<META HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
</head>
<script>
function Homepage(){
<!--
// in real bits, urls get returned to our script like this:
// res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm
//For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"
DocURL = document.URL;
//this is where the http or https will be, as found by searching for :// but skipping the res://
protocolIndex=DocURL.indexOf("://",4);
//this finds the ending slash for the domain server
serverIndex=DocURL.indexOf("/",protocolIndex + 3);
//for the href, we need a valid URL to the domain. We search for the # symbol to find the begining
//of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.
//urlresult=DocURL.substring(protocolIndex - 4,serverIndex);
BeginURL=DocURL.indexOf("#",1) + 1;
urlresult=DocURL.substring(BeginURL,serverIndex);
//for display, we need to skip after http://, and go to the next slash
displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);
InsertElementAnchor(urlresult, displayresult);
}
function HtmlEncode(text)
{
return text.replace(/&/g, '&').replace(/'/g, '"').replace(/</g, '<').replace(/>/g, '>');
}
function TagAttrib(name, value)
{
return ' '+name+'="'+HtmlEncode(value)+'"';
}
function PrintTag(tagName, needCloseTag, attrib, inner){
document.write( '<' + tagName + attrib + '>' + HtmlEncode(inner) );
if (needCloseTag) document.write( '</' + tagName +'>' );
}
function URI(href)
{
IEVer = window.navigator.appVersion;
IEVer = IEVer.substr( IEVer.indexOf('MSIE') + 5, 3 );
return (IEVer.charAt(1)=='.' && IEVer >= '5.5') ?
encodeURI(href) :
escape(href).replace(/%3A/g, ':').replace(/%3B/g, ';');
}
function InsertElementAnchor(href, text)
{
PrintTag('A', true, TagAttrib('HREF', URI(href)), text);
}
//-->
</script>
<body bgcolor="FFFFFF">
<table width="410" cellpadding="3" cellspacing="5">
<tr>
<td align="left" valign="middle" width="360">
<h1 style="COLOR:000000; FONT: 13pt/15pt verdana"><!--Problem-->The page cannot be found</h1>
</td>
</tr>
<tr>
<td width="400" colspan="2">
<font style="COLOR:000000; FONT: 8pt/11pt verdana">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</font></td>
</tr>
<tr>
<td width="400" colspan="2">
<font style="COLOR:000000; FONT: 8pt/11pt verdana">
<hr color="#C0C0C0" noshade>
<p>Please try the following:</p>
<ul>
<li>If you typed the page address in the Address bar, make sure that it is spelled correctly.<br>
</li>
<li>Open the
<script>
<!--
if (!((window.navigator.userAgent.indexOf("MSIE") > 0) && (window.navigator.appVersion.charAt(0) == "2")))
{
Homepage();
}
//-->
</script>
home page, and then look for links to the information you want.</li>
<li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
</ul>
<h2 style="font:8pt/11pt verdana; color:000000">HTTP 404 - File not found<br>
Internet Information Services<BR></h2>
<hr color="#C0C0C0" noshade>
<p>Technical Information (for support personnel)</p>
<ul>
<li>More information:<br>
<a href="http://www.microsoft.com/ContentRedirect.asp?prd=iis&sbp=&pver=5.0&pid=&ID=404&cat=web&os=&over=&hrd=&Opt1=&Opt2=&Opt3=" target="_blank">Microsoft Support</a>
</li>
</ul>
</font></td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
|
|
#119 |
|
DriverHeaven Junior Member
Join Date: Jan 2007
Posts: 23
Rep Power: 0 ![]() |
so can i use all of these or some?-running 128MB on XP. also if i use multiple, can i put them under a single Windows Registry Editor Version 5.00 heading or do i use seperate heading fer each?
|
|
|
|
|
|
#120 |
|
DriverHeaven Junior Member
Join Date: Dec 2007
Posts: 60
Rep Power: 16 ![]() ![]() ![]() ![]() ![]() |
Customize Windows Explorer startup view
1. Click Start, point to Programs, then Accessories, then right–click Windows Explorer, and click Properties.
2. Under Target field, which reads %SystemRoot%\explorer.exe, change to make the line read %SystemRoot%\explorer.exe /e, /select, C:\ 3. Click OK. How to display special Explorer Objects using command line Last edited by WxMan1; Apr 8, 2009 at 12:56 AM. |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|