서버
> Enable-PSRemoting -Force
-Force : 모든 설정 질문에 Y
허용된 호스트 목록 보기
> Get-Item WSMan:\localhost\Client\TrustedHosts
호스트 추가
> Set-Item WSMan:\localhost\Client\TrustedHosts -Value "ip"
별도의 자격증명(id) 부여
> $Credential=Get-Credential "계정"
클라이언트에서 접속
> Enter-PSSession -ComputerName "ip" -Credential $Credential
원격 파워쉘 명령 실행
> Set-ExecutionPolicy RemoteSigned
> Get-ExecutionPolicy
Remotesigned
리부팅
> restart-computer
프로세스 목록
> ps
해당 프로세스의 모듈 보기
> ps -module 프로세스명
프로세스 중지
> stop-process -name 프로세스명
서비스 목록
> get-service | FT Status,Name,DisplayName
명령어 목록
> get-command
도움말
> get-help 명령어 -Example
'시스템 > Windows' 카테고리의 다른 글
WSL2 개발환경 설정 (0) | 2023.12.27 |
---|---|
배치파일 (0) | 2018.08.02 |
MBR to GPT : 파티션 변환하기 (0) | 2018.07.13 |
VS2017 OFFLINE 레이아웃 (0) | 2017.12.02 |
svn 서버 설치 (0) | 2017.09.24 |
윈도우 소프트 라이선스 도구 (0) | 2016.01.10 |
이것저것 레지스트리 (0) | 2015.09.14 |
윈도우 C++ 개발환경 (Code::Blocks, wxWidgets) (0) | 2015.03.30 |
윈도우7 무선랜카드 SoftAP 설정 명령 (0) | 2014.04.16 |
터미널서비스 admin 접속 (0) | 2012.08.28 |