Results 1 to 10 of 22

Thread: Mohon Tutorial untuk Remove write protected pada pendrive

Hybrid View

  1. #1
    Senior Member

    Join Date
    Jan 2009
    Posts
    2,703
    Post Thanks / Like
    Quote Originally Posted by spermx View Post
    Rasenye Read-only : NO

    nie saya salin balik detail yg CMD bg.

    DISKPART> DETAIL DISK


    SanDisk Cruzer Edge USB Device
    Disk ID: 00000000
    Type : USB
    Status : Online
    Path : 0
    Target : 0
    LUN ID : 0
    Location Path : UNAVAILABLE
    Current Read-only State : Yes
    Read-only : No

    Boot Disk : No
    Pagefile Disk : No
    Hibernation File Disk : No
    Crashdump Disk : No
    Clustered Disk : No


    Volume ### Ltr Label Fs Type Size Status Info
    ---------- --- ----------- ----- ---------- ------- --------- --------
    Volume 4 J KHNA FAT Removable 1908 MB Healthy


    DISKPART>
    Current Read-only State : Yes dan Read-only: No bermaksud ianya write protected secara fizikal, untuk drive yang tiada write-protect slider seperti memory card ia mungkin dari internal firmware pendrive itu sendiri.

    Anda perlu dapatkan status pada Disk Management dahulu (Win + R > diskmgmt.msc < Enter) samada read only atau tidak untuk dibandingkan hasil dari DiskPart.

    Quote Originally Posted by spermx View Post
    ada tambahan

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Users\admin>CHKDSK J:
    The type of the file system is FAT.
    Volume KHNA created 22/05/2014 8:57
    Volume Serial Number is 0C4C-AF42
    Windows is verifying files and folders...
    File and folder verification is complete.
    Windows found errors on the disk, but will not fix them
    because disk checking was run without the /F (fix) parameter.
    Convert lost chains to files (Y/N)?
    Sila masukkan /F switch.

    Code:
    CHKDSK J: /F
    Run as Administrator bukannya dari user account, ianya dari Administrator account. (right click > Run as administrator).

    Salah:
    Code:
    C:\Users\admin>
    Betul:
    Code:
    C:\Windows\system32>

  2. #2
    Senior Member spermx's Avatar
    Join Date
    Apr 2013
    Location
    PERAK
    Posts
    177
    Post Thanks / Like
    Quote Originally Posted by sH@m View Post
    Current Read-only State : Yes dan Read-only: No bermaksud ianya write protected secara fizikal, untuk drive yang tiada write-protect slider seperti memory card ia mungkin dari internal firmware pendrive itu sendiri.

    Anda perlu dapatkan status pada Disk Management dahulu (Win + R > diskmgmt.msc < Enter) samada read only atau tidak untuk dibandingkan hasil dari DiskPart.


    Sila masukkan /F switch.

    Code:
    CHKDSK J: /F
    Run as Administrator bukannya dari user account, ianya dari Administrator account. (right click > Run as administrator).

    Salah:
    Code:
    C:\Users\admin>
    Betul:
    Code:
    C:\Windows\system32>
    Ok. saya dah buat (Win + R)
    disk tunjuk Read only.

    yang step kedua saya dapat result ini.

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>CHKDSK J: /F
    The type of the file system is FAT.
    Windows cannot run disk checking on this volume because it is write protected.


    C:\Windows\system32>

    MEMANG BUNYI AGAK LUCAH TETAPI PERSONALITI TAK BERMAKSUD MACAM ITU
    "Don't Judge A Book By Its Cover"


  3. #3
    Senior Member

    Join Date
    Jan 2009
    Posts
    2,703
    Post Thanks / Like
    Quote Originally Posted by spermx View Post
    Ok. saya dah buat (Win + R)
    disk tunjuk Read only.

    yang step kedua saya dapat result ini.

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>CHKDSK J: /F
    The type of the file system is FAT.
    Windows cannot run disk checking on this volume because it is write protected.


    C:\Windows\system32>
    Sekarang, kita sudah boleh confirm bahawa pendrive tersebut firmware locked. Langkah berikut, mungkin berhasil mungkin tidak kerana kes sebegini perlukan pendrive tersebut di-reprogramming (flashing).

    Launch CMD as administrator, masukkan syntax berikut baris demi baris diikuti Enter pada setiapnya:

    Code:
    DISKPART
    LIST DISK
    SELECT DISK 1
    ATTRIBUTES DISK CLEAR READONLY
    EXIT
    * Jika muncul error, sila nyatakan.

    Cuba seterusnya jika belum berhasil, pastikan backup dahulu kandungan pendrive tersebut.

    Code:
    DISKPART
    LIST DISK
    SELECT DISK 1
    CLEAN
    CREATE PARTITION PRIMARY
    SELECT PARTITION 1
    ACTIVE
    FORMAT FS=FAT
    ASSIGN
    EXIT
    * Jika muncul error, sila nyatakan.

  4. #4
    Senior Member spermx's Avatar
    Join Date
    Apr 2013
    Location
    PERAK
    Posts
    177
    Post Thanks / Like
    Quote Originally Posted by sH@m View Post
    Sekarang, kita sudah boleh confirm bahawa pendrive tersebut firmware locked. Langkah berikut, mungkin berhasil mungkin tidak kerana kes sebegini perlukan pendrive tersebut di-reprogramming (flashing).

    Launch CMD as administrator, masukkan syntax berikut baris demi baris diikuti Enter pada setiapnya:

    Code:
    DISKPART
    LIST DISK
    SELECT DISK 1
    ATTRIBUTES DISK CLEAR READONLY
    EXIT
    * Jika muncul error, sila nyatakan.

    Cuba seterusnya jika belum berhasil, pastikan backup dahulu kandungan pendrive tersebut.

    Code:
    DISKPART
    LIST DISK
    SELECT DISK 1
    CLEAN
    CREATE PARTITION PRIMARY
    SELECT PARTITION 1
    ACTIVE
    FORMAT FS=FAT
    ASSIGN
    EXIT
    * Jika muncul error, sila nyatakan.
    Ok saya dpt result ini :-

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>DISKPART


    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation.
    On computer: ADMIN-PC


    DISKPART> LIST DISK


    Disk ### Status Size Free Dyn Gpt
    -------- ------------- ------- ------- --- ---
    Disk 0 Online 465 GB 0 B *
    Disk 1 Online 1908 MB 0 B


    DISKPART> SELECT DISK 1


    Disk 1 is now the selected disk.


    DISKPART> ATTRIBUTES DISK CLEAR READONLY


    Disk attributes cleared successfully.


    DISKPART> EXIT


    Leaving DiskPart...


    C:\Windows\system32>

    Result Step Seterusnya :-

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>DISKPART


    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation.
    On computer: ADMIN-PC


    DISKPART> LIST DISK


    Disk ### Status Size Free Dyn Gpt
    -------- ------------- ------- ------- --- ---
    Disk 0 Online 465 GB 0 B *
    Disk 1 Online 1908 MB 0 B


    DISKPART> SELECT DISK 1


    Disk 1 is now the selected disk.


    DISKPART> CLEAN


    DiskPart has encountered an error: The semaphore timeout period has expired.
    See the System Event Log for more information.


    DISKPART>
    Last edited by spermx; 01-10-14 at 05:10 PM. Reason: tambahan info

    MEMANG BUNYI AGAK LUCAH TETAPI PERSONALITI TAK BERMAKSUD MACAM ITU
    "Don't Judge A Book By Its Cover"


  5. #5
    Senior Member

    Join Date
    Jan 2009
    Posts
    2,703
    Post Thanks / Like
    Quote Originally Posted by spermx View Post
    Ok saya dpt result ini :-

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>DISKPART


    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation.
    On computer: ADMIN-PC


    DISKPART> LIST DISK


    Disk ### Status Size Free Dyn Gpt
    -------- ------------- ------- ------- --- ---
    Disk 0 Online 465 GB 0 B *
    Disk 1 Online 1908 MB 0 B


    DISKPART> SELECT DISK 1


    Disk 1 is now the selected disk.


    DISKPART> ATTRIBUTES DISK CLEAR READONLY


    Disk attributes cleared successfully.


    DISKPART> EXIT


    Leaving DiskPart...


    C:\Windows\system32>
    Bagaimana selepas langkah di atas, ada buat chkdsk, boleh copy masuk?

    Quote Originally Posted by spermx View Post
    Result Step Seterusnya :-

    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.


    C:\Windows\system32>DISKPART


    Microsoft DiskPart version 6.1.7601
    Copyright (C) 1999-2008 Microsoft Corporation.
    On computer: ADMIN-PC


    DISKPART> LIST DISK


    Disk ### Status Size Free Dyn Gpt
    -------- ------------- ------- ------- --- ---
    Disk 0 Online 465 GB 0 B *
    Disk 1 Online 1908 MB 0 B


    DISKPART> SELECT DISK 1


    Disk 1 is now the selected disk.


    DISKPART> CLEAN


    DiskPart has encountered an error: The semaphore timeout period has expired.
    See the System Event Log for more information.


    DISKPART>
    Cuba lakukan langkah di atas pada PC atau USB port yang lain, PC atau port yang sedang digunakan mungkin alami masalah pada Serial Bus Controller.

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •