| 
									
										
										
										
											2019-08-06 15:28:45 +08:00
										 |  |  | # Download the CoApp tools. | 
					
						
							| 
									
										
										
										
											2019-08-09 22:19:12 +08:00
										 |  |  | $msiPath = "$($env:USERPROFILE)\CoApp.Tools.Powershell.msi" | 
					
						
							|  |  |  | (New-Object Net.WebClient).DownloadFile('http://coapp.org/files/CoApp.Tools.Powershell.msi', $msiPath) | 
					
						
							| 
									
										
										
										
											2019-08-06 15:28:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Install the CoApp tools from the downloaded .msi. | 
					
						
							|  |  |  | Start-Process -FilePath msiexec -ArgumentList /i, $msiPath, /quiet -Wait | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Make the tools available for later PS scripts to use. | 
					
						
							|  |  |  | $env:PSModulePath = $env:PSModulePath + ';C:\Program Files (x86)\Outercurve Foundation\Modules' | 
					
						
							|  |  |  | Import-Module CoApp |