-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
I believe there is an error on line 8 of your RemoveApps.ps1 script on the Windows 11 removeapp zip folder. It's checking for the apps$(
Currently its:
# If a capabilities file exist with a matching buildnumber it will remove the capabilities in it.
$FileExists = Test-Path "$($PSScriptRoot)\apps$($Buildnr).txt"
If ($FileExists) {
$Capabilities = Get-Content "$($PSScriptRoot)\Capabilities$($Buildnr).txt"
should be
# If a capabilities file exist with a matching buildnumber it will remove the capabilities in it.
$FileExists = Test-Path "$($PSScriptRoot)\Capabilities$($Buildnr).txt"
If ($FileExists) {
$Capabilities = Get-Content "$($PSScriptRoot)\Capabilities$($Buildnr).txt"
holleyatWVM
Metadata
Metadata
Assignees
Labels
No labels