이 도움말에서는 Dropbox Standard, Advanced, Business, Business Plus, Enterprise의 특정 관리자 유형이 사용할 수 있는 기능을 설명합니다.
대부분의 팀에서는 공동 작업이 기본적으로 활성화되어 있습니다. 그러나 기본적으로 팀에서 차단한 앱이 연결되어 있는 경우 팀이 Microsoft Office 365를 Dropbox에 연결하도록 허용하여 공동 작업을 활성화해야 합니다. 방법은 다음과 같습니다.
Windows는 신뢰할 수 없는 출처의 문서로 보기 전용 모드에서 자동으로 공동 작업 세션을 시작합니다. Dropbox는 Windows 컴퓨터에서는 기본적으로 신뢰할 수 없는 출처입니다. 화면 상단에 인터넷에서 가져온 파일에 바이러스가 포함되어 있을 수 있다는 경고 배너가 표시됩니다. 문서 편집을 시작하려면 편집 사용을 클릭합니다. 이 단계를 건너뛰려면 Dropbox를 신뢰할 수 있는 출처로 설정하면 됩니다. 방법은 다음과 같습니다.
참고: 다음은 팀의 IT 관리자를 대상으로 하는 지침입니다. 자동 프로비저닝 프로세스를 시작하기 전에 이 안내서와 Microsoft의 Add-a-Place Provisioning for Desktop 문서를 모두 읽어 보시는 것이 좋습니다.
새로운 GPO(그룹 정책 개체)를 만들고 구현하려면 다음과 같이 하세요.
$DropboxForTeamsServiceId = 'TP_DROPBOX_PLUS'; function Get-DropboxForTeamsExists { param ($OfficeVersion) $serviceExists = 0; $localServices = Get-ChildItem -Path "HKCU:\Software\Microsoft\Office\$OfficeVersion\Common\ServicesManagerCache\Local" foreach ($value in $localServices) { $service = Get-ItemProperty "HKCU:\$value" if ($service.ServiceId -eq $DropboxForTeamsServiceId) { $serviceExists = 1; break } } $serviceExists; } # Get current office version function Get-OfficeVersion { $officeVersionX32 = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration' -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) | Select-Object -ExpandProperty VersionToReport $officeVersionX64 = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Office\ClickToRun\Configuration' -ErrorAction SilentlyContinue -WarningAction SilentlyContinue) if ($officeVersionX32 -ne $null -and $officeVersionX64 -ne $null) { $officeVersion = $officeVersionX64 #Use x64 as default. } elseif($officeVersionX32 -eq $null -or $officeVersionX64 -eq $null) { $officeVersion = $officeVersionX32 + $officeVersionX64 } $officeVersionMain = $officeVersion.Split(".")[0] + '.0' $officeVersionMain } Write-Host "Dropbox for Teams provisioning script initialized." Write-Host "Detecting Office version." $officeVersion = Get-OfficeVersion Write-Host "Office version detected: $officeVersion" $dropboxForTeamsExists = Get-DropboxForTeamsExists -OfficeVersion $officeVersion if($dropboxForTeamsExists -eq 0) { Write-Host "Dropbox for Teams not found, running provisioning script." <# Paremeters used within script - `asp` = Add storage provider command - `d` = Read service identifier field - `o` = This is lower-case letter ‘o’ not zero. Read operation identifier to indicate is silent or not - `1` = Invoke in silent mode (intended to be invoked on user login) - `a` = Lower-case letter ‘a’. Read the invoking application identifier - `script` = The application invoking the protocol handler for debugging and logging use. In this case it is script. #> start "ms-office-storage-host:asp|d|$DropboxForTeamsServiceId|o|1|a|script" Write-Host "Provision script finished." } else { Write-Host "Dropbox for Teams found exiting..." }
PowerShell 스크립트는 Intune을 통해 비슷한 방식으로 적용할 수 있습니다. 자세한 내용은 공식 Microsoft 문서를 읽어보세요. 이 때 명심할 점은 다음과 같습니다.
이러한 각 옵션은 com.microsoft.office 도메인 아래의 OfficePrePopulatedThirdPartyCloudStorageProviders 항목을 구성합니다.
com.microsoft.office
OfficePrePopulatedThirdPartyCloudStorageProviders
아래 스크립트는 사용자 컨텍스트 내에서 실행해야 합니다. 스크립트를 실행할 때 Microsoft 앱이 열려 있는 경우 해당 앱을 다시 시작해야 합니다.
#!/bin/zsh office_settings=$(defaults read com.microsoft.office) if [[ ${office_settings} != *"domain com.microsoft.office does not exists"* ]] ; then echo "Office detected" if [[ ${office_settings} == *"TP_DROPBOX_PLUS"* ]] ; then echo "Dropbox entry is present. No action taken." else echo "Adding Dropbox storage account entry..." defaults write com.microsoft.office OfficePrePopulatedThirdPartyCloudStorageProviders -array '{CSPServiceID=TP_DROPBOX_PLUS; }' echo "Entry added." fi exit 0 else echo "Office not installed." exit 1 fi
#!/bin/zsh defaults write com.microsoft.office OfficePrePopulatedThirdPartyCloudStorageProviders -array '{}'
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList- 1.0.dtd"> <plist version="1.0"> <dict> <key>PayloadContent</key> <array> <dict> <key>OfficePrePopulatedThirdPartyCloudStorageProviders</key> <array> <dict> <key>CSPServiceID</key> <string>TP_DROPBOX_PLUS</string> </dict> </array> <key>PayloadDisplayName</key> <string>Microsoft Office</string> <key>PayloadIdentifier</key> <string>com.microsoft.office.#UUID1#</string> <key>PayloadType</key> <string>com.microsoft.office</string> <key>PayloadUUID</key> <string>#UUID1#</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Add Dropbox Storage Account to O365</string> <key>PayloadIdentifier</key> <string>com.dropbox.o365connectedservices</string> <key>PayloadOrganization</key> <string>Dropbox, Inc.</string> <key>PayloadRemovalDisallowed</key> <false/> <key>PayloadScope</key> <string>System</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>#UUID2#</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist>
mcxToProfile은 OS X Server 10.7 및 10.8에서 프로필 담당자 장치 관리 서비스가 없어도 ‘사용자 지정 설정’ 구성 프로필을 쉽고 간편하게 생성할 수 있는 명령줄 유틸리티입니다. 디스크의 속성 목록 파일에서 입력을 가져오거나 디렉터리 서비스 노드(로컬 MCX 또는 Open Directory)에서 직접 가져올 수 있습니다. 이 방법을 사용하려면 다음과 같이 하세요.
.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" http://www.apple.com/DTDs/PropertyList-1.0.dtd> <plist version="1.0"> <dict> <key>OfficePrePopulatedThirdPartyCloudStorageProviders</key> <array> <dict> <key>CSPServiceID</key> <string>TP_DROPBOX_PLUS</string> </dict> </array> </dict> </plist>
.mobileconfig
Windows 장치를 사용하는 팀원에게 링크를 보내면 Dropbox를 팀원의 저장소로 자동 프로비저닝할 수 있습니다. 이용 방법:
URL을 클릭하면 Office 365 데스크톱 앱 내의 위치로 이동하여 Dropbox를 저장소로 추가할 수 있습니다. 이동 후 팀원이 다음 지침을 따라야 합니다.
이제 Dropbox가 팀의 사용자를 위한 저장소로 프로비저닝됩니다.
위의 단계를 구현한 후에는 팀의 각 사용자가 수동으로 Dropbox를 Office 365 데스크톱 앱의 공간으로 인증해야 합니다. 방법은 다음과 같습니다.
Dropbox가 공간으로 표시되려면 사용자가 Microsoft 365 앱을 다시 시작해야 할 수도 있습니다.
연결된 앱이 기본적으로 모두 비활성화되어 있는 경우 팀의 앱 설정 정책을 사용하여 팀원의 Dropbox 앱을 추가해야 합니다. 방법은 다음과 같습니다.
Microsoft Teams에서 Dropbox 앱을 고정하려면 다음과 같이 하세요.
모든 Microsoft Teams 채널에 Dropbox 앱을 추가하려면 다음과 같이 하세요.
네, 감사합니다!
아니요
Let us know how why it didn't help:
Thanks for letting us know!
의견을 보내 주셔서 감사합니다!
Paper 2020을 사용하면 Dropbox에 다른 파일 및 폴더와 함께 모든 Paper 문서를 저장할 수 있습니다. Paper 2020 기능에 대해 자세히 알아보려면 계속 읽어 보세요.
Dropbox Paper 문서에서 코드 블록을 만드는 방법을 알아보세요.
텍스트 블록의 서식 지정, 키보드 단축키 및 Dropbox Paper 모바일 앱에서의 서식 지정을 비롯하여 Dropbox Paper 문서에서 텍스트의 서식을 지정하는 방법에 대해 알아보세요.
Dropbox Paper 문서에서 표를 만들어 서식을 지정하는 방법에 대해 알아보세요.