윈도우즈의 cmd 에서는 fork 가 없습니다 batch 파일/ cmd 에서는 start 명령으로 병렬실행을 할 수 있습니다start 명령의 help 를 보면 아래와 같습니다 https://docs.microsoft.com/ko-kr/windows-server/administration/windows-commands/start 매개 변수 Description <title> 명령 프롬프트 창 제목 표시줄에 표시할 제목을 지정합니다. /d <path> 시작 디렉터리를 지정합니다. /i Cmd.exe 시작 환경을 새 명령 프롬프트 창에 전달합니다. 경우 /i 를 지정 하지 않으면 현재 환경이 사용 됩니다. {/min | […]
Category: windows
[c++17][byte] visual studio c++17 with windows.h byte error C2872
visual studio 상에서 c++17 옵션을 활성화 시 만날 수 있는 오류 영문 1>c:\program files (x86)\windows kits\10\include\10.0.14393.0\shared\rpcndr.h(192): error C2872: ‘byte’: ambiguous symbol1>c:\program files (x86)\windows kits\10\include\10.0.14393.0\shared\rpcndr.h(191): note: could be ‘unsigned char byte’1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.11.25503\include\cstddef(15): note: or ‘std::byte’ 한글 1>C:\Program Files (x86)\Windows Kits\10\Include\10.0.19041.0\um\oaidl.h(563,26): error C2872: ‘byte’: 모호한 기호입니다.1>C:\Program Files (x86)\Windows Kits\10\Include\10.0.19041.0\shared\rpcndr.h(191,23): message : ‘unsigned char byte’일 […]
[Windows] PowerShell 버전 업데이트
windows 에서 개발중 powershell 에서 명령을 linux 처럼 처럼 연속 호출 하려고 했었다 안된다….. 찾아보니 해당 기능은 powershell 7 버전부터 지원! 한단다(원래 windows, cmd, powershell 에서 지원하지 않아서 -and 같은 걸 써야함) 해서 window pc 의 powershell 의 버전확인 현재 사용중이던 버전 powershell 7버전 이상은 수동으로 찾아 원하는 경우 설치가 가능하다 https://docs.microsoft.com/ko-kr/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.1 https://github.com/PowerShell/PowerShell/releases/tag/v7.1.5 github 의 […]
windows 에서 파일 해쉬값 구하기 (md5, sha256 …)
windows 에는 CertUtil 이라는 명령어를 사용 특정 파일의 md5 해시를 구해 봅니다 같은 파일의 sha256 해시를 구해 봅니다 해당 명령의 기본 사용법은 위와같습니다 certutil 을-hashfile — 파일에 암호화 해시 생성 및 표시 옵션을 통해서 지정 파일의 지정 해시 알고리즘 값을 얻습니다