Posts

Showing posts with the label xp

Usia Windows XP dan Office 2003 Hanya Tinggal Dua Tahun Lagi

Image
Usia Windows XP dan Office 2003 Hanya Tinggal Dua Tahun Lagi T idak terasa, usia Windows XP kini sudah 11 tahun. Walaupun Microsoft telah meluncurkan OS terbaru, nampaknya Windows XP masih banyak digunakan oleh para pengguna komputer. Namun, pihak Microsoft pada hari kemarin mengingatkan bahwa usia Windows XP hanya tinggal 2 tahun lagi. Microsoft mengingatkan para pengguna untuk mengupgrade PC mereka, karena tepatnya tanggal 08 April 2014 Windows XP akan ditiadakan. Tidak hanya itu saja, Mc Office 2003 juga akan berakhir dibulan yang sama, Microsoft memberikan alternatif Mc Office 2010 kepada mereka yang sudah terlanjur nyaman menggunakan Mc Office 2003. Windows XP banyak digunakan di Negara-negara berkembang, seperti Indonesia dan Malaysia. Di Amerika Serikat sendiri, masih ada sekitar 22 persen pengguna yang masih setia dengan Windows XP. Jika anda masih menggunakan Windows XP, segera upgrade PC anda sebelum tanggal yang telah ditentukan oleh Microsoft. Padahal penggunanya masih bany...

Using Simple Recording Tool In widows XP Professional

Using Simple Recording Tool In widows XP Professional   Using Simple Recording Tool A lot of people really do like using windows sound recorder , but sometimes fin ding and knowing how to use is the main issue behind it all. Using a softw are is also a good idea , but most software developers will not allow them free , so saving is does not all that easy . Here i wi ll be showing you the very on easy ways o f recording using the Wind ows sound recorder tool.   Its possible to make great recordings using the mic or line in jack of any computer. Using the mic jack is usually the best choice when recording directly from a computer microphone. The mic jack has a light pink color, and the sound headset jack is green. In case you confuse our self, there is a means of noting where to plug each of the jacks, by just matching up the colors as colored in the jack slots on your pc. You have to make sure your mic is working probably, ells you will get nothing. 1. Click on start ...

VB Script to Know Windows XP Product Key

VB Script to Know Windows XP Product Key If you ever loose your Windows XP Product Key (CD Key or Serial Key), you can find it through registry. But the value will be encoded, so following code will find the key in registry and decodes it and shows it in a message box. This way you can get back your Serial Key. Create a Notepad file with title "ProductKey.vbs" and write the following code into it and save the file. If you double click the file, it will show the product key. ****************************************************** Set WshShell = CreateObject("WScript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionDigitalProductId")) Function ConvertToKey(Key) Const KeyOffset =52 i = 28 Chars="BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur=Cur*256 Cur=Key(x+KeyOffset)+Cur Key(x+KeyOffset)=(Cur24) And 255 Cur= Cur Mod 24 x=x-1 Loop While x>=0 i=i-1 KeyOutput = Mid(Chars,Cur+1,1) & Ke...