Friday, 16 December 2011

GET AKASH TAB REGISTER here

Aakash Tab Launched and Ready to Buy-Book Here

I think you all are impessed with my 2 articles on Aakash tab. One was about its specifications and and other was about its disadvantages
Have a check here Top disadvantages of Aakash tab and Akash tab just for 2999 RS-Great opportunity for students
After the a long while it has launched its first edition series . The news is brought you by their official site and let's look the key features


SpecificationsAakashUbiSlate 7 (The upgraded version of Aakash)
AvailabilityNOW!Late January
PricingRs.2,500Rs.2,999
MicroprocessorArm11 – 366MhzCortex A8 – 700 Mhz
Battery2100 mAh3200 mAh
OSAndroid 2.2Android 2.3
NetworkWiFiWiFi & GPRS (SIM & Phone functionality)


To book the first edition,
CLICK HERE
Call them on 18001802180


How to see hidden files in DOS

at command prompt just type
dir /ah
if the list is too long u can use
dir /ah/p/w

Boot Windows Fast

1. Open notepad.exe, type "del c:windowsprefetch tosboot-*.* /q" (without the quotes) & save as "ntosboot.bat" in c:
2. From the Start menu, select "Run..." & type "gpedit.msc".
3. Double click "Windows Settings" under "Computer Configuration" and double click again on "Shutdown" in the right window.
4. In the new window, click "add", "Browse", locate your "ntosboot.bat" file & click "Open".
5. Click "OK", "Apply" & "OK" once again to exit.
6. From the Start menu, select "Run..." & type "devmgmt.msc".
7. Double click on "IDE ATA/ATAPI controllers"
8. Right click on "Primary IDE Channel" and select "Properties".
9. Select the "Advanced Settings" tab then on the device 0 or 1 that doesn't have 'device type' greyed out select 'none' instead of 'autodetect' & click "OK".
10. Right click on "Secondary IDE channel", select "Properties" and repeat step 9.
11. Reboot your computer.

WindowsXP should now boot REALLY faster.

Firefox Tweaks

Firefox Tweaks

o disable the stupid feature in WinXP which tries to send a very time areport to microsoft e program crashes you will have to do this:

*************************************************************************
Open Control Panel
Click on Preformance and Maintenance.
Click on System.
Then click on the Advanced tab
Click on the error reporting button on the bottom of the windows.
Select Disable error reporting.
Click OK
Click OK
*************************************************************************

Wednesday, 14 December 2011

REG ENABLE DISABLE

copy the code in notpad and save it with extension .vbs like this (enable reg.vbs)

Dim otakatik
ManageRegedit()
Sub ManageRegedit()
Set otakatik=WScript.CreateObject("wscript.shell")
describe="Type 0 or 1 : " & VbCrLf &_
             "[0] -> Enable Regedit." & VbCrLf &_
             "[1] -> Disable Regedit."
question=InputBox(describe, "Edit Regedit",0)
otakatik.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion" &_
                        "\Policies\System\DisableRegistryTools",question,"REG_DWORD"
If question=1 Then
   MsgBox "Registry is disabled.",VbInformation, "Disabled"
Else
   If question=0 Then
      Msgbox "Registry is enabled.",VbInformation, "Enabled"
      otakatik.RegDelete "HKCU\Software\Microsoft\Windows\CurrentVersion" &_
                                "\Policies\System\DisableRegistryTools"
   Else
      Msgbox "Input 0 or 1 only !",VbInformation, "Wrong Input"
      ManageRegedit()
   End If
End If
End Sub