読み取り専用を削除できない + cmd が機能しない

読み取り専用を削除できない + cmd が機能しない

私のラップトップのWindowsファイルとフォルダが読み取り専用になっています

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

私は試した : Right-click the folder > Properties Security tab > Advanced Click Change to the right of Owner Enter Users into box and click OK Enable the checkbox Replace owner on subcontainers and objects then click Apply If prompted that You do not have permissions to read... click Yes Completely close out of the Advanced Security Settings dialog Right-click the folder > Properties Security tab > Edit... Add... Enter Users into box and click OK Enable the Full Control checkbox then click OK

しかし、何も起こりません。また、cmd コマンドが機能していないことにも気付きました。

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

ありがとう

%path% の出力:

C:\Users\Kareem Khalil>echo %path%
;c:\\C:\Program Files (x86)\WinRAR;;c:\\C:\Program Files (x86)\WinRAR;C:\Program Files (x86)\BC5\BIN;C:\Users\Kareem Khalil\AppData\Roaming\npm;C:\New Folder;C:\New Folder

答え1

Windowsコマンドが機能しない

C:\Users\Kareem Khalil>echo %path%
;c:\\C:\Program Files (x86)\WinRAR;;c:\\C:\Program Files (x86)\WinRAR;C:\Program Files (x86)\BC5\BIN;C:\Users\Kareem Khalil\AppData\Roaming\npm;C:\New Folder;C:\New Folder

あなたの道は完全に壊れています:

  • Windows 実行可能ファイルに必要なエントリが欠落しています (これがコマンドが機能しない理由です)
  • \\エントリが含まれていてはいけません
  • 重複したエントリは含めないでください
  • 次のような文字列を含むエントリは含まれません。c:\\C:\
  • ;;エントリが含まれていてはいけません

Windows 10 (および以前のバージョンの Windows) での正しい (デフォルトの) パスは次のとおりです。

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\

見るPATH やその他の環境変数とは何ですか? また、それらを設定または使用するにはどうすればよいですか?PATH上記に示した正しい値に修正する方法については、こちらをご覧ください。

答え2

Windows 10 には、CMD の代わりに機能する可能性のある PowerShell という 2 番目のオプションがあります。その手順に従ってください。お役に立てば幸いです。

関連情報