外部ドライブのユーザーフォルダーへのアクセスを許可する


9

最近ノートブックのHDDをSSDに交換し、SSDにWindows 7を再インストールしました。「古い」HDD用のキャディを購入しましたが、SSDからウィンドウを正常に起動できます。

古い HDDを外付けドライブとして見ることができます。しかし、その上にある自分のユーザーフォルダーにアクセスできません。ユーザーフォルダーを開こうとすると、次のエラーが発生します。

ここに画像の説明を入力してください

をクリックしてもContinue、実際には何も起こりません。緑色のバーが表示され、読み込まれます(「ファイルを取得しています!」など)。ただし、最後まで到達すると、フォルダーに入ることができません。

何か案は?




1
@ techie007 BeNdErRがマークを付けてこの質問を閉じることができるように、回答を回答として追加してください。重複したとして、そうでくださいフラグを
ガネーシュR.


@GaneshR。私はそれをだましだとマークしましたが、その日の投票には間に合いません。
Ƭᴇcʜιᴇ007

回答:


7

このコマンドtakeownを使用して、ユーザーフォルダーの所有権を取得し、古いハードディスク上のファイル(または他のユーザーのファイル)に再びアクセスできます。

(上記のtechie007のコメントから。

C:\>takeown /?

TAKEOWN [/S system [/U username [/P [password]]]]
        /F filename [/A] [/R [/D prompt]]

Description:
    This tool allows an administrator to recover access to a file that
    was denied by re-assigning file ownership.

Parameter List:
    /S           system          Specifies the remote system to
                                 connect to.

    /U           [domain\]user   Specifies the user context under
                                 which the command should execute.

    /P           [password]      Specifies the password for the
                                 given user context.
                                 Prompts for input if omitted.

    /F           filename        Specifies the filename or directory
                                 name pattern. Wildcard "*" can be used
                                 to specify the pattern. Allows
                                 sharename\filename.

    /A                           Gives ownership to the administrators
                                 group instead of the current user.

    /R                           Recurse: instructs tool to operate on
                                 files in specified directory and all
                                 subdirectories.

    /D           prompt          Default answer used when the current user
                                 does not have the "list folder" permission
                                 on a directory.  This occurs while operating
                                 recursively (/R) on sub-directories. Valid
                                 values "Y" to take ownership or "N" to skip.

    /?                           Displays this help message.

    NOTE: 1) If /A is not specified, file ownership will be given to the
             current logged on user.

          2) Mixed patterns using "?" and "*" are not supported.

          3) /D is used to suppress the confirmation prompt.

Examples:
    TAKEOWN /?
    TAKEOWN /F lostfile
    TAKEOWN /F \\system\share\lostfile /A
    TAKEOWN /F directory /R /D N
    TAKEOWN /F directory /R /A
    TAKEOWN /F *
    TAKEOWN /F C:\Windows\System32\acme.exe
    TAKEOWN /F %windir%\*.txt
    TAKEOWN /S system /F MyShare\Acme*.doc
    TAKEOWN /S system /U user /F MyShare\foo.dll
    TAKEOWN /S system /U domain\user /P password /F share\filename
    TAKEOWN /S system /U user /P password /F Doc\Report.doc /A
    TAKEOWN /S system /U user /P password /F Myshare\*
    TAKEOWN /S system /U user /P password /F Home\Logon /R
    TAKEOWN /S system /U user /P password /F Myshare\directory /R /A

Vistaの例。Windows 7でも同様です。


すばらしい、そして私はこれがwindows 10でも動作することを確認できます
Numeron

1
ので、1 TAKEOWN /F E:\Users\*:私は、私が行ってsholdveと仮定しても私のために働いたTAKEOWN /F E:\Users\user\*
ジョン・D

私は実行する必要がありましたcmd管理者としての、また、再帰:TAKEOWN /F E:\Users\* /R
フェリックス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.