This exploit makes any download instant, no waiting time, for Uploading.com.
When you see the download timer, enter this into the address bar:
Code:
javascript: for (var i = 0; i<75; i++) {countdown2();} void(0);
Saturday, August 1, 2009
Create your own windows loggon message
Create your own windows loggon message
Click Start, click Run, type regedit, and then click OK.In the Registry Editor,
drill down to the following key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinlogonRightclick LegalNoticeCaption,
click Modify, type My Windows XP Machine, and then click OK.Right-click LegalNoticeText, click Modify, and then type your message.Close the editor and your new message will appear at every log on.
Click Start, click Run, type regedit, and then click OK.In the Registry Editor,
drill down to the following key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinlogonRightclick LegalNoticeCaption,
click Modify, type My Windows XP Machine, and then click OK.Right-click LegalNoticeText, click Modify, and then type your message.Close the editor and your new message will appear at every log on.
Folder Lock without any S/W
Many people have been looking for an alternative way to lock folders without the use of any alternative software.
So, here you go.
Open Notepad and copy the below code and save as locker.bat.
Please don't forget to change your password in the code it's shown the place where to type your password.
Now double click on locker .bat
First time start, it will create folder with Locker automatically for u. After creation of the Locker folder, place the contents u want to lock inside the Locker Folder and run locker.bat again.
I hope this comes in handy.
************************************************** ********
Many people have been looking for an alternative way to lock folders without the use of any alternative software.
So, here you go.
Open Notepad and copy the below code and save as locker.bat.
Please don't forget to change your password in the code it's shown the place where to type your password.
Now double click on locker .bat
First time start, it will create folder with Locker automatically for u. After creation of the Locker folder, place the contents u want to lock inside the Locker Folder and run locker.bat again.
I hope this comes in handy.
************************************************** ********
Code:
cls @ECHO OFF title Folder Locker if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p "pass=>" if NOT %pass%== type your password here goto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Locker echo Locker created successfully goto End :EndHide ur drive without any softwares
you can hide your “private” files using a nifty little registry hack that will completely remove an entire drive from your computer. The drive will not show up in My Computer, will not be accessible from the command prompt, and won’t even show up in Safe Mode! Ok, so here’s how to implement the hack: first off, back up your registry as this requires adding a key to the registry. Once you’ve backed up your registry, open the registry editor by clicking on Start, Run and typing in regedit.
Now navigate to the following registry hive shown below:
HKEY_CURRENT_USER \Software\Microsoft\Windows\CurrentVersion\
Policies\Explorer
Right-click on Explorer and choose New and then DWORD Value.
Name the new value NoDrives and then double click on it to open the properties dialog box. Click on Decimal for the Base unit.
Type in one of the following values depending on that drive letter you want to hide.
Code:
A: 1, B: 2, C: 4, D: 8, E: 16, F: 32, G: 64,
H: 128, I: 256, J: 512, K: 1024, L: 2048, M: 4096,
N: 8192, O: 16384, P: 32768, Q: 65536, R: 131072,
S: 262144, T: 524288, U: 1048576, V: 2097152, W: 4194304,
X: 8388608, Y: 16777216, Z: 33554432, ALL: 67108863If you want to hide drive E, just type in the value 16. The really cool thing about this trick is the fact that you can hide multiple drives by adding the numbers of the particular drives together. For example, if you want to hide drive E and drive G, you would type in the number 80, which is 64 + 16.
Restart your computer and your drive will now be hidden! Trying to hide your system drive (C) will not work as Windows has to use this drive to run correctly, so don’t store your secret files there!
When you want to get your drives back, change the value of NoDrives to 0 or simply delete the value altogether. Of course, having to do this everyday can be a pain, so if you’re up for it, you can try and write a registry file that will allow you to insert and delete the value by just double-clicking a file.
This trick also works for mapped drives, so if you want to hide mapped drives, you can do it this way (though it might just be easier to disconnect a mapped drive).
Enjoy!
Now navigate to the following registry hive shown below:
HKEY_CURRENT_USER \Software\Microsoft\Windows\CurrentVersion\
Policies\Explorer
Right-click on Explorer and choose New and then DWORD Value.
Name the new value NoDrives and then double click on it to open the properties dialog box. Click on Decimal for the Base unit.
Type in one of the following values depending on that drive letter you want to hide.
Code:
A: 1, B: 2, C: 4, D: 8, E: 16, F: 32, G: 64,
H: 128, I: 256, J: 512, K: 1024, L: 2048, M: 4096,
N: 8192, O: 16384, P: 32768, Q: 65536, R: 131072,
S: 262144, T: 524288, U: 1048576, V: 2097152, W: 4194304,
X: 8388608, Y: 16777216, Z: 33554432, ALL: 67108863If you want to hide drive E, just type in the value 16. The really cool thing about this trick is the fact that you can hide multiple drives by adding the numbers of the particular drives together. For example, if you want to hide drive E and drive G, you would type in the number 80, which is 64 + 16.
Restart your computer and your drive will now be hidden! Trying to hide your system drive (C) will not work as Windows has to use this drive to run correctly, so don’t store your secret files there!
When you want to get your drives back, change the value of NoDrives to 0 or simply delete the value altogether. Of course, having to do this everyday can be a pain, so if you’re up for it, you can try and write a registry file that will allow you to insert and delete the value by just double-clicking a file.
This trick also works for mapped drives, so if you want to hide mapped drives, you can do it this way (though it might just be easier to disconnect a mapped drive).
Enjoy!
Friday, July 31, 2009
Auto Link Checker As You Browse
This is for anyone who uses Firefox and will end the need for you to manually check RapidShare links as any coded links are automatically displayed as live or dead while you simply browse the page. This is good for you moderators when doing reports.
Sample pics of what you see while browsing:
Live links:
Dead links:
Step 1. Go here and get the Firefox Greasemonkey Addon.
Code:
https://addons.mozilla.org/en-US/firefox/addon/748
Step 2. Go here and click on the ' Install this script ' button in the top right corner of the page.
Code:
http://userscripts.org/scripts/show/9467
Note - If RapidShare is down you will know instantly as no green or red circle will appear after the links at all !
There are heaps of other scripts you can install to Greasemonkey to customize Firefox and save yourself heaps of time whilst doing other daily chores - just type in Google ' greasemonkey scripts ' and pick the ones you need !
her's a script add on for firefox that does all of the Shares sites
sites that r supported
+ rapidshare.com
+ megaupload.com
+ filefactory.com
+ depositfiles.com
Code:
http://userscripts.org/scripts/show/24984
Wednesday, July 29, 2009
Enable Hidden BootScreen in Windows Vista
The Windows Vista BootScreen is pointless, but Microsoft decided to hide a more visually appealing boot screen that can easily be enabled with very little trouble. I'm not sure why they didn't make the boot screen better.
If you really want a better boot screen, you can check out my article on creating a custom boot logo.
Here's the default boot screen:

