@@ -5235,7 +5235,7 @@ function WindowsFeatures
52355235 [void ]$Window.Close ()
52365236
52375237 $SelectedFeatures | ForEach-Object - Process {Write-Verbose - Message $_.DisplayName - Verbose}
5238- $SelectedFeatures | Disable-WindowsOptionalFeature - Online - NoRestart
5238+ $SelectedFeatures | Disable-WindowsOptionalFeature - Online - NoRestart - Verbose
52395239 }
52405240
52415241 function EnableButton
@@ -5247,7 +5247,7 @@ function WindowsFeatures
52475247 [void ]$Window.Close ()
52485248
52495249 $SelectedFeatures | ForEach-Object - Process {Write-Verbose - Message $_.DisplayName - Verbose}
5250- $SelectedFeatures | Enable-WindowsOptionalFeature - Online - All - NoRestart
5250+ $SelectedFeatures | Enable-WindowsOptionalFeature - Online - All - NoRestart - Verbose
52515251 }
52525252
52535253 function Add-FeatureControl
@@ -11120,7 +11120,7 @@ function WindowsSandbox
1112011120 # Checking whether x86 virtualization is enabled in the firmware
1112111121 if ((Get-CimInstance - ClassName CIM_Processor).VirtualizationFirmwareEnabled)
1112211122 {
11123- Disable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - Online - NoRestart
11123+ Disable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - Online - NoRestart - Verbose
1112411124 }
1112511125 else
1112611126 {
@@ -11129,7 +11129,7 @@ function WindowsSandbox
1112911129 # Determining whether Hyper-V is enabled
1113011130 if ((Get-CimInstance - ClassName CIM_ComputerSystem).HypervisorPresent)
1113111131 {
11132- Disable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - Online - NoRestart
11132+ Disable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - Online - NoRestart - Verbose
1113311133 }
1113411134 }
1113511135 catch [System.Exception ]
@@ -11145,7 +11145,7 @@ function WindowsSandbox
1114511145 # Checking whether x86 virtualization is enabled in the firmware
1114611146 if ((Get-CimInstance - ClassName CIM_Processor).VirtualizationFirmwareEnabled)
1114711147 {
11148- Enable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - All - Online - NoRestart
11148+ Enable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - All - Online - NoRestart - Verbose
1114911149 }
1115011150 else
1115111151 {
@@ -11154,7 +11154,7 @@ function WindowsSandbox
1115411154 # Determining whether Hyper-V is enabled
1115511155 if ((Get-CimInstance - ClassName CIM_ComputerSystem).HypervisorPresent)
1115611156 {
11157- Enable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - All - Online - NoRestart
11157+ Enable-WindowsOptionalFeature - FeatureName Containers- DisposableClientVM - All - Online - NoRestart - Verbose
1115811158 }
1115911159 }
1116011160 catch [System.Exception ]
0 commit comments