powershell:: invoke-WebRequest // iwr | iex

 

 

 

In PowerShell

Invoke-WebRequest 

Invoke-Expression 

 

# to install pnpm using powershell irw

iwr https://get.pnpm.io/install.ps1 -useb | iex

 

 

 

 


https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.utility/invoke-webrequest?view=powershell-7.4

 

Invoke-WebRequest (Microsoft.PowerShell.Utility) - PowerShell

cmdlet은 Invoke-WebRequest 웹 페이지 또는 웹 서비스에 HTTP 및 HTTPS 요청을 보냅니다. 응답을 구문 분석하고 링크, 이미지 및 기타 중요한 HTML 요소 컬렉션을 반환합니다. 이 cmdlet은 PowerShell 3.0에서 도

learn.microsoft.com

 

 

https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.utility/invoke-expression?view=powershell-7.4

 

Invoke-Expression (Microsoft.PowerShell.Utility) - PowerShell

cmdlet은 Invoke-Expression 지정된 문자열을 명령으로 평가하거나 실행하고 식 또는 명령의 결과를 반환합니다. 없으면 Invoke-Expression명령줄에서 제출된 문자열이 변경되지 않고 반환됩니다(에코됨).

learn.microsoft.com

 

 

 

 

_

반응형