Tampilkan postingan dengan label Windows. Tampilkan semua postingan
Tampilkan postingan dengan label Windows. Tampilkan semua postingan

Sabtu, 01 November 2025

Python Script for SHA Checksum

 Python script for SHA checksum of large files.


1. Below is the information of the file that will be used for the SHA checksum (the CentOS ISO file is approximately 4.39 GB):

2. Make sure the file path in the Python script matches the actual location of the file.
E:\ISO\CentOS-7-x86_64-DVD-2009.iso

3. Run the script using PowerShell or CMD:
python scriptfile_name.py

4. SHA checksum result (appears after about 90 seconds):

Note: The speed of the checksum calculation depends on the device specifications; the higher the specifications, the faster the checksum process


================================================
Sample Python Script
================================================

# -*- coding: utf-8 -*-
"""
Created on Sat Nov 1 15:40:00 2025
Checksum calculator using SHA-256 for large files
"""

import hashlib

def get_checksum(file_path, algorithm='sha256'):
    """
    Calculate the checksum of a large file using a SHA algorithm.
    The 'algorithm' parameter can be: 'sha1', 'sha224', 'sha256', 'sha384', or 'sha512'.
    """
    chunk_size = 8192  # read 8KB per chunk for memory efficiency

    # ensure the algorithm is valid
    if algorithm not in hashlib.algorithms_available:
        raise ValueError(f"Algorithm '{algorithm}' is not supported.")

    h = hashlib.new(algorithm)

    with open(file_path, 'rb') as f:
        while chunk := f.read(chunk_size):
            h.update(chunk)

    return h.hexdigest()

if __name__ == "__main__":
    file_path = r"E:\ISO\CentOS-7-x86_64-DVD-2009.iso"
    print("SHA-256 Checksum:", get_checksum(file_path, 'sha256'))

================================================

Related article (MD5 Checksum):
My Pocket : Python Script for MD5 Checksum


Thank you.

Selasa, 29 April 2025

Python Script for Daily Schedule

Hai Guys, Long time no see. Di sini saya mau simpan catatan saya terkait aktivitas coba-coba bikin skrip untuk Jadwal Harian menggunakan bahasa pemrograman Python. Aktivitas ini terinspirasi dari Serial Drama Korea (Love Next Door), dimana tokoh utamanya bernama (Bae Seok Ryu) iseng buat jadwal pengangguran ketika lagi gabut :D. Aktivitas coba-coba ini saya implementasikan pada OS Windows 11 Pro dengan bantuan scripting yang saya ambil dari ChatGPT (Thank you ChatGPT). Kemudian saya modifikasi skrip tersebut dengan hasil output seperti pada tahapan yang akan saya infokan berikut. Ikuti langkahnya Guys:

1. Instal aplikasi Python melalui Microsoft Store.

2. Instal Dipendensi (Library) berikut melalui command prompt.
1) Buka command prompt melalui Win+R (Run) > cmd

2) Instal paket matplotlib, dengan perintah pip install matplotlib
3) Instal paket pytz, dengan perintah pip install pytz
4) Instal paket ntplib, dengan perintah pip install ntplib

Note: jika instalasi paket di atas gagal, coba ulangi langkahnya dengan menggunakan command prompt as Administrator.

3. Buat skrip Jadwal Harian menggunakan kode Python pada Notepad++ atau bisa menggunakan teks editor lainnya, contoh Sublime.

