Azure DSC - копирование файлов из учетной записи хранения с помощью SAS - ошибка "Относительный путь не поддерживается"

Когда я пытаюсь скопировать сайт (даже один файл) на ВМ с помощью DSC, со следующей конфигурацией:

    File WebSiteContent {
        Ensure = "Present"              
        SourcePath = "https://MYBLOB.blob.core.windows.net/prod/index.html?sv=2016-05-31&ss=b&srt=s&sp=rl&se=2017-11-29T21:47:36Z&st=2017-07-26T13:47:36Z&spr=https&sig=SIG_HERE"
        DestinationPath = "C:\inetpub\backend\app_data" 
        Type = "Directory"
    }

Я получаю ошибку:

[ERROR] Relative path is not supported. The related file/directory is: https://MYBLOB.blob.core.windows.net/prod/index.html?sv=2016-05-31&ss=b&srt=s&sp=rl&se=2017-11-29T21:47:36Z&st=2017-07-26T13:47:36Z&spr=https&sig=SIG_HERE. \r\n

Не уверен, в чем причина, так как это абсолютный путь к файлу. Любые предложения, чтобы это работало, приветствуются:)

1 ответ

Решение

Вам нужно использовать xRemoteFile из модуля xPSDesiredConfiguration

    File SetupDir {
        Type            = 'Directory'
        DestinationPath = 'c:\Setup'
        Ensure          = "Present"    
    }

    xRemoteFile SQLServerMangementPackage {  
        Uri             = "http://go.microsoft.com/fwlink/?LinkID=824938"
        DestinationPath = "c:\Setup\SSMS-Setup-ENU.exe"
        DependsOn       = "[File]SetupDir"
        MatchSource     = $false
    }
Другие вопросы по тегам