This commit is contained in:
Jon Ormond 2017-08-07 15:06:01 -07:00
Родитель 13be6703b4
Коммит cd3740a3ce
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -9,7 +9,8 @@ function Remove-AzureCT {
Write-Host "AzureCT tools directory removed" -ForegroundColor Green
} # End If
$Destination = Join-Path -Path ([Environment]::GetFolderPath('MyDocuments')) -ChildPath 'WindowsPowerShell\Modules\AzureCT'
# $Destination = Join-Path -Path ([Environment]::GetFolderPath('MyDocuments')) -ChildPath 'WindowsPowerShell\Modules\AzureCT'
$Destination = 'C:\Program Files\WindowsPowerShell\Modules\AzureCT\'
If (Test-Path $Destination) {
Try {
Remove-Item $Destination -Recurse

Просмотреть файл

@ -20,8 +20,8 @@ function Install-AzureCT {
$FileName += 'Public/Install-LinkPerformance.ps1'
$FileName += 'Public/Get-LinkPerformance.ps1'
$Destination = Join-Path -Path ([Environment]::GetFolderPath('MyDocuments')) -ChildPath 'WindowsPowerShell\Modules\AzureCT\'
#$Destination = Join-Path -Path ([Environment]::GetFolderPath('MyDocuments')) -ChildPath 'WindowsPowerShell\Modules\AzureCT\'
$Destination = 'C:\Program Files\WindowsPowerShell\Modules\AzureCT\'
New-Item -Path ($Destination) -ItemType Directory -Force | Out-Null
New-Item -Path ($Destination + "Public") -ItemType Directory -Force | Out-Null