import tkinter as tk import matplotlib.pyplot as plt from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg from matplotlib.patches import Wedge from datetime import datetime, timedelta import pytz import math from tzlocal import get_localzone # To fetch local timezone from ntplib import NTPClient # For NTP synchronization from zoneinfo import ZoneInfo # For timezone handling # Function to synchronize time with an NTP server def get_ntp_time(): client = NTPClient() try: # We are using a public NTP server response = client.request('pool.ntp.org') ntp_time = datetime.utcfromtimestamp(response.tx_time) # UTC time return ntp_time.replace(tzinfo=ZoneInfo("UTC")) # Set the NTP time to UTC except Exception as e: print(f"Error while getting NTP time: {e}") return datetime.now() # Fallback to system time if NTP fails # Get the current time in the local timezone (based on NTP time) def get_local_time(): local_tz = get_localzone() # Automatically fetch the local timezone ntp_time = get_ntp_time() # Get the current time using NTP return ntp_time.astimezone(local_tz) # Convert NTP time to local time # Function to draw the clock def draw_clock(ax, current_time, busy_slots, start_of_day, end_of_day): ax.clear() # Clear the previous drawing on the canvas # Set the aspect ratio of the clock to be equal (circular) ax.set_aspect(1) ax.set_axis_off() # Draw the clock circle ax.add_patch(plt.Circle((0.5, 0.5), 0.45, color='lightgray')) # Draw the hour and minute ticks (24-hour clock) for i in range(24): angle = math.radians(i * 15) # Each hour is 15 degrees (360 degrees / 24 hours) # Menggeser angka jam ke kanan sebanyak 19 jam (menggeser posisi jam) adjusted_angle = math.radians((i + 19) % 24 * 15) # Shift by 19 hours (9 * 15 degrees) x_start = 0.5 + 0.45 * math.cos(adjusted_angle) y_start = 0.5 + 0.45 * math.sin(adjusted_angle) x_end = 0.5 + 0.4 * math.cos(adjusted_angle) y_end = 0.5 + 0.4 * math.sin(adjusted_angle) ax.plot([x_start, x_end], [y_start, y_end], color='black', lw=2) # Add the hour number (1-24) hour_label = str((i + 1) % 24) if i != 23 else '00' # Show 24-hour time format (1-24) ax.text(x_end, y_end, hour_label, color='black', ha='center', va='center', fontsize=16) # Draw the time hands (adjusted to be proportional) current_seconds = current_time.second + current_time.minute * 60 + current_time.hour * 3600 total_seconds_in_day = (end_of_day - start_of_day).total_seconds() # Hour hand calculation (clockwise direction from top, 12 o'clock position) hour_angle = (current_seconds / total_seconds_in_day) * 360 - 90 # Subtract 90 to adjust to 12 o'clock ax.plot([0.5, 0.5 + 0.3 * math.cos(math.radians(hour_angle))], [0.5, 0.5 + 0.3 * math.sin(math.radians(hour_angle))], lw=6, color="black") # Minute hand calculation (clockwise direction from top, 12 o'clock position) #minute_angle = ((current_seconds % 3600) / 60) / 60 * 360 - 90 # Subtract 90 for 12 o'clock #ax.plot([0.5, 0.5 + 0.4 * math.cos(math.radians(minute_angle))], # [0.5, 0.5 + 0.4 * math.sin(math.radians(minute_angle))], # lw=4, color="blue") # Second hand calculation (clockwise direction from top, 12 o'clock position) second_angle = ((current_seconds % 60) / 60) * 360 - 90 # Subtract 90 for 12 o'clock ax.plot([0.5, 0.5 + 0.45 * math.cos(math.radians(second_angle))], [0.5, 0.5 + 0.45 * math.sin(math.radians(second_angle))], lw=2, color="red") # Mark busy/free time slots (the colored wedges) and activity names for busy_start, busy_end, color, activity in busy_slots: # If the end time is earlier than the start time, it means the activity spans across midnight if busy_end < busy_start: # Adjust the end time by adding 24 hours to handle the crossing over midnight busy_end = busy_end + timedelta(days=1) start_angle = (busy_start - start_of_day).total_seconds() / total_seconds_in_day * 360 - 90 end_angle = (busy_end - start_of_day).total_seconds() / total_seconds_in_day * 360 - 90 ax.add_patch(Wedge((0.5, 0.5), 0.45, start_angle, end_angle, color=color, alpha=0.7)) # Calculate position for activity text angle_mid = (start_angle + end_angle) / 2 x_text = 0.5 + 0.5 * math.cos(math.radians(angle_mid)) # Adjust to correct position y_text = 0.5 + 0.5 * math.sin(math.radians(angle_mid)) # Adjust to correct position # Add activity description with large font and contrasting color ax.text(x_text, y_text, activity, color='black', ha='center', va='center', fontsize=12, fontweight='bold') # Add time labels for activity start and finish start_time_label = busy_start.strftime("%H:%M") end_time_label = busy_end.strftime("%H:%M") # Display start and end time ax.text(x_text, y_text - 0.05, f"{start_time_label} - {end_time_label}", color='black', ha='center', va='center', fontsize=10) # Add title and date-time info (adjusting y position to place outside the circle) ax.text(0.5, 1.1, "Jadwal Hamba Allah", color='black', ha='center', va='center', fontsize=16, fontweight='bold') date_text = current_time.strftime("%A, %d-%m-%Y") ax.text(0.5, -0.1, date_text, color='black', ha='center', va='center', fontsize=14) # Main function to update the clock def update_clock(): current_time = get_local_time() # Get local time from NTP # Set `start_of_day` and `end_of_day` to be timezone-aware local_tz = get_localzone() # Fetch the local timezone start_of_day = datetime(current_time.year, current_time.month, current_time.day, 0, 0, 0, 0) start_of_day = start_of_day.replace(tzinfo=local_tz) # Apply local timezone to start_of_day end_of_day = start_of_day.replace(hour=23, minute=59, second=59, microsecond=0) # Define the busy slots and corresponding colors busy_slots = [ (datetime(current_time.year, current_time.month, current_time.day, 5, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 7, 0, 0, tzinfo=local_tz), 'white', 'Wake up & \nMorning routine'), (datetime(current_time.year, current_time.month, current_time.day, 7, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 8, 0, 0, tzinfo=local_tz), 'gray', 'Go to work'), (datetime(current_time.year, current_time.month, current_time.day, 8, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 12, 0, 0, tzinfo=local_tz), 'white', 'Work'), (datetime(current_time.year, current_time.month, current_time.day, 12, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 13, 0, 0, tzinfo=local_tz), 'gray', 'Lunch break'), (datetime(current_time.year, current_time.month, current_time.day, 13, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 17, 0, 0, tzinfo=local_tz), 'white', 'Continue to work'), (datetime(current_time.year, current_time.month, current_time.day, 17, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 18, 0, 0, tzinfo=local_tz), 'gray', 'Home from work'), (datetime(current_time.year, current_time.month, current_time.day, 18, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 19, 00, 0, tzinfo=local_tz), 'white', 'Dinner'), (datetime(current_time.year, current_time.month, current_time.day, 19, 00, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 22, 0, 0, tzinfo=local_tz), 'gray', 'Free time to relax'), (datetime(current_time.year, current_time.month, current_time.day, 22, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day, 23, 0, 0, tzinfo=local_tz), 'white', 'Prepare for bed'), # Adjust the sleep time slot to span across midnight (datetime(current_time.year, current_time.month, current_time.day, 23, 0, 0, tzinfo=local_tz), datetime(current_time.year, current_time.month, current_time.day + 1, 5, 0, 0, tzinfo=local_tz), 'gray', 'Take a break to sleep'), ] total_seconds_in_day = (end_of_day - start_of_day).total_seconds() # Redraw the clock draw_clock(ax, current_time, busy_slots, start_of_day, end_of_day) canvas.draw() # Redraw the canvas with updated clock # Update the clock every second (1000 milliseconds) root.after(1000, update_clock) # Initialize Tkinter window root = tk.Tk() root.title("Time and Schedule Clock") # Create a figure and axis only once (not inside update_clock) fig, ax = plt.subplots(figsize=(8, 8)) # Increased figure size for a larger clock # Embed the plot into the Tkinter window canvas = FigureCanvasTkAgg(fig, master=root) canvas.get_tk_widget().pack(fill=tk.BOTH, expand=True) # Ensure the canvas resizes with the window # Start the clock update process update_clock() # Run the Tkinter event loop root.mainloop()

4. Simpan skrip di atas dengan ekstensi file python (.py). Contoh penamaan filenya yaitu app_schedule.py


5. Jalankan file app_schedule.py
1) Buka command prompt melalui Win+R (Run) > cmd
2) Arahkan folder ke lokasi file app_schedule.py

3) Jalankan file tersebut dengan perintah: python app_schedule.py, kemudian tekan enter, maka akan keluar output dari file python tersebut.

Demikian info terkait tahapan membuat skrip Jadwal Harian dengan menggunakan bahasa pemrograman Python, semoga bermanfaat. Jika ada yang keliru atau ada yang kurang, boleh info-info ya Guys, Thank you.


Minggu, 19 April 2020

Python Script for MD5 Checksum

Python script for MD5 checksum of large files.

1. Below is the information of the file that will be used for the MD5 checksum (the CentOS ISO file is approximately 4.39 GB):

2. Make sure the file path in the Python script matches the actual location of the file.
E:\ISO\CentOS-7-x86_64-DVD-2009.iso

3. Run the script using PowerShell or CMD:
python scriptfile_name.py

4. MD5 checksum result (appears after about 88 seconds):

Note: The speed of the checksum calculation depends on the device specifications. The higher the specifications, the faster the checksum process.


================================================
Sample Python Script
================================================

