WindowsOS개발환경/PowerShell
-
윈도우 포트(window port) 죽이기(kill) 8080 8000내가 만든 포트 kill하기WindowsOS개발환경/PowerShell 2023. 6. 24. 18:24
netstat : 실행중인 port 찾기 netstat -a -o : 실행중인 port 표시, 프로세스id(pid) 표시 taskkill /f /pid 1234 : 1234 프로세스id(pid) kill하기 https://killohotel.tistory.com/entry/window-port-%EC%A3%BD%EC%9D%B4%EA%B8%B0 윈도우 포트(window port) 죽이기(kill) netstat: 실행중인 port 찾기 netstat -a -o : 실행중인 port 표시, 프로세스id(pid) 표시 taskkill /f /pid 1234: 1234 프로세스id(pid) kill하기 killohotel.tistory.com // 8080 port찾기 netstat -vanp tcp | gre..
-
윈도우 부팅할 때 PowerShell파워셀 스크립트 Script 실행하기WindowsOS개발환경/PowerShell 2023. 3. 10. 10:56
https://aspdotnet.tistory.com/2935 윈도우 부팅할 때 PowerShell 파워셀 스크립트 Script 실행하기 윈도우 부팅할 때 PowerShell 파워셀 스크립트 Script 실행하기 서명되지 않은 파워쉘 스크립트를 실행 서명되지 않은 파워쉘 스크립트를 실행하기 위해 실행 규칙을 변경하기 위해서, powershell 을 관 aspdotnet.tistory.com
-
pwsh.exe💕명령어 한줄에 동시에 2개 입력하는 방법&&WindowsOS개발환경/PowerShell 2023. 2. 13. 15:37
https://stackoverflow.com/questions/563600/can-i-get-or-and-to-work-in-powershell Can I get "&&" or "-and" to work in PowerShell? Note: This question originally asked in 2009, when powershell did not have support for the && operator. In 2019, per Jay's answer, microsoft added support for && and || in Powershel... stackoverflow.com
-
파워셀 업데이트 하기powershell update(pwsh.exe 관리자권한으로 들어가서 밑에 그냥 치면 됨. 개편함. 💕WindowsOS개발환경/PowerShell 2023. 2. 13. 15:33
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" https://jae04099.tistory.com/entry/Console-PowerShell-%EC%97%B0%EC%82%B0%EC%9E%90 [Console] PowerShell && 연산자 깃 명령어 등을 찾다보면, &&연산자를 이용해서 설명해주는 곳 들이 많다. 너무 기본적이고 필수적인건데 지원을 안해줘서 유저들이 항의하고있는 장면도 발견했다. 꽤 된 일이지만, 모두의 노 jae04099.tistory.com
-
Powershell에서 파일 내 문자열 찾기 폴더에서 *.cpp 이렇게WindowsOS개발환경/PowerShell 2023. 2. 13. 15:28
https://erratum.tistory.com/entry/Powershell%EC%97%90%EC%84%9C-%ED%8C%8C%EC%9D%BC-%EB%82%B4-%EB%AC%B8%EC%9E%90%EC%97%B4-%EC%B0%BE%EA%B8%B0 Powershell에서 파일 내 문자열 찾기 Unix나 Linux와 같은 OS에서는 파일 내 문자열 찾는 유틸리티라면 누구나 grep을 떠올린다. 광활한 file system에서 내가 원하는 문자열을 포함하고 있는 파일을 찾는 것이 생각보다 더욱 빈번하고 중요 erratum.tistory.com
-
WindowsOS❤️윈도우에서 러스트 target폴더 하위폴더 검색하기 & 찾은 다음 그 폴더 삭제하기(러스트 나오는 쓰레기target/ C#나오는 쓰레기 obj bin하위 폴더 찾아서 다 지워라 귀찮다!!WindowsOS개발환경/PowerShell 2023. 2. 13. 15:04
우선 target폴더 검색 dir .\ -r -i "target" target폴더 찾아서 지우기(파워셀에서 실행해야함 pwsh.exe) Get-ChildItem -Filter ./target -Recurse -Force | Remove-Item -Recurse -Force 귀찮은 C# bin 폴더 obj 폴더 하위폴더 다 찾아서 다 지워주기 귀찮아 죽겠네 !!!! Get-ChildItem -Filter ./bin -Recurse -Force | Remove-Item -Recurse -Force && Get-ChildItem -Filter ./obj -Recurse -Force | Remove-Item -Recurse -Force https://sungtg.tistory.com/m/810 [윈도우7] 파일..
-
WindowsOS💕파워셀 실행명령어pwsh.exe(또는 powershell.exe)WindowsOS개발환경/PowerShell 2023. 2. 8. 17:32
https://powershellexplained.com/2017-12-29-Powershell-what-is-pwsh/ Powershell: What is pwsh.exeThe pwsh.exe process is the new name for PowerShell Core starting with version 6.0. The executable changed names from powershell.exe to pwsh.exe. Let’s take a look at this executable. Index Installing PowerShell 6.0 The best place to start is over on thepowershellexplained.com WindowsOS_윈도우_개발자세팅_파워셀_..