Skip to content

Commit

Permalink
Microwin Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTitusTech committed Nov 16, 2023
1 parent 7e1b019 commit a0c5118
Show file tree
Hide file tree
Showing 4 changed files with 432 additions and 407 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ Microsoft.PowerShell.ConsoleHost.dll
### MacOS ###

# General
.DS_Store
.DS_Store
microwin.log
4 changes: 2 additions & 2 deletions functions/private/MicroWin-Helper.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ function Remove-Features([switch] $dumpFeatures = $false, [switch] $keepDefender

foreach($feature in $appxlist)
{
$status = "Removing featue $feature"
$status = "Removing feature $feature"
Write-Progress -Activity "Removing features" -Status $status -PercentComplete ($counter++/$appxlist.Count*100)
Write-Debug "Removing featue $feature"
Write-Debug "Removing feature $feature"
dism /image:$scratchDir /Disable-Feature /FeatureName:$feature /Remove /NoRestart > $null
}
Write-Progress -Activity "Removing features" -Status "Ready" -Completed
Expand Down
Loading

0 comments on commit a0c5118

Please sign in to comment.