본문 바로가기

반응형

전체 글

(128)
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..
Active Directory 메일 속성 업데이트(Powershell) Active Directory Powershell 모듈을 아래의 명령어를 통해 설치하고 나면, Exchange 관리 Console에 대한 설치 없이도 직접적으로 Mail 속성 값들을 업데이트할 수 있다. import-module ActiveDirectory Primary Mail 속성 업데이트 방법 - Set-ADUser -Identity "계정명" -EmailAddress "메일주소" 메일 속성 Clear 방법 - Set-ADuser -identity "계정명" - EmailAddress $null ProxyAddresses 속성에서 secondary smtp 제거 방법 - Set-ADuser -identity "계정명" -remove @{proxyAddresses="smtp:메일주소"} ProxyAd..
GPO를 활용해 Edge 브라우저를 기본 브라우저로 설정하기 Windows 10에 Join하여 PC를 쓰고 있는 기업 환경이라면, IT 관리자는 GPO 정책을 통해 Edge 브라우저를 기본 브라우저로 설정할 수 있다. SCCM을 통해 Edge 최신 브라우저를 배포하는 것도 가능하다. 최신 Edge Browser 다운로드 : Download Microsoft Edge Web Browser | Microsoft 먼저 회사의 Domain Controller 서버 (Active Directory 서버)에서, 새로운 application association 파일을 아래와 같이 생성한다. 해당 파일의 이름을 MSEdge.xml 로 저장을 하고, GPO 개체 생성 Group Policy Management 콘솔을 실행 후, Group Policy Objects 하위에 새로운..

반응형