Server/Windows Server
Windows 배포 서비스 구성 오류
달빛에취하다
2023. 11. 17. 15:30
Windows 배포 서비스 (Windows Deployment Server - WDS) 구성시 아래 오류와 같은 오류는 공유 폴더 문제로 발생
1. 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다.
- The file name, directory name, or volume label syntax is incorrect.
2. 네트워크 이름을 찾을 수 없습니다.
- The Network name not found.
3. 처리 방법 - Powershell 사용
Set-ItemProperty -Name AutoShareServer -Path HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters -Value 1
Set-ItemProperty -Name AutoShareWks -Path HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters -Value 1
Get-service LanmanServer | restart-service -verbose -Force
Managing Administrative Shares (Admin$, IPC$, C$, D$) in Windows 10 | Windows OS Hub
Administrative Shares are used in Windows to remotely access and manage a computer. If you open the computer management console (compmgmt.msc), expand the System Tools -> Shared Folders -> Share…
woshub.com