일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- Web
- OSS
- Github
- GoogleDrive
- Powershell
- ChatGPT
- git
- ICT멘토링
- Python
- Spring Boot
- 고등학생 대상
- rnn
- KAKAO
- 국가과제
- suricata
- C언어
- Docker
- Machine Learning
- 크롤링 개발
- 코딩도장
- VSCode
- Spring
- 인터넷의이해
- cloud
- Rocky Linux
- colab
- Resnet
- API
- LINUX MASTER
- Database
- Today
- Total
목록Powershell (5)
코딩두의 포트폴리오

출력형식 Format-wide: 기본속성을 출력 Format-List: 속성을 리스트 형태로 출력 Format-Table: 속성을 테이블 형식으로 출력 Fromat-Custom: 모든 속성과 속성들의 계층적 구조 출력 Get-Process 실행 시 현재 목록 확인 Get-Process | Format-Wide 실행 시 한 줄에 두 줄의 칼럼이 나옴 Get-Process | Format-Wide -column 4 실행 시 4개의 칼럼 확인 Get-Process | Format-List :리스트 형식으로 확인 Get-Process | Format-Table: 테이블 형식으로 확인 Get-Process -name powershell | format-table 프로세스 중 파워쉘이라는 이름을 가진 프로세스를 출..

Get-Command: 모든 명령어 목록을 확인 Get-Command -type cmdlet: cmdlet이라는 커맨드만 확인 get-help get-service: 커맨드들 중 service를 확인하고 싶을때 get-help 명령어를 사용

Get-Help + 도움말이 필요한 명령어 ex) Get-Help Get-Process Help Get-Process도 같은 결과값이 나오는 동일한 명령어 ex) Get-Help Get-Process -examples Get-Process -?도 동일한 처리를 해주는 명령어

Get-Process: 옵션값 확인하기 Get-Process -Name winlogon: winlogon 프로세스만 확인