2016-05-20 10 views
0

https://github.com/Azure-Samples/service-fabric-dotnet-web-reference-appのコードを使用して現在のプロジェクトのバックアップを作成していますが、電源シェルスクリプトを使用して復元をトリガするデータ損失方法を呼び出すことができません。Azureサービスファブリックバックアップを復元する

誰でもこれを経験したことがありますか、バックアップを作成して復元する方法はありますか?

答えて

0

実行している問題は何ですか?

具体的なドキュメントCmdLet is here

Azure Powershell Cmdletsが必要です。

Azure Cmdletsのインストール方法に関する説明

また、Azureにログインして、正しいテナントを指すようにする必要があります。これを支援するコードは以下のとおりです。あなたが受け取っているエラーの詳細を、より具体的な回答を与えるのに役立ちます。

# To login to Azure Resource Manager 
Login-AzureRmAccount 

# You can also use a specific Tenant if you would like a faster login experience 
# Login-AzureRmAccount -TenantId xxxx 

# To view all subscriptions for your account 
Get-AzureRmSubscription 

# To select a default subscription for your current session 
Get-AzureRmSubscription –SubscriptionName “Free Trial” | Select-AzureRmSubscription 

# View your current Azure PowerShell session context 
# This session state is only applicable to the current session and will not affect other sessions 
Get-AzureRmContext 
関連する問題