본문 바로가기

반응형

전체 글

(114)
Update a user's photo in Active Directory (AD). You can use PowerShell to update a user's photo in Active Directory (AD). Here are the steps to do this: 1.Connect to your AD: To connect to your AD, open PowerShell and run the following command: Import-Module ActiveDirectory 2.Get the user: To get the user that you want to update, run the following command, replacing "UserName" with the name of the user: $user = Get-ADUser -Filter "Name -eq 'U..
How to Check Active Directory (AD) replication There are several ways to check the status of Active Directory (AD) replication: 1. Using the Repadmin tool: The Repadmin tool is a command-line tool that you can use to monitor and troubleshoot AD replication. To check the replication status, you can run the following command: repadmin /replsummary This command displays a summary of the replication status for all domains in your forest. 2. Usin..
Azure Active Directory Premium2 (main features) Azure Active Directory (AD) Premium P2 is a version of Azure AD that provides advanced features for identity and access management. Some of the main features include: 1.Multi-Factor Authentication (MFA): This feature allows you to add an extra layer of security to your sign-in process by requiring users to provide a second form of authentication. 2.Identity Protection: This feature uses machine ..
Active Directory 그룹 관리 AD 그룹 추출 Get-ADGroup -filter 'name -like "*그룹명*"' -Properties description | Select-Object Name,GroupScope, description | Export-Csv -Encoding UTF8 -Path C:\ADGroup_list.csv -Encoding UTF8 인자를 통해 한글로 Export 할 수 있다. AD 그룹 생성 New-ADGroup -Name "그룹명" -SamAccountName ”그룹명” -GroupCategory Security -GroupScope Global -DisplayName "그룹명" -Path "DC=domain,DC=com" -Description "설명" AD 그룹 구성원 추출 $OU = 'DC=d..
Active Directory 계정 암호 초기화 Active Directory Powershell을 통해 수행 가능하며, 아래 명령어를 사용하면, 기본 리셋 기능의 초기화 설정을 진행할 수 있다. Set-ADAccountPassword -Identity ep01 -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "password" -Force) 기술 문서 : Set-ADAccountPassword (ActiveDirectory) | Microsoft Learn Set-ADAccountPassword (ActiveDirectory) Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. l..
국내 SI 기업 순위 (2022년 8월) 해당 순위는 블라인드 게시판에 공개된 의견을 취합하여 정리한 직장인들의 보편적인 의견일 뿐이며, 회사의 규모 매출과는 큰 연관성이 없는 점을 다시 한번 기억하자. 0티어 우리에프아이에스 / 우리에프아이에스 (woorifis.com) 우리에프아이에스 www.woorifis.com 1티어 3대장 삼성 SDS / https://www.samsungsds.com/ LG CNC / LG CNS SK C&C / SK Inc. C&C (skcc.com) SK주식회사 C&C www.skcc.com LG CNS LG CNS는 IT신기술로 고객의 DX를 선도하는 Digital Growth Partner 입니다. www.lgcns.com 삼성SDS 삼성SDS는 지난 30여년간 IT 서비스의 리더로 고객의 니즈, 시대의 변화..
Powershell을 활용한 Office365 라이선스 관리 Office 365 라이선스 관리를 위해 가장 손쉬운 Powershell을 활용해보자. 우선 아래 명령어로 모듈 설치 Install-Module AzureAD 이후, 관리자 계정으로 연결 Connect-AzureAD 현재 테넌트에 할당된 라이선스 목록을 조회하는 방법은 다음과 같다. Get-AzureADSubscribedSku | Select Sku*,*Units 만약, 라이선스가 실제 할당된 수량을 확인하고자 한다면, 아래 명령어를 수행하여 확인 가능하다. Get-AzureADSubscribedSku | Select -Property Sku*,ConsumedUnits -ExpandProperty PrepaidUnits 라이선스가 가지고 있는 ServicePlan 목록을 보고 싶으면, 아래 명령어를 활용..
PowerShell을 사용하여 Microsoft 365접속하기 1. Install-Module -Name AzureAD 실행 (All Yes 선택) 2. Connect-AzureAD 실행 3. AzureAD 계정으로 로그온 4. 로그온이 되면, Azure Active Directory PowerShell for Graph 모듈의 cmdlet을 사용할 수 있다. M365 서비스별 Powershell Module 설치 A. Teams Install-Module -Name MicrosoftTeams -Force -AllowClobber B. Sharepoint Online Install-Module -Name Microsoft.Online.SharePoint.PowerShell -Force -AllowClobber Install-Module -Name PnP.PowerS..

반응형