# -*- coding: utf-8 -*-
"""
MD5 Checksum Generator for Large Files
Created on Sat Nov 1 2025
"""

import hashlib

def get_MD5(file_path):
    """
    Calculate the MD5 checksum of a file in chunks.
    Efficient for very large files (e.g. ISO, ZIP, etc.).
    """
    chunk_size = 8192  # 8 KB per read
    h = hashlib.md5()

    with open(file_path, 'rb') as f:
        while chunk := f.read(chunk_size):
            h.update(chunk)

    return h.hexdigest()


if __name__ == "__main__":
    file_path = r"E:\ISO\CentOS-7-x86_64-DVD-2009.iso"
    print("MD5 Checksum:", get_MD5(file_path))

================================================

Related article (SHA Checksum): 
Thank you.

Selasa, 14 Oktober 2014

How to Hide Files Using ‘IExpress File Binder’


Jumpa lagi guys,,
Dalam artikel ini, penulis ingin mengajak pembaca untuk mencoba teknik penggabungan file atau file binding, dengan menggunakan command Iexpress, yakni command yang merupakan bawaan dari Sistem Operasi Windows. Command ini digunakan untuk menggabungkan dua atau lebih file yang berekstensi .exe, dimana file-file yang digabungkan tersebut, ditutup dengan menggunakan file baru, yang juga berekstensi .exe, untuk menghindari kecurigaan.

Sayangnya teknik ini memiliki kelemahan, yakni ia tidak mampu menyembunyikan proses instalasi dari file yang memang sengaja disembunyikan. Kedua file yang digabungkan, ternyata mereka ter-install satu persatu, sehingga masing-masing file terlihat proses instalasinya. Oleh karena itu, teknik ini masih belum dapat digunakan untuk menjaga kerahasiaan data. Lebih tepatnya, ia hanya dapat digunakan untuk melewati pemeriksaan dari sistem keamanan, agar aplikasi rahasia yang digabungkan, tidak terdeteksi sebagai virus. 
Berikut adalah langkah-langkah yang dapat teman-teman coba, untuk menggunakan command Iexpress:

1. Ketikkan Iexpress pada box run (Win+R).



2. Buat package baru.




3. Pilih “Extract files and run an installation command”. Fungsinya adalah agar kita tidak perlu melakukan ekstrak kembali terhadap aplikasi gabungan yang telah dibuat, sehingga file dapat langsung dilakukan instalasi. 


4. Selanjutnya, berikan nama terhadap package yang akan dibuat.




5. Pilih saja No prompt.




6. Tidak perlu memasukkan lisensi.



7. Masukkan file pertama untuk dijadikan sebagai cover/penutup.




8. Masukkan file.exe yang kedua. Berhubung tidak ada file virus.exe, maka penulis menggunakan file yang ada, yakni actualspy.exe.



9. Kedua file telah terkumpul.




10. Pilih file mana yang ingin dijalankan terlebih dahulu dan mana yang dijalankan setelahnya.



11. Pilih "Hidden". Penulis belum paham mengenai fungsi dari proses bagian ini. Sebab, setelah dicoba "minimize", tetap saja jalannya proses instalasi masih terlihat semuanya.


12. Pilih no message jika tidak ada pesan yang ingin disampaikan ke user sebagai syarat untuk melakukan instalasi.



13. Tentukan lokasi untuk menyimpan package tersebut.



14. Checklist Hide File Extracting bla bla… “.




15. Beri kondisi setelah proses instalasi selesai dilakukan.




16. Lebih baik file informasi dari pembuatan package tidak disimpan, agar tidak ada yang mengetahui file package ini merupakan gabungan dari file apa saja.


File Informasi (.SED) ini dapat dibuka dengan menggunakan notepad.
Contoh salah satu file ini adalah “tools.SED” yang penulis buka dari aplikasi “tools.exe” yang telah dilakukan binding.


Dari hasil diatas, telah diketahui bahwa file binding tersebut hanya berisi satu file .exe. Jadi, tenang file tetap aman.

