읽기 전용을 제거할 수 없음 + 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이라는 보조 옵션이 작동할 수 있습니다. 이에 대한 지침을 따르십시오. 도움이 되었기를 바랍니다.

관련 정보