Sabtu, 26 Maret 2011

0

[VB.NET] Mari Kita Belajar Encoding String ke Hexadesimal

  • Sabtu, 26 Maret 2011
  • Nurkholish Ardi Firdaus
  • Awalnya saya penasaran dan ingin mempelajari tentang heksadesimal dalam pemrograman pada VB.NET. Bagaimana caranya mengkonversi string kedalam heksadesimal?. Ternyata setelah dipahami tidak terlalu sulit. Heksadesimal itu sendiri adalah sistem bilangan yang menggunakan 16 simbol (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F), oleh karena itu heksadesimal disebut dengan sistem bilangan base16 (berbasis dari 16 simbol). Untuk bisa mengkorversi string kedalam heksadesimal kita bisa melakukannya dengan sederhana seperti dibahwah ini:

    Pseudo Code pada VB.NET:

    Fungsi StringToHex(txt:String)
    1. Variable txt = String yang akan kita konversi
    2. Array bytes() = Array bertipe byte
    3. bytes=System.Text.Encoding.ASCII.GetBytes(txt)
    4. Kembalikan nilai Replace(BitConverter.ToString(bytes), "-", "")


    Bingung memahaminya?, mari kita implementasikan saja kode tadi ke VB.NET

    Buatlah: 1 Form, 2 TextBox, 2 Button


    Atur seperti ini:


    Atur Seperti Ini Sesuai Nomor:
    1=TextBox
       Name: txtStr
       MultiLine: True
    2=Button
       Name: cmdToHex
       Text: Convert >>>
    3=Button
       Name: cmdToStr
       Text: <<< Convert
    4=TextBox
       Name: txtHex
       MultiLine: True
    
    Nah, tinggal masukin Source Code berikut:
    Public Class Form1
        ' coded by nurkholish af
        ' http://www.cr0wja.co.cc
    
        Private Sub cmdToHex_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdToHex.Click
            txtHex.Text = StrToHex(txtStr.Text)
        End Sub
        Private Function StrToHex(ByVal txt As String) As String
            Dim bytes() As Byte
            Dim strHex As String
            bytes = System.Text.Encoding.ASCII.GetBytes(txt)
            strHex = Replace(BitConverter.ToString(bytes), "-", "")
            Return strHex
        End Function
        Private Function HexToStr(ByVal txt As String) As String
            Dim bound As Int32 = (txt.Length / 2) - 1   ' menentukan upper bound array
            Dim bytes(bound) As Byte
            Dim sDecode As String
            For i As Int32 = 0 To bound
                bytes(i) = Convert.ToByte(txt.Substring(i * 2, 2), 16)   ' mengubah 2 byte string dari hex menjadi byte berdasarkan base16
            Next
            sDecode = System.Text.Encoding.ASCII.GetString(bytes)   ' mendapatkan string dari array byte
            Return sDecode
        End Function
        Private Sub cmdToStr_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdToStr.Click
            txtStr.Text = HexToStr(txtHex.Text)
        End Sub
        ' Help
        ' kenapa kita pakai base16??? karena ini sesuai dengan kombinasi karakter yg dipakai hexadesimal (A,B,C,D,E,F,0,1,2,3,4,5,6,7,8,9) berjumlah 16
        ' hanya itu yang ku tahu
        ' 2011 Crowja
    End Class
    Source code bisa di download disini:
    Crowja-Coderz

    Rabu, 23 Maret 2011

    0

    [VB6] Source Code Connection test

  • Rabu, 23 Maret 2011
  • Nurkholish Ardi Firdaus

  • Advanced; IP port scanner, Connection Test, Send Data to server/receive, Find your IP address, etc; Details: Below This program is made to test connections and scan ports. What does this mean? Testing connections can be very useful if your trying to find out if you or a friend as a firewall that might be blocking your connections. You can also connect to websites. If you can't connect to a friend, you could use the Port scanner to check and see if the port he is listening on is open or not. If it doesn't show up then he most likely has a firewall on, or something else is blocking the connection. You also can pick the Speed for your Port Scanner. And you may run both the Connection test and the Port Scanner on the same time. When you connect to a host you can also send it data(text), and you can also receive data. This helped me make my mIRC bot, by connecting to the servers with it and sending it different commands and looking at what I recieved from the mIRC servers. The program also finds your External(Internet) and Local IP(LAN) address. I am sure many of you can find some very usefull ways to putting this program to use. This code is made for Beginners, code is simple. Hope you like it, Enjoy :D

    Crowja-Coderz


    Sumber: vbopensource.blogspot.com
    0

    [VB6] Source Code Remote PC Tool

  • Nurkholish Ardi Firdaus

  • Digunakan Untuk Jaringan Administrasi, Sistem Pengendalian dan Hacking VIA setiap jenis jaringan ...
    Alat Termasuk [
    1 - Multi Koneksi Mnager Channle.
    2 - Buku Alamat Bersih.
    3 - MsgBox Remote / Teks Matrix & Normal Chat / Half Duplex Voise Chat / Board Putih / Minesweeper Game Mendeteksi.
    4 - Fungsi Lengkap Remote File Browser & Manager (Download & Upload File).
    5 - Multi-threaded Remote Download Manager.
    6 - Lengkap Fungsi Remote Proses dan Aplikasi Mnager Jauh lebih kuat daripada The Normal Windows Task Mnager.
    7 - Remote Registry Manager [regedit.exe] tersebut.
    8 - Beberapa fungsi Interbet termasuk seperti mengambil sejarah sistem remoted.
    9 - Controller Clipboard Remoted.
    10 - Device manager Massa termasuk monitor Strong mengendalikan.
    11 - Dari cource OS windows fungsi kontrol termasuk seperti shutdown, restart ... dll.
    12 - Editor Server Wikipedia.
    13 - Firewall diembed.
    14 - Banyak Jaringan alat-alat seperti "X-Ping, X-Router, X-Whois, X-Port Scanner ,....).
    15 - X-Editor masih dalam pembangunan.
    16 - Bantuan & Dokumentasi juga tidak selesai. ]
    [Catatan]
    1 - Menangani-X dibangun pada protokol aplikasi-layer baru bernama BBP (Byte Berbasis Protokol).
    2 - Transmisi Data tidak dienkripsi dan tidak dikompresi sampai sekarang.
    3 - Juga saya sedang mencari sekarang untuk mendukung LAN Hacking


    Crowja-Coderz


    Sumber: vbopensource.blogspot.com
    0

    [VB6] Source Code Credit Card Validate and Generate Number

  • Nurkholish Ardi Firdaus
  • Program ini  Credit Card Validate and Generate Number berfungsi untuk menghasilkan nomor kartu kredit yang valid untuk Visa, Mastercard, American Express dan Discover, menggunakan rumus LUHN untuk verifikas.
    Generator acak menggunakan 11 bank untuk Visa, 4 untuk american mengungkapkan, 1 untuk mastercard dan 1 untuk menemukan. (Lebih lanjut dapat menambahkan komentar check in Validate.frm). Program ini tidak ditulis untuk menipu tapi untuk tujuan pendidikan saja, untuk menunjukkan bagaimana rumus sederhana LUHN ini. PLEASE USE IT AS memang ditujukan - TUJUAN PENDIDIKAN. Setelah nomor acak telah dipilih itu kemudian verifikasi, dan akan terus mengevaluasi angka acak sampai telah memilih angka yang benar (Membawa sekitar 1 hingga 2 detik..) Opsi memvalidasi memungkinkan Anda untuk memasukkan nomor dan memverifikasi sebagai salah satu valid atau tidak valid.


    Crowja-Coderz


    Sumber: vbopensource.blogspot.com
    3

    [VB.NET] Source Code Program Penjualan HP Sederhana

  • Nurkholish Ardi Firdaus

  • Source Code dalam program ini hanyalah merupakan contoh sederhana yang dasarnya hanya untuk memperkenalkan model pemrograman menggunakan Visual Basic .NET 2008 dengan backend database SQL Server 2000. Program ini merupakan penyempurnaan dari program terdahulu yang menggunakan Visual Basic.NET 2005 dengan menghilangkan vbpowerpack.dll dan library lain yang kurang dibutuhkan. Tidak disarankan untuk di gunakan pada kalangan enterprise.




    Kebutuhan:
    Microsoft Visual Basic .NET 2008
    SQL Server 2000 SP4
    Sebagai programmer pastinya tahu spesifikasi komputer yang diperlukan..Big Grin

    Program ini dibuat untuk dijalankan menggunakan SQL Server dengan setting host: (SOETRA), user ID: sa dan password: asianet. Jika dijalankan dengan host lain (local) selain SOETRA dengan password yang berbeda, silahkan diganti string koneksi berikut: 

    Data Source=SOETRA;Initial Catalog=PenjualanHP;User ID=sa;Password=asianet

    Screenshot:

    Petunjuk installasi juga disertakan..
    Jika masih bingung atau cuman sekedar ingin bertanya-tanya,
    silahkan email ke: bonitoo[dot]takeshy[at]gmail[dot]com, InsyaAllah akan saya reply secepatnya sesuai kemampuan saya..
    Saya tidak bertanggung jawab atas segala kerusakan yang disebabkan oleh penggunaan source code ini. Gambar-gambar yang digunakan dalam aplikasi ini juga tidak dimaksudkan untuk mengiklankan suatu produk tertentu.. Thanks..

    Crowja-Coderz


    Sumber: indosourcecode.blogspot.com
    0

    [VB6] Source Code Karaoke Player

  • Nurkholish Ardi Firdaus

  • SourceCode Karaoke Player
    Karaoke Player ini memiliki fungsi kontrol masing-masing dari 16 jalur yang independen. Ini mengubah instrumen di setiap Kemungkinan saluran untuk mengubah nada musik (transpose) Bekerja dengan Play It Daftar menggunakan DiretcX 7 

    Crowja-Coderz


    Sumber: vbopensource.blogspot.com
    0

    [VB6] Source Code Sistem Informasi Penjualan (MySQL)

  • Nurkholish Ardi Firdaus

  • Source Code Sistem Informasi Penjualan (Mysql)
    Aplikasi ini belum jadi 100% , yah ini baru permulaan saja kok, tp mudah-mudahan berguna...he..he..hee.
    untuk database pilihan jatuh pada MySQL dan untuk koneksinya sendiri saya menggunakan VB API.
    MsgBox dalam bahasa indonesia sudah saya aplikasikan disini.



    Crowja-Coderz


     Sumber: vbopensource.blogspot.com

    Selasa, 22 Maret 2011

    4

    Windows 7 Extreme Edition R1 (64 Bit)

  • Selasa, 22 Maret 2011
  • Nurkholish Ardi Firdaus
  • Windows 7 Extreme Edition R1 (32 Bit) | 3.92 Gb


    Changes made from 32bit version:
    # Updated all softwares to latest version.
    # Updated and added more drivers to latest versions.
    # Added new windows updates released.
    # Added some new softwares.
    # Added new themes,gadgets.
    # Minors improvements , tweaks over 32bit.
    # Fixed some little issues.

    Notes:
    # This windows is Based on Windows 7 Ultimate RTM 64bit version.
    # This copy will be activated within installation, you can update your windows using ?Windows Update? without any problem
    # Software included are full version and uninstallable, mean you can uninstall it if you don?t want them. ( don?t call it bloatware, its not resource hogger ).
    # Read description for more detailed info.

    Recommended System Requirements :
    # 2 GHz CPU ( 800 MHz Minimum )
    # 1 GB RAM ( 512 MB Minimum )
    # DirectX 9.0C capable graphics Card Which Supports Windows AERO

    Installation :
    # ISO file size is 5.15GB so you will need DVD9 to burn it.
    # You can perform 2 types of installation, either by booting this DVD or by clicking on "setup.exe" ( you must run setup.exe as Administrator or it wont start ). Both ways installation will be
    automated.
    # Upgrade Option is available, so u can upgrade your previous windows to this version.

    Features:
    # Advanced bootmenu.
    # No Components removed.
    # Advanced context menu entries to get quicker access to system functions.
    # Changed boot entry specially for this OS to easily select OS if you have multiple versions of Windows 7 installed.
    # Based on Windows 7 Ultimate 32bit (RTM).
    # Updated with latest hotfixes and patches.
    # Patched uxtheme files for 3rd party themes support.
    # Enabled Dremescene ( Dreamscene videos not included )
    # Included Utilities for troubleshooting purpose.
    # Included ESET Smart Security v4 Unlimited trial version which can be updated without any activation or key!
    # Automated Setup, just few clicks and your windows will be ready to use after setup!
    # Automatic Activation ( Extra activators included if it wont get activated automatically at 1st logon ).
    # Whole new look with themes, icons , gadgets , logon screens n more.
    # New default theme, plus more 3rd party theme included.
    # New useful gadgets
    # New Logon screen ( logon changer included in Utilities folder in start menu ).
    # New default Icons many icon packs included to customize as your need.
    # Tweaked for better performance and usability.
    # Added general applications which mostly users use daily on PC! ( This may not cover apps for particular user ).
    # Windows 7 manger included to customize and tweak windows as your way.
    # Extra Windows 7 Wallpapers.
    # DirectX 9.0C August 2009.
    # Special updates like IE8 Feature Pack, Silverlight, Playready and Games for Windows live.
    # Integrated all hotfixes upto 20th November 2009 ( check control panel for list ).
    # 31 new Themes
    # New wallpapers
    # 16 Icon packs
    # Tweaked OS for faster operations.
    # Added Diskeeper for disk management which improves system performance.

    Apps Included (All Full versions, Preinstalled) :
    Note : All the applications included are uninstallable ( you can uninstall them ) and they wont use any memory resources until you run them! None of the apps configured to run at startup of windows ( except Eset Security ).

    # Diskeeper 2009 Pro Premier with Hyperfast ? x64 ( improves system performance )
    # 7-zip 908A ? x64
    # CCleaner 2.26
    # Nero 9.4.26.0 ( lite version )
    # Firefox 3.5.5
    # Adobe Reader 9.2
    # IconPackager 4.2 Icon Packs
    # Java Runtime 6 Update 17
    # Java Runtime 6 Update 17 x64
    # Klite Mega Codecs 5.50
    # Klite Codecs 3.0 - x64
    # Notepad 5.5.1
    # Opera 10.10
    # Microsoft Playready ? x64 (Hotfix)
    # Microsoft SilverLight (Hotfix, activex control)
    # Microsoft Games For Windows Live 3.1 ( Hotfix )
    # Microsoft Virtual PC addon ( Windows XP Mode, XP image not included )
    # Windows Live Messenger 2009
    # Windows Live Messenger Plus 4.83
    # Windows 7 Manager 1.1.6 ? x64
    # Sysinternal Suite for troubleshooting ( see utilities folder in start menu )
    # GPU-Z,CPU-Z,HD-Tune tools in control panel
    # Locker Hunter 1.6 ? x64 ( replacement of unlocker for x64 )
    # UltraISO 9.3.5.2716 Premium
    # Winrar 3.90 ? x64
    #Eset Smart Security - Business Edition 4 ? x64 ( cracked,unlimited trial, Updatable, included updates till December 2009. )
    # Yahoo Messenger 10

    Tweaks Included:
    # Run command in start menu.
    # TestMode is enabled by default, you can install non-signed drivers.
    # Faster shutdown.
    # Faster startup ( disabled group-policy syncronization on logon )
    # Register/unregister context menu entry for dll & OCX files .
    # Disabled UAC ( you can enable it from control panel ).
    # Show My Computer, Documents & Network icons on Desktop.
    # Add Useraccounts 2 on ControlPanel.
    # Auto Arrange desktop icons
    # Restore opened folders on system reboot.
    # Take Ownership" in context menu
    # Additional Avlon Effect ( DWM )
    # Slow Motion Effect ( DWM )
    # PowerOff after shutdown
    # Windows will tell you exactly what it is doing when it is shutting down or is booting ( you can see it on logon screen )
    # Added command prompt to right click context menu
    # Disabled User Account Control ( UAC) [ you can enable this from control panel later. ]
    # Add "Explore from here" context menu while right clicking on folders ( very useful for win7 startmenu )
    # Get rid of the Windows Mail splash screen
    # Show hidden files & show extensions by default.
    # Maximum simultaneous downloads for IE to 20 ( default is 2 )
    # Enable ClearType Tuning
    # Added 'Copy to Folder' and 'Move to Folder' to right click context menu
    # Added 'open with notepad' to right context
    # Disabled Windows Media Player AutoUpdates
    # Added "Advanced System Properties", device manager, services to right-click on Computer
    # Faster browsing with IE.
    # Makecab and Expand in context menu ( Shift right click )
    # Restore Open folders on reboot.

    Integrated Drivers : ( Updated to 13th December 2009.)
    # Chipset ( ATI, nVidia 15.51, Intel, Via )
    # Display ( ATI 9.11, nVidia 195.62, nVidia notebook 186.81, Intel ,Via, SIS )
    # Audio ( realtek, conexant, C-Media, Via, Soundmax )
    # LAN ( Atheros, Broadcomm, Intel, Jmicron, Marvell, nVidia, Realtek, Silicon Image, Via )
    # Mass Storage ( nVidia, jmicron, SIS, Silicon Image, Via, Highpoint, Intel, Marvell, Microsoft, LSI Logic , Dell, ITE, LSI )
    # CardReader ( Alcor, Jmicron, O2micro, Realtek, Ricoh )
    # Wireless Lan ( Atheros, Braodcomm, Realtek, Intel, silicon, Via, marvell, Netgear, Lan Express, D-Link, )
    Download Here :

    Donwload File Torrent nya disini

    Crowja-Coderz
    0

    WiFi Slax Wireless Hacking Live-CD v3.1 + Plugins

  • Nurkholish Ardi Firdaus
  • WiFi Slax Wireless Hacking Live-CD v3.1 + Plugins Updated | 626 Mb

    WEP is an encryption scheme, based on the RC-4 cipher, that is available on all 802.11a, b and g wireless products. WEP uses a set of bits called a key to scramble information in the data frames as it leaves the access point or client adapter and the scrambled message is then decrypted by the receiver. Both sides must have the same WEP key, which is usually a total of 64 or 128 bits long. A semi-random 24 bit number called an Initialization Vector (IV), is part of the key, so a 64 bit WEP key actually contains only 40 bits of \”strong\”encryption while a 128 bit key has 104. The IV is placed in encrypted frame\’s header, and is transmitted in plain text.

    Traditionally, cracking WEP keys has been a slow and boring process. An attacker would have to capture hundreds of thousands or millions of packets? a process that could take hours or even days, depending on the volume of traffic passing over the wireless network. After enough packets were captured, a WEP cracking program such as Aircrack would be used to find the WEP key.

    Basic Directions:
    1). Boot from cd
    2). Get the wep key
    3). Write it down
    4). Reboot into windows
    5). Connect using wep key

    Buat ente yg pengen hacking passowrd login utk dapat hotspotan gratis,bisa menggunakan software ini utk mendapatkan username dan password hotspot yg ente mau hacking....dan tolong jgn disalah gunakan software ini ya,kasian yg punya hotspot ente sedot bandwidthnya!!!

    Download Here :
    http://www.enterupload.com/chifaxrjldx6/WFI.LiveCD.3.1.part1.rar.html
    http://www.enterupload.com/xb4aqtv3hahu/WFI.LiveCD.3.1.part2.rar.html
    http://www.enterupload.com/7ahkf5n79oz4/WFI.LiveCD.3.1.part3.rar.html
    http://www.enterupload.com/mbqdxp3w7h0r/WFI.LiveCD.3.1.part4.rar.html

    Sumber: http://www.andystonecold2009.blogspot.com
    0

    Youtube Movie Maker - Portable

  • Nurkholish Ardi Firdaus
  • Youtube Movie Maker - Portable | 30.05 Mb

    Youtube Movie Maker is a total solution for Make, Upload and Manage Youtube Videos, help you easy to make cool Youtube videos, to batch upload various formats videos onto Youtube, promote and manage videos on Youtube. Youtube Movie Maker is the best choice for all Youtube user.

    Main features:
    Make Youtube video from various media files, include any formats video/movie files, audio/music files, photo/picture files.

    Download Here :

    Sumber: http://www.andystonecold2009.blogspot.com
    0

    Memberikan Gaya Pada Link di Blogger

  • Nurkholish Ardi Firdaus
  • Memberikan Gaya Pada Link

    Pasti kalian pernah melihat link yang seperti diatas bukan...??

    Ya..!!! Di samping linknya terdapat icon-icon jenis file linknya. Seperti icon zip, doc, pdf, atau bahkan html. Dengan menampilkan icon file tersebut maka itu akan lebih menjelaskan jenis file yang akan di download. Dan tentunya itu menjadi lebih menarik dibandingkan dengan hanya tulisan saja.

    Agar setiap link yang berekstensi .zip .pdf .doc dapat menampilkan icon sesuai filenya, maka berikut caranya :

    1). Pastekan code dibawah ini setelah code




    2). Cari kode //]]>

    3). Copy lalu pastekan code dibawah sebelum kode //]]>

    .pdf {
    padding-left: 20px;
    background: transparent url(http://lh5.ggpht.com/_Z5M1MdUefOA/SXPhPrLXq6I/AAAAAAAAAdQ/GKN2OxEqJAE/s144/icon-pdf.png) left top no-repeat;
    }

    .zip {
    padding-left: 20px;
    background: transparent url(http://lh5.ggpht.com/_Z5M1MdUefOA/SXPhPvYLGHI/AAAAAAAAAdg/1UwaevNKnuY/s144/icon-zip.png) left top no-repeat;
    }

    .doc {
    padding-left: 20px;
    background: transparent url(http://lh5.ggpht.com/_Z5M1MdUefOA/SXPhPlqjgGI/AAAAAAAAAdY/2ZseTlsj1IE/s144/icon-doc.png) left top no-repeat;
    }

    4). Save template

    Bagaimana coba kamu buat link untuk file zip atau pdf. apa iconnya muncul disamping link atau tidak...

    Kalo memang belum muncul pastikan kembali apa ada yang salah...

    Sumber: http://www.andystonecold2009.blogspot.com
    0

    Windows 7 Animeware Ultimate x86

  • Nurkholish Ardi Firdaus
  • Windows 7 Animeware Ultimate x86 | 984 Mb

    Author : Prince NRVL
    Architecture : x86 [ 32bit ]
    Title : Windows 7 Animeware
    Year : 2010

    OS : Windows 7 Ultimate
    Tested : tested on i7 and X2 for installation and bugs
    Date : Sep - 18 - 2010

    Registry tweaks:
    - DreamScene Activated
    - CommandPrompt here
    - Take Ownership
    - Run as Administrator
    - Context menu tweaks added(many tweaks)
    - Open with notepad
    - Advanced user account activated
    - Gadgets activated and lot more..

    Softwares:
    - 7 Zip 4.65
    - CCleaner 2.3.3
    - Microsoft Essentials
    - Direct X 32 June
    - Dream scene
    - Enhance My Seven
    - Flash Player Active X 10.1
    - Flash Player plugin 10.1
    - Foxit reader 4.0
    - Java Runtime u20
    - K-lite mega Codec Pack 6.20
    - Nero Lite Micro 10
    - Notepad
    - Snow Panther
    - Ultra ISO 9.3.6
    - VLC player 1.1.0
    - Yahoo Messenger 10
    - Winrar 3.93
    Download Here :


    Sumber: http://www.andystonecold2009.blogspot.com
    2

    Memperbaiki Flashdisk yg Tidak Dapat di Format

  • Nurkholish Ardi Firdaus
  • Memperbaiki Flashdisk yg Tidak Dapat di Format

    Bagi anda yang sedang mengalami masalah dengan flashdisk, khususnya kasus flashdisk terdeteksi di Windows namun tidak bisa di format anda bisa menggunakan beberapa cara berikut ini untuk memperbaikinya :

    Format flashdisk melalui Linux/LiveCD Linux
    (original page: Disini)

    Langkah yang harus dilakukan :

    1). Booting komputer menggunakan LiveCD Linux, misal Slax KillBill, Knoppix atau distro lainnya.

    2). Setelah login ke sistem, masukkan flashdisk yang bermasalah tadi ke salah satu port USB. Demi keamanan data, pastikan hanya flashdisk yang bermasalah saja yang terpasang.

    3). Pastikan flashdisk anda terdeteksi, atau setidaknya indikator led nyala.

    4). Masuk ke console.

    5). Pada console jalankan cfdisk /dev/sda1 (sesuaikan dengan flashdisk ke berapa yang terpasang).

    6). Delete atau hapus partisi pada flashdisk.

    7). Buat partisi baru dengan memilih Create New | Write.

    8). Simpan perubahan yang baru saja anda lakukan.

    9). Format flashdisk dengan cara mengetikan perintah mkfs.vfat-f32 /dev/sda1 di console.

    10). Flashdisk anda telah memiliki partisi baru, sehingga bisa digunakan kembali baik di Linux maupun di Windows.

    Format flashdisk Menggunakan USB Disk Storage Format Tool
    Di samping cara di atas, anda juga bisa menggunakan tools yang dikeluarkan oleh pihak ketiga. Salah satunya adalah Hewlet Packard (HP). Walaupun tools ini dikeluarkan oleh HP, namun utilisasinya juga bisa digunakan pada flashdisk merek lain.

    Berikut langkah-langkah memperbaiki flashdisk yang tidak bisa di format menggunakan HP USB Disk Storage Format Tool:

    1). Download aplikasi HP USB Disk Storage Format Tool disini

    2). Install aplikasi tersebut, rekomendasi OS yang digunakan adalah Microsoft Windows 2000, Windows 2003 Server dan Novel Netware.

    3). Masukkan flashdisk yang bermasalah ke salah satu port USB. Pastikan flashdisk anda terdeteksi dan memperoleh alokasi drive di Windows.

    4). Jalankan aplikasi HP USB Disk Storage Format Tool.

    5). Tentukan drive tempat flashdisk terpasang.

    6). Pilih Create New or Replace Existing Configuration untuk membuat partisi baru baru dan menghapus konfigurasi yang ada di flashdisk.

    7). Format flashdisk anda sesuai dengan file sistem yang diinginkan.

    Selamat mencoba, mudah-mudahan bermanfaat...

    Sumber: http://www.andystonecold2009.blogspot.com
    1

    Cara Memperbaiki Laptop Dan PC Yang Blue Screen

  • Nurkholish Ardi Firdaus
  • Cara Service Laptop Dan PC Yang Blue Screen

    Bahasan saya kali ini adalah tentang Laptop dan komputer dengan kerusakan Blue Screen / Dump memory / Layar Biru. Kasus ini sering banget terjadi dan ada beberapa dari kita yg sampai bingung menghadapinya.... OK langsung menuju ke TKP ...

    Beberapa notebook / laptop / komputer terkadang muncul bluescreen. Sebenarnya banyak sekali kemungkinan yang muncul, pada dasarnya bluescreen muncul karena terjadi kesalahan data pada alamat tertentu baik itu data rusak (corrupt), data hilang (missing).

    Penyebab Laptop dan Komputer Blue Screen / Dump memory / Layar Biru :
    1). Memory / RAM
    2). Socket Memory / RAM
    3). Harddisk bermasalah
    4). Socket Harddisk
    5). Virus
    6). Data corrupt terhapus tidak sengaja
    7). Uninstall program sehingga library windows terhapus
    8). Dan lain-lain

    Bluescreen akibat memory / RAM rusak atau kotor
    Bluescreen yang diakibatkan oleh memory dapat kita ketahui dengan mencoba check memory melalui menu BIOS notebook yang bersangkutan.

    Apabila kita sudah memastikan kerusakan di area memory baik RAM itu sendiri maupun socket, maka langkah pertama yang dapat dilakukan. Kita lepas memory yang bersangkutan dan kita bersihkan atau sikat dengan penghapus pensil bagian kaki socket RAM sehingga kerak menjadi bersih, apabila masalah tetap muncul, kita dapat mengganti dengan RAM yang baru.

    Apabila cara diatas masih belum efektif , ada kemungkinan socket / dudukan RAM kita bermasalah.

    Bluescreen akibat Harddisk yang bermasalah
    Harddisk yang bermasalah dapat juga menyebabkan bluescreen, antara lain dikarenakan oleh bad sector, data yang hilang karena virus, instalasi program yang tidak sempurna , ataupun dikarenakan un-install program yang menghapus library (.dll) file yang digunakan oleh system atau program yang akan kita jalankan.

    Untuk masalah bad sector dapat kita atasi dengan chkdsk/f , dimana windows akan memberikan tanda agar bagian yang bad tidak digunakan. Btw, apabila yang terkena sector awal atau untuk operating system maka cara ini tidak effektif, cara terbaik adalah mengganti harddisk dengan yang baru.

    Apabila error karena virus kita dapat menggunakan antivirus untuk cure (mengobati) file yang corrupt, dan tidak semua file corrupt dapat diobati oleh anti virus, alternatif lain adalah install ulang operating system.

    Semoga membantu ....

    Sumber: http://www.andystonecold2009.blogspot.com
    0

    USB Block 1.3.0

  • Nurkholish Ardi Firdaus
  • USB Block 1.3.0 | 4.06 Mb

    USB Block is a data leak prevention tool that prevents leakage and copy of your data to USB Drives, External Drives, CDs/DVDs or other such portable devices. Once installed, USB Block lets you block all such drives and devices that do not belong to you. With USB Block, you can share your PC with anyone without fear of data theft. USB Block also lets you create a list of devices and drives you authorize with a password so that only your USB drives or CDs can be accessed on your computer.

    Data Leak Prevention: USB Block is a data leak prevention software. It prevents your data from getting leaked out to USB drives and other such storage devices by letting you control which device can access your computer while blocking all other unauthorized devices that do not belong to you. With USB Block installed on your computer, you can feel safe that your data will remain on your PC safe and secure.

    Copy Protection: The program uses an advanced level of data leak prevention technology that does not permit duplication of your important files and copyright material to any USB drive or other such storage devices without your permission. The program works by blocking all types of unauthorized storage devices like USB drives, external drives, CDs, DVDs, etc., in this way it prevents plagiarism, piracy, illegal distribution and copying of your data.
    Block USB Drives: USB Block doesn’t allow any type of USB drive to access your computer unless you authorize it. By default, all types of USB drives are blocked including external drives, FireWire, Enhanced mini-USB, Host Controller Interface (HCI), HP-IL, Com, LPT, IrDA, USB on-the-go, U3, EHCI, RAID Controller, Host adapter, Serial Cable (use with data transfer), Serial ATA, ACCESS.bus and any storage device that is attached to USB port showing a drive in the system.

    Block Memory Cards & iPods: The program also blocks SD Cards, MMCs, Memory Sticks, Digital Cameras, Memory Cell Phones, iPods, Blackberry, Android and Other Mobile Phones.

    Block Media & Blu-ray Discs: The application also blocks any disc that uses the disk hub, bay, combo or CD/DVD drive and allots a drive letter, for example; CD-R, CD-RW, CD-RAM, DVD-R, DVD-RW, DVD-RAM, HD-R, HD-RW, HD-RAM, Blu Ray-R, Blu Ray-RW, Blu Ray-RAM, Floppy Disk A, Floppy Disk B and Zip Drives.

    User Friendly Graphical Interface: USB Block is an easy to use data leak prevention software with a user friendly graphical interface. It does not complicate its users with technical jargon rather it provides them an easy way to block unauthorized devices from accessing their data.

    Patent Pending Protection: USB Block uses multi-layer patent pending protection that works on Windows Kernel Level and block unauthorized and malicious devices from accessing your data even in Safe Mode.

    Download Here :

    Sumber: http://www.andystonecold2009.blogspot.com

    Subscribe