17. Selanjutnya, klik start untuk memulai proses binding.



18. Proses binding sedang berjalan.



19. Proses binding selesai.



20. Ukuran file sebelum proses binding.




21. Ukuran file setelah proses binding. File tersebut adalah file baru yang diberi nama sama dengan nama dari salah satu file yang dilakukan binding. Dengan teknik ini, dua file dapat tersimpan ke dalam satu aplikasi, dengan memori yang jauh lebih kecil dibandingkan dengan dua aplikasi yang dibiarkan terpisah.


22. Jalankan aplikasi dari hasil binding, melalui run as administrator.



23. Aplikasi kamus berhasil dijalankan terlebih dahulu.




24. Setelah itu, menyusul aplikasi actualspy berjalan berikutnya.  




Demikian cara menyembunyikan file .exe dengan menggunakan command Iexpress. Dari penggunaan teknik ini, kita dapat mengambil manfaatnya, yakni ukuran file yang digabungkan menjadi lebih kecil, dan membuat file gabungan tersebut tidak terdeteksi sebagai aplikasi berbahaya. Semoga bermanfaat. Jika ada pernyataan yang keliru, mohon untuk diingatkan.

Terima kasih..

Sabtu, 11 Oktober 2014

How to Recover Deleted Data Using ‘Auslogics BoostSpeed‘

Melanjutkan artikel yang sebelumnya, di sini penulis akan menjelaskan mengenai cara kerja dari penggunaan software Auslogics BoostSpeed untuk pemulihan data yang terhapus. Bukan hanya data yang berasal dari komputer saja yang dapat dikembalikan, akan tetapi data yang telah terhapus dari Recycle Bin pun, juga dapat dicari kembali dengan menggunakan aplikasi ini. Berikut adalah langkah-langkah menggunakan tool recovery data dari software Auslogics BoostSpeed:

1. Pilih tool File Recovery.


2. Coba hapus file yang akan teman-teman jadikan sebagai uji coba.


3. Cek Recycle Bin, yaitu direktori bawaan windows yang berfungsi menyimpan sementara file yang dihapus dari komputer.


4. Hapus file yang masih tersimpan di Recycle Bin.


5. Buka kembali tool File Recovery.


6. Jangan lupa, chek list folder tempat asal file tadi dihapus. Dalam kasus ini, file yang dihapus, berasal dari folder E. Oleh karena itu, folder E wajib dicentang. Jika anda lupa dengan letak file yang hilang, lebih baik chek list semua folder yang ada.


7. Anda boleh langsung memberikan informasi data yang lebih spesifik, terkait kapan data yang dicari hilang.


8. Selanjutnya, pencarian data dapat dilakukan dengan melakukan chek list data untuk semua nama file. Akan lebih bagus, jika data yang ingin dicari telah diketahui namanya.


9. Untuk bagian ini, lebih baik biarkan opsi skip empty file (file kosong) dan temporary file (file sementara) diabaikan. Tujuannya adalah untuk mempercepat proses pencarian data.


10. Scanning data telah selesai dilakukan, selanjutnya cek satu persatu gambar dan dokumen mana yang sekiranya tidak rusak. Bagian ini agak menyulitkan, sebab data yang berhasil dilakukan scanning, kini namanya telah berubah.


11. Simpan data tersebut di lokasi sembarang.



12. Recovery data selesai dilakukan, pilih Close.


13. Buka folder tempat file hasil scanning data tadi disimpan.


14. Ini adalah dua file hasil dari recovery data sebelumnya.


15. Kedua file dapat dibuka kembali dengan isi data yang masih utuh.



Demikian penjelasan mengenai cara melakukan recovery data dengan menggunakan software Auslogics BoostSpeed. Jika anda ingin mengetahui proses instalasi dan mengunduh aplikasi tersebut, silahkan kunjungi link ini: Unduh Software Auslogics BoostSpeed. Terima kasih atas kunjungannya. Semoga bermanfaat.

Sumber:
http://www.hong.web.id/tutorial/apa-itu-temporary-file-di-windows

‘Auslogics BoostSpeed’: A Powerful Program to Optimize Your PC

Hallo Guys, di artikel selanjutnya ini, penulis akan membahas tentang perangkat keren yang digunakan untuk mengoptimalkan Personal Computer (PC). Nama perangkat lunak tersebut adalah Auslogics BoostSpeed. Penulis benar-benar merekomendasikan pembaca untuk menggunakan aplikasi ini. Pasalnya, penulis telah merasakan sendiri manfaatnya dan masih menggunakannya hingga sekarang.

Berdasarkan referensi website lain, aplikasi Auslogics ini memilliki beberapa keunggulan, di samping ia memiliki fitur yang lengkap, aplikasi ini juga tergolong ringan dan halus, sehingga tidak masalah jika digunakan di notebook sekalipun. Fungsi utama dari aplikasi ini adalah untuk membersihkan, mempercepat, dan memperbaiki PC yang lambat. Cara yang digunakannya adalah dengan membersihkan registry windows, defragmentasi (proses penyusunan ulang) harddisk, membebaskan ruang disk dari file-file sampah (junk file), memulihkan file-file yang terhapus (recovery file), dan mempercepat koneksi internet. Untuk bagian pemulihan file yang terhapus, penulis benar-benar telah mencobanya, dan hasilnya luar biasa, file kembali dapat dibuka dan di-render kembali.

Sebelumnya, penulis pernah mencoba melakukan recovery file melalui aplikasi lain, seperti Recuva, FreeUndelete, dan EaseUS Data Recovery Wizard. Akan tetapi, data yang ter-recover oleh semua aplikasi tersebut, ternyata tidak dapat dibuka maupun di-render kembali. Itulah alasan, mengapa penulis tetap bertahan menggunakan aplikasi Auslogics BoostSpeed hingga sekarang.

Jika teman-teman penasaran dan ingin mencoba aplikasi Auslogics BoostSpeed, teman-teman dapat mengunduhnya di link berikut: Download aplikasi Auslogics BoostSpeed.

Aplikasi Auslogics BoostSpeed sebenarnya adalah aplikasi berbayar. Di dalam file unduhan di atas, disediakan file crack, agar aplikasi Auslogics ini dapat digunakan secara gratis. Saya tahu, ini tidak baik, akan tetapi apalah daya, sama-sama mahasiswa dengan kantong pas-pasan, penulis rasa teman-teman juga merasakan hal yang sama. Oleh karena itu, penulis tetap menyebarkan aplikasi ini, dan berharap teman-teman dapat memanfaatkannya sebagai media pembelajaran. Berikut adalah cara yang dapat diikuti, agar teman-teman dapat menggunakan aplikasi ini secara penuh:

1. Berikut adalah file yang akan teman-teman dapatkan dari link download di atas.


2. Lakukan instalasi terhadap aplikasi boost-speed-setup.exe, seperti instalasi pada umumnya.


3. Setujui lisensi yang ada, untuk melanjutkan proses instalasi.


4. Setelah proses instalasi selesai, maka akan muncul kotak alert seperti berikut. Kemudian pilih Close untuk mengakhiri proses instalasi.


5. Proses instalasi selesai dilakukan. Untuk selanjutnya, buka folder crack yang telah disediakan.


 6. Copy file aushelper.dll.


7. Masuklah ke dalam folder C:\Program Files\Auslogics\Auslogics BoostSpeed. Di dalam folder tersebut terdapat file aushelper.dll yang asli, dimana file itulah yang perlu teman-teman hapus/delete.


8. Setelah file aushelper yang asli selesai dihapus, lakukan paste file terhadap file aushelper.dll yang pembaca copy dari folder crack tadi.


9. Pemindahan file aushelper telah selesai dilakukan, maka teman-teman dapat mencoba membuka aplikasinya melalui mesin pencari program dan file.


10. Dengan telah memasukkan file aushelper yang berasal dari crack tadi, pembaca telah mendapatkan hak penuh, untuk mengakses semua fitur yang ada di dalam aplikasi Auslogics BoostSpeed.




Serangkaian penjelasan di atas, semoga data bermanfaat bagi teman-teman. Terimakasih atas kunjungannya. Insyaallah di artikel selanjutnya, penulis akan menjelaskan manfaat Auslogics BoostSpeed secara lebih rinci.

Sumber:
http://kotaksoft.blogspot.com/2014/04/auslogics-BoostSpeed-full-version.html
http://bukanportalberita.blogspot.com/2014/06/download-auslogics-BoostSpeed-6420.html