この記事では、Dropbox Standard、Advanced、Business、Business Plus、Enterprise の特定のタイプの管理者が利用できる機能について説明しています。
共同作業は、ほとんどのチームにおいてデフォルトで有効になっています。ただし、チームによるアプリのリンクをデフォルトでブロックしている場合は、Microsoft Office 365 と Dropbox のリンクを許可することで、共同作業を有効にする必要があります。 手順は以下のとおりです。
Windows は、信頼できないソースからのドキュメントでの共同作業セッションを自動的に読み取り専用権限モードで開始します。Windows パソコン上において、Dropbox はデフォルトで信頼できないソースです。 インターネットからのファイルにウイルスが含まれている可能性があることを警告するバナーが画面上部に表示されます。ドキュメントの編集を開始するには、[編集を有効にする]をクリックします。 この手順をスキップするには、Dropbox を信頼できるソースとして設定します。手順は以下のとおりです。
注:以下の手順は、チームの IT 管理者を対象としています。自動プロビジョニング プロセスを開始する前に、このガイドと Microsoft の「Add-a-Place Provisioning for Desktop(英文)」の両方を読むことを強くお勧めします。
新しいグループ ポリシー オブジェクトを作成して実装するには:
$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..." }
Intune を使用して PowerShell スクリプトを同様の方法で適用することもできます。詳細については、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 の Profile Manager デバイス管理サービスを必要とせずに、「カスタム設定」構成プロファイルを作成できるシンプルなコマンドライン ユーティリティです。 ディスク上のプロパティ リスト ファイル、またはディレクトリ サービス ノード(ローカル MCX または Open ディレクトリ)から直接入力を取得できます。 この方法を使用するには:
.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 がチームのユーザーの場所としてプロビジョニングされます。
上記の手順を実装したら、チームのユーザーはそれぞれ、Office 365 デスクトップ アプリでの保存先として Dropbox を手動で認証する必要があります。手順は以下のとおりです。
Dropbox が保存先として表示される前に、ユーザーは Microsoft 365 アプリを再起動しなければならない場合があります。
デフォルトでリンク済みアプリすべてをオフにしている場合は、Teams のアプリ設定ポリシーを使用して Dropbox アプリをチーム メンバー用に追加する必要があります。手順は以下のとおりです。
Microsoft Teams で Dropbox アプリをピン留めするには:
Dropbox を Microsoft Teams の全チャネルに追加するには:
はい
いいえ
Let us know how why it didn't help:
Thanks for letting us know!
フィードバックありがとうございます。
Paper 2020 では、他のファイルやフォルダと一緒に Paper ドキュメントをすべて Dropbox で保管できるようになります。Paper 2020 の機能詳細をご覧ください。
Dropbox Paper ドキュメントでコード ブロックを作成する方法をご覧ください。
Dropbox Paper ドキュメントで表を作成して書式設定する方法をご覧ください。
テキスト ブロックの書式設定、キーボード ショートカット、Dropbox Paper モバイル アプリでの書式設定など、Dropbox Paper ドキュメントで書式を設定する方法をご覧ください。