Tip/ETC 4

Windows 10 저장소 풀 생성 (RAID5)

디스크 관리(diskmgmt.msc)에서 RAID 5 생성이 비활성화 되어있거나 저장소 풀 만들기에서 매개 변수가 틀리다면서 저장소 풀이 생성이 안됨. https://thewayeye.net/posts/creating-storage-space-powershell/ Creating a Storage Space in Windows 10 with Powershell I’m not sure if this is due to system in question being in the insider fast ring (Build 19041 version 10.0.19041), however when trying to create a storage space via the GUI I got the following er..

Tip/ETC 2020.05.31

[bat] 여러파일 드래그 앤 드롭으로 시간으로 파일명 변경

배치파일 이용해서 여러 파일을 드래그해서 배치파일에 떨궈주면 떨궈 준 당시 날짜,시간으로 파일명 변경 날짜_시간_카운트.확장자 로 자동으로 이름 변경 @echo off setlocal enabledelayedexpansion set "count=1" for %%f in (%*) do ( ren %%f "%date:~0,4%%date:~5,2%%date:~8,2%_%time:~0,2%%time:~3,2%%time:~6,2%_!count!%%~xf" set /a "count+=1" ) endlocal 카운트는 파일명 중복 방지용 경로(파일명)길이에 따라 한번에 할 처리할 수 있는 숫자에 차이가 나는 듯..

Tip/ETC 2020.03.13