Skip to content

Commit

Permalink
Merge pull request Azure#8840 from YuanhengYang/yuanhyan_ChangeDownlo…
Browse files Browse the repository at this point in the history
…adTP

Change download method
  • Loading branch information
bmoore-msft authored Mar 12, 2021
2 parents 49b6cfa + e647f42 commit b253c11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified sccm-technicalpreview/DSC/DCConfiguration.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,8 @@ class DownloadSCCM

Write-Verbose "Downloading SCCM installation source..."
$cmurl = "https://go.microsoft.com/fwlink/?linkid=2077212&clcid=0x409"
Invoke-WebRequest -Uri $cmurl -OutFile $cmpath
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile($cmurl,$cmpath)
if(!(Test-Path $cmsourcepath))
{
Start-Process -Filepath ($cmpath) -ArgumentList ('/Auto "' + $cmsourcepath + '"') -wait
Expand Down
2 changes: 1 addition & 1 deletion sccm-technicalpreview/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"description": "This template creates 3 or 4 new Azure VMs. It configures a new AD domain controler , a new standalone primary site with SQL Server, a remote site system server with Management Point and Distribution Point and a client(options). ",
"summary": "This template installs Microsoft Endpoint Configuration Manager Technical Preview in Azure",
"githubUsername": "YuanhengYang",
"dateUpdated": "2020-12-04"
"dateUpdated": "2021-03-05"
}

0 comments on commit b253c11

Please sign in to comment.