사용자 도구

사이트 도구


windows:powershell

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
windows:powershell [2021/06/24 14:05]
kwon37xi
windows:powershell [2024/12/13 11:26] (현재)
kwon37xi [Powershell script from remote / 원격 스크립트 실행]
줄 1: 줄 1:
 ====== Windows Powershell ====== ====== Windows Powershell ======
   * https://powershell.org/   * https://powershell.org/
-  * ====== Starship ====== +  * [[:starship|Starship]]
-  * https://starship.rs +
-  * https://github.com/starship/starship +
-  * The minimal, blazing-fast, and infinitely customizable prompt for any shell! +
-  * Linux, Mac OS X, Windows 모두에서 사용가능한 shell prompt 확장 +
- +
- +
   * [[https://github.com/PowerShell/PowerShell/tree/master/docs/learning-powershell|Learning Powershell]]   * [[https://github.com/PowerShell/PowerShell/tree/master/docs/learning-powershell|Learning Powershell]]
   * [[https://github.com/JanDeDobbeleer/oh-my-posh|oh-my-posh]]   * [[https://github.com/JanDeDobbeleer/oh-my-posh|oh-my-posh]]
   * [[https://mva.microsoft.com/en-us/training-courses/getting-started-with-powershell-3-0-jump-start-8276?l=r54IrOWy_2304984382|Microsoft PowerShell Tutorial & Training Course – Microsoft Virtual Academy]]   * [[https://mva.microsoft.com/en-us/training-courses/getting-started-with-powershell-3-0-jump-start-8276?l=r54IrOWy_2304984382|Microsoft PowerShell Tutorial & Training Course – Microsoft Virtual Academy]]
 +  * [[https://github.com/fleschutz/PowerShell|fleschutz/PowerShell: Mega collection of 250+ useful cross-platform PowerShell scripts.]]
  
 ===== 기본 개인 profile 파일 ===== ===== 기본 개인 profile 파일 =====
   * [[https://technet.microsoft.com/en-us/library/bb613488(v=vs.85).aspx|Understanding profile]]   * [[https://technet.microsoft.com/en-us/library/bb613488(v=vs.85).aspx|Understanding profile]]
 +  * Linux 의 ''.bashrc'' 같이 Powershell 실행시마다 매번 자동 실행되는 스크립트
   * ''$PROFILE'' 환경변수 값으로 프로필 파일 생성<code>   * ''$PROFILE'' 환경변수 값으로 프로필 파일 생성<code>
 New-Item $profile -force -itemtype file New-Item $profile -force -itemtype file
 </code> </code>
-  * ''$Home\[My ]Documents\WindowsPowerShell\Profile.ps1''+  * ''C:\Users\<USER>\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1''
 ===== Powershell Core ===== ===== Powershell Core =====
   * [[https://blogs.msdn.microsoft.com/powershell/2018/01/10/powershell-core-6-0-generally-available-ga-and-supported/|Powershell Core 6.0 GA Linux / MacOS X Support]]   * [[https://blogs.msdn.microsoft.com/powershell/2018/01/10/powershell-core-6-0-generally-available-ga-and-supported/|Powershell Core 6.0 GA Linux / MacOS X Support]]
줄 105: 줄 100:
 </code> </code>
  
 +===== Powershell script from remote / 원격 스크립트 실행 =====
 +  * [[https://www.thomasmaurer.ch/2021/07/powershell-download-script-or-file-from-github/|PowerShell: Download script or file from GitHub - Thomas Maurer]]
 +
 +<code sh>
 +# 한방에 실행
 +Invoke-Expression (Invoke-WebRequest -Uri "https://example.com/script.ps1").Content
 +
 +# Invoke-Expression -> iex, Invoke-WebRequest -> iwr
 +iex (iwr -Uri "https://example.com/script.ps1").Content
 +
 +# 스크립트 다운로드 후 실행
 +# 스크립트를 로컬에 다운로드
 +Invoke-WebRequest -Uri "https://example.com/script.ps1" -OutFile "C:\Temp\script.ps1"
 +
 +# 다운로드한 스크립트 실행
 +PowerShell -File "C:\Temp\script.ps1"
 +</code>
 +
 +  * 실행 정책 문제(Execution Policy) : 기본적으로 PowerShell 이 외부 스크립트 실행을 제한할 수도 있다.
 +<code sh>
 +# 실행시점에 정책 무시
 +powershell.exe -ExecutionPolicy Bypass -Command "iex (iwr -Uri 'https://example.com/script.ps1').Content"
 +
 +# 현재 세션의 실행정책 임시 변경
 +Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
 +</code>
 ===== tail ===== ===== tail =====
 마지막 1000 줄 보여주면서 계속 출력하기 마지막 1000 줄 보여주면서 계속 출력하기
줄 160: 줄 181:
 Restart-Computer Restart-Computer
 </code> </code>
 +
 +===== Linux PowerShell =====
 +  * [[https://learn.microsoft.com/ko-kr/powershell/scripting/install/installing-powershell-on-linux|Installing PowerShell on Linux]]
 +  * [[https://learn.microsoft.com/ko-kr/powershell/scripting/install/install-ubuntu|Ubuntu에 PowerShell 설치]]
  
 ===== 참조 ===== ===== 참조 =====
   * [[https://gist.github.com/jchandra74/5b0c94385175c7a8d1cb39bc5157365e|PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization]]   * [[https://gist.github.com/jchandra74/5b0c94385175c7a8d1cb39bc5157365e|PowerShell, Cmder / ConEmu, Posh-Git, Oh-My-Posh, Powerline Customization]]
 +  * [[https://www.tutorialspoint.com/powershell/index.htm|Powershell Tutorial]]
  
windows/powershell.1624511144.txt.gz · 마지막으로 수정됨: 2021/06/24 14:05 저자 kwon37xi