|
|||||||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#61 |
|
DriverHeaven Newbie
Join Date: May 2003
Posts: 11
Rep Power: 0 ![]() |
Really Nice :)
Just spotted these , real nice . GJ who made these
__________________
|
|
|
|
|
|
#62 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Thanks, btw whats GJ?
|
|
|
|
|
|
#63 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
this will not make any pc run better but it made me run faster..
If you have an app, files or folders that you open all the time and don't want to waste time finding its shortcut on desktop or in start menu item or perhaps you like to keep your hands off the mouse sometime, below reg files might be useful..
------------------------------------- Windows Registry Editor Version 5.00 ;Windows XP ;Run any apps, files and folders from "Run.." dialog box ;when modifying, make sure that you use "short name" followed by ".exe" ;and use apps "full path" ;By panging. ;(e.g. I'll just type "dic" in the Run box to open a program called "Ultralingua") [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\App Paths\dic.exe] @="D:\\Program Files\\Ultralingua\\Ultralingua 4\\Ultralingua.exe" ;(e.g. type "tool" in the Run box to open a folder named "VBS Tools") [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\App Paths\tool.exe] @="\"E:\\Tools\\VBS Tools\"" ;(e.g. type "note" in the Run box to open a .txt file named "MyEditor" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\App Paths\note.exe] @="\"G:\\BkupDocs\\Fix Infos\\MyEditor.txt\"" ------------------------------------------------- |
|
|
|
|
|
#64 |
|
BANNED
Join Date: Jul 2002
Location: Indiana , USA
Posts: 2,677
Rep Power: 0 ![]() |
i think the GJ = Great Job im not sure though
|
|
|
|
|
|
#65 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Thanks
|
|
|
|
|
|
#66 |
|
DriverHeaven Newbie
Join Date: May 2003
Posts: 11
Rep Power: 0 ![]() |
Close .. GJ is Good Job ^^
__________________
|
|
|
|
|
|
#67 | |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Re: this will not make any pc run better but it made me run faster..
Quote:
the above reg tweaks will create a new key under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths and it can be removed (or added) at any time without having to reboot.. do not alter any of the existing keys there.. e.g. when you navigate to "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ap p Paths" you'll see almost about all installed programs there like "mozilla.exe" (if you have it) we can type "mozilla" in the Run box to start Mozilla, but if you like a shorter name.. you'll need to create a new key manually or make a .reg file to import into your registry..like below.... so you can type just "moz" to run the program (i usually type "moz -quiet" ) -------------------------------- Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\App Paths\moz.exe] @="D:\\Program Files\\mozilla.org\\Mozilla\\Mozilla.exe" ------------------------------ Last edited by Net; Jul 9, 2003 at 08:02 PM. |
|
|
|
|
|
|
#68 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Disabling XP Pro Services(34 Services) - by using "Windows Script Host" - .VBS version
---copy (without the lines) and save file as .VBS ---double click to run the file.. ----------------------------------------- ' Disabling34winXPproServices.vbs ' Run this script on Windows XP Pro ONLY. ' Script Type/Size = VBScript / 3 KB. Option Explicit : On Error Resume Next : Dim pg1, pg2, pg3, pg4 : Dim pg5, pg5a, pg6 Set pg1 = WScript.CreateObject("WScript.Shell") pg2 = "HKLM\SYSTEM\CurrentControlSet\Services\" pg3 = "00000004" pg4 = "REG_DWORD" pg1.RegWrite pg2 & "Alerter\Start", pg3, pg4 pg1.RegWrite pg2 & "wuauserv\Start", pg3, pg4 pg1.RegWrite pg2 & "BITS\Start", pg3, pg4 pg1.RegWrite pg2 & "ClipSrv\Start", pg3, pg4 pg1.RegWrite pg2 & "Browser\Start", pg3, pg4 pg1.RegWrite pg2 & "ERSvc\Start", pg3, pg4 pg1.RegWrite pg2 & "helpsvc\Start", pg3, pg4 pg1.RegWrite pg2 & "Cisvc\Start", pg3, pg4 pg1.RegWrite pg2 & "PolicyAgent\Start", pg3, pg4 pg1.RegWrite pg2 & "Messenger\Start", pg3, pg4 pg1.RegWrite pg2 & "Netlogon\Start", pg3, pg4 pg1.RegWrite pg2 & "mnmsrvc\Start", pg3, pg4 pg1.RegWrite pg2 & "NetDDE\Start", pg3, pg4 pg1.RegWrite pg2 & "NetDDEdsdm\Start", pg3, pg4 pg1.RegWrite pg2 & "NtLmSsp\Start", pg3, pg4 pg1.RegWrite pg2 & "SysmonLog\Start", pg3, pg4 pg1.RegWrite pg2 & "WmdmPmSN\Start", pg3, pg4 pg1.RegWrite pg2 & "RSVP\Start", pg3, pg4 pg1.RegWrite pg2 & "RDSessMgr\Start", pg3, pg4 pg1.RegWrite pg2 & "RemoteRegistry\Start", pg3, pg4 pg1.RegWrite pg2 & "seclogon\Start", pg3, pg4 pg1.RegWrite pg2 & "SCardSvr\Start", pg3, pg4 pg1.RegWrite pg2 & "SCardDrv\Start", pg3, pg4 pg1.RegWrite pg2 & "SSDPSRV\Start", pg3, pg4 pg1.RegWrite pg2 & "srservice\Start", pg3, pg4 pg1.RegWrite pg2 & "LmHosts\Start", pg3, pg4 pg1.RegWrite pg2 & "TlntSvr\Start", pg3, pg4 pg1.RegWrite pg2 & "UPS\Start", pg3, pg4 pg1.RegWrite pg2 & "upnphost\Start", pg3, pg4 pg1.RegWrite pg2 & "uploadmgr\Start", pg3, pg4 pg1.RegWrite pg2 & "WebClient\Start", pg3, pg4 pg1.RegWrite pg2 & "W32Time\Start", pg3, pg4 pg1.RegWrite pg2 & "WZCSVC\Start", pg3, pg4 pg1.RegWrite pg2 & "WmiApSrv\Start", pg3, pg4 pg5 = "Accomplished!" pg5a = MsgBox(pg5, 1024, "Disabling 34 XP Pro Services. by Panging") Reboot Sub Reboot If MsgBox("All 34 services's status will change after rebooting." & _ vbCRLF & vbCRLF & "....reboot your computer now?", _ vbQuestion + vbYesNo + pg6, "Reboot!") =6 Then pg1.Run "shutdown.exe -r -t 20" End If End Sub ---------------------------------------------------------- |
|
|
|
|
|
#69 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Shoutcut to Shutdown (with its icon)
for Windows XP ONLY ------------------------------------- ' ShortcutCreator.vbs ' run this script to create a shortcut to shutdown your PC ' pls feel free to modify this script as you like. Ask = "....create a shortcut to shutdown your PC?" Credit = "Shortcut Creator! By Panging" Call YeaNay() Dim One, Two, Three, Four Set One = WScript.CreateObject("WScript.Shell") Two = One.SpecialFolders("Desktop") Set Three = One.CreateShortcut(Two & "\Shutdown.lnk") Three.TargetPath = "%windir%\system32\shutdown" Three.Arguments = " -s -f -t 10" Three.Hotkey = "F8" Three.WorkingDirectory = "%windir%\system32" Three.IconLocation = "%windir%\system32\shell32.dll, 215" Three.WindowStyle = 1 Three.Save WScript.Echo "Accomplished!" Sub YeaNay() Four = MsgBox(Ask, vbOKCancel + vbInfo, Credit) If Four = vbCancel Then WScript.Quit End If End Sub ----------------------------------- Last edited by Net; Jul 27, 2003 at 01:55 AM. |
|
|
|
|
|
#70 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
..just something that fit......
in terms of the "for those not content with the word "default""
this's not a new thing really.. i'm sure many of you guys have seen it before in java script.... its just i've made it for using on my own so its wont be so many functions likes most of 3rd party programs will have.... ..use this VBScript (MS's scripting version of Visual Basic) to set up a group of IEs.. i use it for a quick news reading on some 4-6 of news's web sites.. anyway you can modify it to suit you best. copy the below code (without the lines - between topmost and the last lines) into a file and save it with a .VBS extension.. you can run it directly or.. create a shortcut to it with your prefered icon.. or you can also create an IE menu button to run this group IE. hope it will be useful. --------------------------------------------------- ' GroupIE.vbs - by Panging ' Windows XP Only Option Explicit : On Error Resume Next '=== add/remove ie window and modify URLs ========== Dim n0 : set n0 = CreateObject("InternetExplorer.Application") Dim n1 : set n1 = CreateObject("InternetExplorer.Application") Dim n2 : set n2 = CreateObject("InternetExplorer.Application") Dim n3 : set n3 = CreateObject("InternetExplorer.Application") 'Off-topic n0.left=00 : n0.top=00 : n0.navigate "http://www.driverheaven.net/forumdisplay.php?s=&forumid=7" n0.height=500 : n0.width=500 : n0.menubar=1 : n0.toolbar=1 : n0.visible=1 'Tech n1.left=30 : n1.top=30 : n1.navigate "http://www.driverheaven.net/forumdisplay.php?s=&forumid=23" n1.height=500 : n1.width=500 : n1.menubar=1 : n1.toolbar=1 : n1.visible=1 'News n2.left=60 : n2.top=60 : n2.navigate "http://www.driverheaven.net/forumdisplay.php?s=&forumid=21" n2.height=500 : n2.width=500 : n2.menubar=1 : n2.toolbar=1 : n2.visible=1 ' New Posts n3.left=90 : n3.top=90 : n3.navigate "http://www.driverheaven.net/search.php?s=&action=getnew" n3.height=500 : n3.width=500 : n3.menubar=1 : n3.toolbar=1 : n3.visible=1 '================================================= Dim pg, odd set pg = CreateObject("WScript.Shell") set odd = CreateObject("Shell.Application") pg.popup "Tile?" : odd.TileHorizontally '------------------------------------------------------------------------------ ' re-set IE window size to default setting.. ' will take effect after closing all IE in this group.. ' and then re-open it from other internet shortcuts. '------------------------------------------------------------------------------ pg.RegDelete "HKCU\Software\Microsoft\Internet Explorer\Main\Window_Placement" set pg = Nothing set odd = Nothing WScript.Quit ------------------------------------------ edit ---without the lines - between topmost and the last lines Last edited by Net; Aug 2, 2003 at 02:58 AM. |
|
|
|
|
|
#71 | |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Virtual Memory for Windows XP...
i think both articles below are very good., i like to put it here, hope it useful and give the correct answer or solution to some of questions in future..
Quote:
|
|
|
|
|
|
|
#72 | |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
well i took it all i dont know what i'm going to get from taken it... hope its okay
Quote:
Last edited by Net; Aug 4, 2003 at 12:17 AM. |
|
|
|
|
|
|
#73 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
--------------END------------------------ Edit- Add afews more below. for the 2nd time. this post is too long! edit-- fix some breaks caused by vBulletin, if its not work i may have to remove or host a text or html file just to make sure heck if i've to do, it'll be a bigger one then. edit--removed all the REGs on this spot there're too many breaks and excessive blank spaces. Last edited by Net; Oct 11, 2003 at 01:40 PM. |
|
|
|
|
|
#74 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
just tested the file myself just now, copy/paste on my text editor and save it as a .reg, imported it. and the file is worked just fine. hope it will be useful.
|
|
|
|
|
|
#75 |
|
DriverHeaven Newbie
Join Date: May 2003
Posts: 11
Rep Power: 0 ![]() |
Nice, ill try them myself i think. Good work
__________________
|
|
|
|
|
|
#76 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
some of the registry changes can fully take effect after restarting the Explorer shell....
------------------------------- 'restart_XP_Explorer_Shell.vbs 'For XP Pro only. Message = "...restart the XP Explorer Shell ??" YeaNay = MsgBox(Message, vbYesNo, "Panging.") If YeaNay = 6 Then On Error Resume Next For each process in GetObject("winmgmts:"). _ ExecQuery ("select * from Win32_Process where name='explorer.exe'") process.terminate(0) Next : MsgBox "Good luck!" & vbcr & vbcr, 4096, "Done!" Else : MsgBox "CALLED OFF!", 4096, "G-Bye!" End If ---------------------------- |
|
|
|
|
|
#77 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
more--
---------------- removed all the REGs on this spot there're too many breaks and excessive blank spaces. --------------END------------------------ always make backup, a restore pont - a full registry backup - or go to each registry key(s) that you want to tweak, export it and combine them into one REG file (eg. original.reg). you need to be able to restore things to the way they were before, if a change doesn't work out the way you intended. you might rank-order these tweaks differently or add some others, remove and modify values. Last edited by Net; Oct 11, 2003 at 01:42 PM. |
|
|
|
|
|
#78 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
i cannot fix some lines breaks on the above posted
all of them work before but when i add some more i've found 2 of them wont work, ***; Add Icon Cache Size menu to Folder Options View - within Advanced settings tab. ***; Add Recent Document Menu to Classic Start menu - within Advanced start menu option box. some parameters need to adjusted after copy/paste the reg entries from the above. will write/host a file with a link here soon.
|
|
|
|
|
|
#79 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
just uploaded,
and here's link...http://www.pd.100megsfree5.com/XP_Pr...s_reg003a.html |
|
|
|
|
|
#80 | |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Quote:
you may want to remove this REG file due to its only work half way on both .DLL and .OCX file. it'll enter the Register commands but will not enter the Unregister ones into windows registry since it had some breaks at the command there, this wont cause anything but just didt work. all commands will work fine on yours if you use .reg file from your HDD, but if you remove the entries and then re-apply using file from this page then you'll see. didt mean to pick anything, i woud use PM but if anyone like to use the function they can see the info. so just re-apply/overwrite it with my reg file will corr the command parameters.
|
|
|
|
|
|
|
#81 |
|
DriverHeaven Newbie
Join Date: Nov 2003
Posts: 6
Rep Power: 0 ![]() |
download Cacheman (search it with google)
it has cache and mem recovery profiles for "games" "servers" "low mem computers" and so on.... my favourite tool for cache crap |
|
|
|
|
|
#82 |
|
DriverHeaven Newbie
Join Date: Feb 2003
Posts: 10
Rep Power: 0 ![]() |
I've don almost every tweak in this tread... hell even of this forum (till page7)
But I was wondering... These tweaks are in tweakxp so I dont hav a reason to instal Tweakxp anymore since it wil just use resources when starting with winXP. But I do know tweakXP had tweaks for each kind of gfx and cpu (for me that would be amd Tbred B and gf3) I would like to manualy put those weaks in my reg does anyone know them or where I can find'em? |
|
|
|
|
|
#83 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
more info pls. like what's it says or explains on those options.. got to have more info until i can check it and see if it can be done by hacking registry alone.
|
|
|
|
|
|
#84 |
|
DriverHeaven Extreme Member
|
i working on turing my tweaking into dl able .reg/.bat files
posable vbs (bu i has a bad rap so will try not to use it)
__________________
|
|
|
|
|
|
#85 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
i dont like to give out any file as a ready to use unit.. for me, to convert/create a ready to use like .bat,.vbs or .reg is easy but there'll be prob along the way if i put those files for public d/l.
thiss my 2cents. Neon.
|
|
|
|
|
|
#86 |
|
DriverHeaven Newbie
Join Date: Feb 2003
Posts: 10
Rep Power: 0 ![]() |
when downloading TweakXP one 1 of the Tabs there are some tweaks for optimal porformance U can choose between Amd Druron/Thunderbird/etc... (cache related?) Same with the videocard GF/ATI/... Alpying this gave me a noticble boost in FPS on my older rig Is there any way to manualy enter these reg tweaks (if they are reg tweaks) so I dont hav to install TweakXP I'm on a 256mb ram rig so I really dont like progs loading when XP loads On my older rig I really noticed a diference in FPS ... Sorry I cant really help/understand u but this is new stuff for me ![]() I'm pleased with a link so I can learn it a bit I did almost every reg tweak in this tread (and forum) I've bin playing with the XP services and stil have only 50% free ram (of 256mb) and I'm not really pleased Hope to do better when I get this stuff down grtz |
|
|
|
|
|
#87 |
|
DriverHeaven Newbie
Join Date: May 2003
Posts: 11
Rep Power: 0 ![]() |
Yea, XP is a harsh on memory .. id really recommand to work with it if you have at least 384MB of RAM .. remember that Win2K is almost the same with less requirement due to the older GUI system.
__________________
|
|
|
|
|
|
#88 | |
|
DriverHeaven Extreme Member
|
Quote:
anyways microsoft said that even addleing that tweak, asuming xp dectected it worng (like on a p2 cpu) it only yealds less than 1% perfoance difference....
__________________
|
|
|
|
|
|
|
#89 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
re
could you give a link to the descriptions of that tweak? i dont have the program.
|
|
|
|
|
|
#90 | |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 55 ![]() ![]() ![]() ![]() |
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|