Install PowerShell modules after removing old copy
This commit is contained in:
parent
ab09bd10eb
commit
cf7c776e55
1 changed files with 4 additions and 4 deletions
|
@ -55,16 +55,16 @@ $null = New-Module {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Invoke-Hook "Install-PSModules" -Fallback {
|
|
||||||
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (Test-Path $env:PWSH_PATH) {
|
if (Test-Path $env:PWSH_PATH) {
|
||||||
attrib "-R" "$env:PWSH_PATH\*" /S /D;
|
attrib "-R" "$env:PWSH_PATH\*" /S /D;
|
||||||
Remove-Item -Recurse -Force $env:PWSH_PATH;
|
Remove-Item -Recurse -Force $env:PWSH_PATH;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Invoke-Hook "Install-PSModules" -Fallback {
|
||||||
|
Install-Module -AcceptLicense -Force PSWindowsUpdate;
|
||||||
|
};
|
||||||
|
|
||||||
if (-not (Test-Command winget)) {
|
if (-not (Test-Command winget)) {
|
||||||
. "$PSScriptRoot/../Software/winget/Manage.ps1";
|
. "$PSScriptRoot/../Software/winget/Manage.ps1";
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue