프로그래밍/powershell9 [powershell]cmd창 파워쉘 실행 파일 내용 cat tail cat 파일명 | tail -n 10 리눅스에서는 쉽게 가능하지만 윈도우는 쉽지않다. 윈도우에서 파일내용 중 맨아래 n라인을 확인 하고 싶다. cmd 창에서 명령을 내리고 싶다면 아래와 같이 수행한다. testlog.txt 내용 중 맨아래 20라인을 출력하고 싶다. powershell -command "Get-Content -Path 'C:\test\testlog.txt' | Select-Object -Last 20" powershell -command "Get-Content -Path 'C:\test\testlog.txt' | Select-Object -Last 20" 2023. 9. 14. [powershell] 설치된 프로그램 리스트 조회 제어판 > 프로그램 추가 제거에 나오는 설치된 어플리케이션을 확인할 수 있다. Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize 2022. 10. 11. [powershell] 윈도우 스케줄러 enable/disable 윈도우 스케줄 batch 로 disable enable 하는 방법 powershell Disable-ScheduledTask -TaskName "스케줄명" powershell enable-ScheduledTask -TaskName "스케줄명" 파워쉘 윈도우 스케줄러 enable disable 배치 윈도우 스케줄러 batch windows scheduler enable disable 2022. 8. 2. [powershell] windows 계정 이름 rename 윈도우 계정 이름 rename Rename-LocalUser -Name 'administrator' -NewName '바꿀계정' 2022. 7. 26. 이전 1 2 다음 반응형