본문 바로가기
Windows

[Windows] *.ps1 스크립트 실행하기

by 앗사비 2015. 5. 28.
728x90

ps1 확장자를 가진 파워쉘 스크립트를 실행하려면 아래와 같이 진행한다


1. powershell 을 관리자 권한으로 실행

2. Set-ExecutionPolicy Unrestricted 명령어 실행 > Y 입력

3. 탐색기에서 *.ps1 파일 우클릭 > PowerShell에서 실행 (또는 배치파일로 실행)


* bat command

Powershell.exe -noprofile -executionpolicy bypass -file "C:\~\~.ps1"

728x90