Powershell 원격 로그인 정보 가져오기 $username='username' $password = "password" | ConvertTo-SecureString -asPlainText -Force $credential = New-Object System.Management.Automation.PSCredential($username,$password) Get-WinEvent -ComputerName $Computername -LogName application -MaxEvents 10 -Credential $credential