새 파일, 디렉토리, 심볼릭 링크 또는 레지스트리 항목을 만듭니다. 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/new-item.
touch
와 동일):New-Item {{경로\대상\파일}}
New-Item -ItemType Directory {{경로\대상\디렉토리}}
New-Item {{경로\대상\파일}} -Value {{내용}}
New-Item {{경로\대상\파일1 , 경로\대상\파일2 , ...}} -Value {{내용}}
New-Item -ItemType {{SymbolicLink|HardLink|Junction}} -Path {{경로\대상\링크_파일}} -Target {{경로\대상\소스_파일_또는_디렉토리}}
New-ItemProperty
또는 Set-ItemProperty
사용):New-Item {{경로\대상\레지스트리_키}}
New-Item {{경로\대상\레지스트리_키}} -Value {{값}}