ds19
ds19

Reputation: 3165

DSC File Resource - copy file

I'm using a PowerShell DSC Pull Server. It's possible to use the File resource to copy a file every time is modified? I've tried the below:

        File Test{
        DestinationPath = "c:\yyy\test.txt"
        SourcePath = "\\share\test.txt"
        Ensure = "Present"
        Type = "File"
        Credential = $Credential
        Checksum = "modifiedDate"
        Force = $true}

but no luck: if I modify the file from SourcePath I'd expect that the destination file should be updated too.

Upvotes: 3

Views: 9916

Answers (1)

TravisEz13
TravisEz13

Reputation: 2403

Add MatchSource, See documentation here.

    File Test{
        DestinationPath = "c:\yyy\test.txt"
        SourcePath = "\\share\test.txt"
        Ensure = "Present"
        Type = "File"
        Credential = $Credential
        Checksum = "modifiedDate"
        Force = $true
        MatchSource = $true
    }

Upvotes: 4

Related Questions