일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 화상회의
- chrome 오류
- 원드라이브 동기화 문제
- 쉐어포인트 외부 공유
- Outlook rule
- MS Office
- Outlook 초기화
- Office 365
- Onedrive
- outlook
- 팀즈
- Teams화상회의
- Outlook Web
- 아웃룩웹
- 아웃룩 초기화
- OneDrive 설정
- OWA
- OneDrive Sync Error
- sharepoint
- Microsoft
- outlook mac
- O365
- 원드라이브 동기화 해제
- Chrome 버그
- 아웃룩 프로필 초기화
- 아웃룩 맥 에러
- Teams Guest
- Teams
- 원드라이브 설정
- Outlook on the web
- Today
- Total
IT민들레 - M365 Specialist
SharePoint Online 그룹/사이트 일괄 용량 변경 본문
How to Set Storage Quota for all Office 365 Groups
아래의 Step 1, 2, 3 을 copy 하여 사용하면 되고,
PowerShell 에서 SharePoint Online Management Shell 사용을 위한 msi 파일을 설치하면 된다.
Following PowerShell script is used to Set Storage Quota for all Office 365 Groups. This script uses “Get-UnifiedGroup” to list all Office 365 groups, then uses “Set-SPOSite” to set StorageQuota and StorageQuotaWarningLevel for all Office 365 groups in the SharePoint Online tenant. Finally after setting storage quota, following information will be displayed as result: GroupName, StorageQuotaWarningLevel, CurrentStorage, and StorageQuota.
NOTE: It is recommended to execute the below script as .ps1 file with elevated privilege (Run as Administrator). Copy the below script to notepad and save it as .ps1 file or download .ps1 file from here
$SPOAdminCenterUrl=Read-Host "Enter the admin URL(https://domainanme-admin.sharepoint.com):" $Quota=Read-Host "Enter the Storage Quota value in MB:" $WarningQuota=Read-Host "Enter the Warning Storage Quota value in MB:" Import-Module Microsoft.Online.SharePoint.Powershell -Verbose
$credential = get-credential Connect-SPOService -Url $SPOAdminCenterUrl -Credential $credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $credential -Authentication Basic -AllowRedirection Import-PSSession $Session $Groups=Get-UnifiedGroup $Groups | Foreach-Object{ $Group = $_ $GName=$Group.Alias $SiteURL=$Group.SharePointSiteUrl If($SiteURL -ne $null){ Set-SPOSite -Identity $SiteURL -StorageQuota $Quota -StorageQuotaWarningLevel $WarningQuota $site=Get-SPOSite -Identity $SiteURL -Detailed New-Object -TypeName PSObject -Property @{ GroupName=$GName CurrentStorage=$site.StorageUsageCurrent StorageQuota=$site.StorageQuota StorageQuotaWarningLevel=$site.StorageQuotaWarningLevel }}}|select GroupName, CurrentStorage, StorageQuota, StorageQuotaWarningLevel
'Microsoft Office 365' 카테고리의 다른 글
Windows 7, MS Office 2010, Windows Server 2008, SQL Server 2008 EOS (0) | 2019.07.17 |
---|---|
Outlook 데이터 파일 위치 변경 (Office 365, 2016,, etc) (0) | 2019.04.05 |
MS Office ProPlus 소유자 변경 (라이선스 변경) (0) | 2019.02.15 |
Windows 10 Internet Explorer 에서 ActiveX 실행 안되는 문제 해결방법 (2) | 2018.12.11 |
원노트 표 셀 병합 - Work-around (0) | 2018.11.29 |