And here's the hidden one, called "Aurora"

All you have to do is type msconfig into the start menu search box, and hit enter.

Click the Boot tab, and then check the "No GUI boot" checkbox.

Hit OK and reboot the computer. You should see the new boot screen immediately.
Note: You may get a Windows Defender error on the next startup. You can enable the system config utility using the tray icon and this error will go away.
ill post the create own boot logo in an moment
If you really want a better boot screen, you can check out my article on creating a custom boot logo.
Here's the default boot screen:
And here's the hidden one, called "Aurora"
All you have to do is type msconfig into the start menu search box, and hit enter.
Click the Boot tab, and then check the "No GUI boot" checkbox.
Hit OK and reboot the computer. You should see the new boot screen immediately.
Note: You may get a Windows Defender error on the next startup. You can enable the system config utility using the tray icon and this error will go away.
ill post the create own boot logo in an moment
Enable or disable Windows Task Manager
Task manager is a powerful Windows tool for managing system services, processes, monitoring system activity and starting or closing applications. It is basically extended version of run box and it comes very handy to operate within Windows system. That’s way many system administrators prefer to disable task manager on public computers to restrict access to major critical system resources which could lead to system compromise.Here we will show you how to modify registry to disable and re-enable "Windows task manager".So guys,here we go:
Goto start and click on run(Win+r) and type in regedit and find this input:
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
If you do not see “System” folder under Policies you can create it by right mouse click on Policies > Key > and name it System. Than point your mouse pointer to an empty area, right click it and choose create new DWORD (32 bit) value. Name it DisableTaskMgr and press enter. Than double click it and set Hexadecimal value to 1. Press enter and reboot computer. After than task manager will be disabled on your machine and inaccessible. If you later decide to enable task manager again, navigate once against to dword 32 value we just created and simply delete it or change value to 0. Now navigate to
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
If there’s no key called “System” right click Policies navigate to “New > Key” in the right click menu and type “System” to create a new key.(skip this step if you have the key) To disable task manager right click the empty area in the right side pane and create a key with the following settings “New > DWORD (32-bit) Value” and type “DisableTaskMgr” and press Enter.(without the quotes) Right click on “DisableTaskMgr” and click “Modify”, type 1 and press ok.To enable task manager simply navigate to
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
right click “DisableTaskMgr” click delete and click yes for confirmation.
Done!
Regards!!!
~snake~
Goto start and click on run(Win+r) and type in regedit and find this input:
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
If you do not see “System” folder under Policies you can create it by right mouse click on Policies > Key > and name it System. Than point your mouse pointer to an empty area, right click it and choose create new DWORD (32 bit) value. Name it DisableTaskMgr and press enter. Than double click it and set Hexadecimal value to 1. Press enter and reboot computer. After than task manager will be disabled on your machine and inaccessible. If you later decide to enable task manager again, navigate once against to dword 32 value we just created and simply delete it or change value to 0. Now navigate to
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
If there’s no key called “System” right click Policies navigate to “New > Key” in the right click menu and type “System” to create a new key.(skip this step if you have the key) To disable task manager right click the empty area in the right side pane and create a key with the following settings “New > DWORD (32-bit) Value” and type “DisableTaskMgr” and press Enter.(without the quotes) Right click on “DisableTaskMgr” and click “Modify”, type 1 and press ok.To enable task manager simply navigate to
"HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\System"
right click “DisableTaskMgr” click delete and click yes for confirmation.
Done!
Regards!!!
~snake~
Subscribe to:
Posts (Atom)