목록Microsoft (50)
감사합니다.
Hyper-V에서 가상 머신을 실행하면 vmwp.exe 프로세스가 실행된다. 가상 머신을 실행하는 프로세스의 정보를 확인하고 싶을 때 다음의 방법을 사용한다. $VMName = "VirtualMachineName" #가상 머신의 이름 입력$VMGUID = (Get-VM $VMName).ID$VMWMProcess = (Get-WmiObject Win32_Process | ? {$_.Name -match 'VMWP' -and $_.CommandLine -match $VMGUID})$VMWMProcess 1. 프로세스를 중지Stop-Process ($VMWMProcess .ProcessId) -Force #가상 머신을 강제로 종료
Powershell을 사용하여 도메인에 가입하는 여러 가지 방법을 정리. 1. 기본 명령어Add-Computer -DomainName "contoso.com"Restart-Computer 2. 계정 정보를 사용하여 자동화하기$credential = New-Object System.Management.Automation.PsCredential("contoso\domainjoinaccount", (ConvertTo-SecureString "password" -AsPlainText -Force))Add-Computer -DomainName "contoso.com" -Credential $credential Restart-Computer 3. 특정 OU를 지정하기$credential = New-Object Sy..
Windows Server 2016의 2018년 3월 13일자 업데이트 정보 Link : https://support.microsoft.com/en-ph/help/4088787Note The release also contains updates for Windows 10 Mobile (OS Build 14393.2126) released on March 20, 2018.Improvements and fixesThis update includes quality improvements. No new operating system features are being introduced in this update. Key changes include:Addresses issue with printing XML d..
Windows Server 2012 R2의 2018년 3월 13일 보안 업데이트 정보Link : https://support.microsoft.com/en-ph/help/4088879Improvements and fixesThis security update includes quality improvements. No new operating system features are being introduced in this update. Key changes include:Addresses issue where customers sometimes can't sign in to Windows 2012 R2 servers when using a custom credential provider on a cons..