├── .codecov.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.md │ └── Resource_proposal.md ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .vscode ├── analyzersettings.psd1 └── settings.json ├── DSCResources └── MSFT_xRobocopy │ ├── MSFT_xRobocopy.psm1 │ └── MSFT_xRobocopy.schema.mof ├── Examples ├── xRobocopy.NetworkAndCredentials.ps1 └── xRobocopy.SimpleCopyOptions.ps1 ├── LICENSE ├── README.md ├── Resources └── xDscResourceDesigner_CreateScript.ps1 ├── Tests └── Unit │ └── MSFT_xRobocopy.Tests.ps1 ├── appveyor.yml └── xRobocopy.psd1 /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | DSCResource.Tests 2 | -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DSCResources/MSFT_xRobocopy/MSFT_xRobocopy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/DSCResources/MSFT_xRobocopy/MSFT_xRobocopy.psm1 -------------------------------------------------------------------------------- /DSCResources/MSFT_xRobocopy/MSFT_xRobocopy.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/DSCResources/MSFT_xRobocopy/MSFT_xRobocopy.schema.mof -------------------------------------------------------------------------------- /Examples/xRobocopy.NetworkAndCredentials.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/Examples/xRobocopy.NetworkAndCredentials.ps1 -------------------------------------------------------------------------------- /Examples/xRobocopy.SimpleCopyOptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/Examples/xRobocopy.SimpleCopyOptions.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/README.md -------------------------------------------------------------------------------- /Resources/xDscResourceDesigner_CreateScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/Resources/xDscResourceDesigner_CreateScript.ps1 -------------------------------------------------------------------------------- /Tests/Unit/MSFT_xRobocopy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/Tests/Unit/MSFT_xRobocopy.Tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/appveyor.yml -------------------------------------------------------------------------------- /xRobocopy.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/xRobocopy/HEAD/xRobocopy.psd1 --------------------------------------------------------------------------------