태그별 글 목록: PowerShell

Windows Server 2012 R2: PowerShell 스크립트를 작업 스케줄러에서 동작시키기

출처: <https://community.spiceworks.com/how_to/17736-run-powershell-scripts-from-task-scheduler> 위 방법대로 하니 잘 동작함. 필독. 5분마다 Skype for Business Server의 상태 보고서를 작성해 메일로 보냄. https://blogs.msdn.microsoft.com/canberrapfe/2014/12/11/lync-server-2013-health-check-script/ 에서 다운로드 가능. 자세한 사항은 아래와 같다. 일반 트리거 프로그램 시작 동작 속성 프로그램/스크립트 Powershell 인수 추가 -ExecutionPolicy Bypass “.\SystemStatus.1.01.ps1 -Action status -ServerFile c:\scripts\systemstatus\servers.txt -PoolName skype1.archmond.kr -SendEmail $true -Environment archmond -EventData $True” -RunType $true -Path C:\Users\skyadmin\Desktop 시작 위치 C:\Users\skyadmin\Desktop 비밀 번호를 …

더 읽기 »

Windows Server 2012 R2: 쉽게 도메인 가입하기

http://www.itnotes.eu/?p=1998 사이트 참고. 이것저것 짜맞춘 스크립트 먼저 DNS에 DC 2대를 추가 $ipv4dns1 = “192.168.0.20”;$ipv4dns2 = “192.168.0.21”;Get-DnsClientServerAddress -InterfaceAlias 이더넷 | Set-DnsClientServerAddress -ResetServerAddressesSet-DNSClientServerAddress -InterfaceAlias 이더넷 -ServerAddresses (“$ipv4dns1″,”$ipv4dns2”) (영문 버전이라면 InterfaceAlias에 Ethernet 을 입력) 잘 된다. (관리자 권한이 필요) ———————————————– 컴퓨터 이름 변경 후 재시작 Rename-Computer 컴퓨터이름 –restart 컴퓨터 이름 변경 후 재시작 ——————————————————- 도메인 가입 $domain = “도메인명.kr”$password = “비밀번호” | ConvertTo-SecureString …

더 읽기 »

Hyper-V: VM 구성 파일 위치 확인

먼저 Get-VM으로 어떤 VM들이 있는지 확인. Hyper-V 호스트 컴퓨터에서 작업한다. 관리자 권한 파워셸을 열어서 get-vm 을 입력해본다. 구성 파일의 위치는 아래와 같이 확인. $VM = Get-VM “VM이름입력”Write-Host $VM.ConfigurationLocationWrite-Host $VM.VMId 실제로 아래와 같은 폴더에 위치함. 구성 파일은 위에서 봤던 C7~99 와 같다.

더 읽기 »

Windows Server 2012 R2: 로그오프하기

1. Shutdown.exe 사용 shutdown -l 로그오프됨. 2. logoff.exe 사용 PowerShell로 구문 찾아봄. logoff.exe가 있네? 과감히 logoff 로그오프 ;; [예제] Logoff.exe Examples To log off a user from the current session, type: logoff To log off a user from a session by using the session’s ID, for example session 12, type: logoff 12 To log off a user from a session …

더 읽기 »

Exchange Server 2013: Test-ServiceHealth

고객사의 익스체인지 서버 2013을 되살리는 도중에 Test-ServiceHealth 라는 기능을 알게 되었다. 위에서 RequiredServicesRunning에서 False로 되어 있는 역할을 확인하여, ServicesNotRunning에 나열되어 있는 서비스를 시작해주면 된다. 도움을 받은 링크: http://exchangeserverpro.com/exchange-2013-test-service-health/ 아주 좋다.

더 읽기 »

[노트] PowerShell 학습 2일차

RTFM… 학습에 활용한 도서는 윈도우 파워셸 3 시작하기 – 제2판(원서명: Learn Windows PowerShell 3 in a Month of Lunches)이다. ▲ 도와줘요! ‘도움말’만이 우릴 구원할 수 있다. 도움말을 읽지 않으면 시작할 수 없다. 도움말 속에 세부적인 사용법/옵션이 있다. GUI를 벗어나는 방법은 도움말 밖에 없다. 도움말 속에서 오류의 해결법을 찾을 수 있다. help 명령 ▲ 이런 식으로 나온다. 아직은… 도움말을 봐도 무슨 …

더 읽기 »

[노트] PowerShell 학습 1일차

일 년 만에 다시 책을 집어들었습니다 학습에 활용한 도서는 윈도우 파워셸 3 시작하기 – 제2판(원서명: Learn Windows PowerShell 3 in a Month of Lunches)이다. ▲ 이 책을 산 것은 꽤 오래되었다. 제이펍 블로그에서 처음 출간 소식을 접하고 책이 나오자 마자 구매 버튼을 눌렀던 것 같다. 그동안 뭐 한다고 못 봤지? PowerShell에 대한 인식 일단 파워쉘(파워셸?) 초보인 나의 PowerShell에 대한 인식은 …

더 읽기 »