전체 글
-
Perfmon Counter가 사라졌다카테고리 없음 2024. 4. 1. 13:38
https://support.cloudamize.com/kb/performance-counter-issues Performance Counter Issues Overview Cloudamize relies on Windows performance counters to provide accurate usage data for a system's CPU, memory, storage, networking, and more... support.cloudamize.com https://solarwindscore.my.site.com/SuccessCenter/s/article/Performance-counters-are-not-working-or-missing-in-PerfMon?language=en_US Per..
-
TDE 암호화 된 데이터 베이스 마이그레이션카테고리 없음 2024. 3. 13. 13:53
아래는 원본 서버에서 실행 -- 원본 SQL Server에서 TDE 인증서의 마스터 키 백업 USE master; BACKUP MASTER KEY TO FILE = 'D:\TDE\20240313\MasterKeyBackup.key' ENCRYPTION BY PASSWORD = 'P@ssw0rd!'; -- 원본 SQL Server에서 TDE 인증서의 개인 키 백업 USE master; BACKUP CERTIFICATE YourCertificateName TO FILE = 'D:\TDE\20240313\CertBackup.cer' WITH PRIVATE KEY (FILE = 'D:\TDE\20240313\PrivateKeyBackup.key', ENCRYPTION BY PASSWORD = 'P@ssw0rd!..
-
Recipent not found by Exchange Legacy encapsulated ....Exchange Server 2024. 2. 7. 17:47
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..
-
Event ID 5823 에 대한 정보카테고리 없음 2024. 1. 12. 12:51
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
-
Windows 7 Exchange Server 아웃룩 연결 방법카테고리 없음 2024. 1. 9. 16:24
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 지..
-
도메인 사용자 계정을 일괄 보안 그룹에 넣는 파워셸IT/Windows 2023. 12. 18. 18:10
# 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..
-
AD에 계정 속성 업데이트 하는 파워셸IT/Windows 2023. 12. 18. 17:36
# 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..