본문 바로가기
반응형

전체 글179

Recipent not found by Exchange Legacy encapsulated .... If you face with above issue, it does mean that you have to refresh your address list. As far as I simulated alot for this issue and researched case happening this symptom, because of email account information's duplication.  Example, your email system has been migrated to another platform, however; you still retain the same email address. ie john.doe@contoso.com in IBM Notes and john.doe@contos.. 2024. 2. 7.
Event ID 5823 에 대한 정보 https://redmondmag.com/articles/2020/04/24/password-resets-for-remote-workers.aspx Microsoft Explains Windows Machine Password Resets for Remote Workers -- Redmondmag.com Microsoft this week explained how the machine password mechanism for Windows systems works, and the effects when people have shifted to working remotely. redmondmag.com 2024. 1. 12.
Windows 7 Exchange Server 아웃룩 연결 방법 https://support.microsoft.com/ko-kr/topic/windows%EC%9D%98-winhttp%EC%97%90%EC%84%9C-tls-1-1-%EB%B0%8F-tls-1-2%EB%A5%BC-%EA%B8%B0%EB%B3%B8-%EB%B3%B4%EC%95%88-%ED%94%84%EB%A1%9C%ED%86%A0%EC%BD%9C%EB%A1%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8F%84%EB%A1%9D-%EC%97%85%EB%8D%B0%EC%9D%B4%ED%8A%B8-c4bd73d2-31d7-761e-0178-11268bb10392 Windows의 WinHTTP에서 TLS 1.1 및 TLS 1.2를 기본 보안 프로토콜로 사용하도록 업데이트 - Microsoft 지.. 2024. 1. 9.
도메인 사용자 계정을 일괄 보안 그룹에 넣는 파워셸 # CSV 파일 경로 지정 $csvPath = "C:\powershell\yourfile.csv" # CSV 파일 읽기 $users = Import-Csv -Path $csvPath # Active Directory 모듈 로드 Import-Module ActiveDirectory # 각 사용자에 대해 처리 foreach ($user in $users) { # CSV 파일에 있는 필드 가져오기 $SamAccount = $user.SamAccount $LevelID = $user.LevelID # AD 그룹 이름 설정 (LevelID와 일치하도록 조정 필요) $groupName = $LevelID # 해당 LevelID의 AD 그룹에 사용자를 추가 if (Get-ADGroup -Filter {Name -eq.. 2023. 12. 18.
AD에 계정 속성 업데이트 하는 파워셸 # CSV 파일 경로 지정 $csvPath = "C:\powershell\Job_20231218_setaccount - a.csv" # CSV 파일 읽기 $users = Import-Csv -Path $csvPath # Active Directory 모듈 로드 # Import-Module ActiveDirectory # 각 사용자에 대해 처리 foreach ($user in $users) { # CSV 파일에 있는 필드 가져오기 $SamAccount = $user.MAILNICKNAME $Cn = $user.CN $Displayname = $user.DisplayName $Mail = $user.mail $MailNickName = $user.MAILNICKNAME $Department = $user.D.. 2023. 12. 18.
메일 검색에 유용한 파워셸 get-messagetrackinglog -start "2023-12-14" -sender john@contoso.com -resultsize unlimited | remove-message -withndr $false get-queue | get-message | where-object {$_.fromaddress -eq john@contoso.com} | remove-message -withndr $false 2023. 12. 14.
반응형