Skip to content

Download and Initialize Project

Michael Megel edited this page Feb 14, 2020 · 1 revision

Download and Initialize Project with PowerShell

Run the following script in your project folder (e.g. c:\MyProject\):

# Download the Project Template
$source   = "https://github.com/megel/MSDyn365BC-15-Template/archive/master.zip"
$template = "$($env:TEMP)/template"
Invoke-WebRequest "$source" -OutFile "$template.zip"
Expand-Archive "$template.zip" -DestinationPath "$template" -Force
(Get-Item "$template/*") | ? { Copy-Item -Path "$($_.fullname)/*" -Recurse -Destination . }

# Initialize the Project
.tools/Invoke-InitProject.ps1
Clone this wiki locally