윈 도 우 bat파일 실행 시 powershell 명령어 적용 되는 명령어 궁금합니다.
2022.12.28 20:37
Add-AppxPackage -Register -DisableDevelopmentMode “C:\Windows\SystemApps\Microsoft.Windows.SecHealthUI_cw5n1h2txyewy\AppXManifest.xml”
위 명령어는 파워쉘에서 사용해야하는데 bat 배치파일 만들때 powershell 로 명령어 적용 가능 한 명령어가 있었는데
기억이 안나네요 ㅠㅠ
혹시 알고 계신분 계실까요??
댓글 [4]
-
zerojiddu 2022.12.28 21:13 -
Neutrino 2022.12.28 23:14
여러줄도 다음과 같이는 한꺼번에 됩니다.
( echo 어쩌고
echo 저저고
echo ...
) | powershell
위의 어쩌고 저쩌고는 파워쉘 구문.
주의할점은 구문에 괄호가 있을시 ^^^( ^^^) 처럼 꺾쇠 3개를 전치해야 함.
powershell 뒤에 >nul 하면 메세지 출력을 안하고 2>nul을 추가하면 오류에 대한 정보도 출력안함.
-
상큼한아침 2022.12.29 10:37
배치파일에서
powershell Add-AppxPackage -Register -DisableDevelopmentMode “C:\Windows\SystemApps\Microsoft.Windows.SecHealthUI_cw5n1h2txyewy\AppXManifest.xml”
이거 말하는거 아닌가요
그냥 앞에다 powershell 치고 명령어
-
배움의길로 2022.12.29 14:16
PowerShell -Command "& {Add-AppxPackage -Register -DisableDevelopmentMode “C:\Windows\SystemApps\Microsoft.Windows.SecHealthUI_cw5n1h2txyewy\AppXManifest.xml"}
위와 같이 만들었는데 댓글 주신거로도 잘 되네요~!
감사합니다.
구글에서
execute powershell commands in cmd
쳐보세요. 무수히 많은 자료가 있습니다.
전 cmd 에는 관심이 없어
구글 링크를 자세히 보진 않았습니다.
님이 둘러보세요.