This repository was archived by the owner on May 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ DisableMediaSharing # EnableMediaSharing
207
207
# UninstallHelloFace # InstallHelloFace
208
208
# UninstallMathRecognizer # InstallMathRecognizer
209
209
# UninstallPowerShellV2 # InstallPowerShellV2
210
+ # UninstallPowerShellISE # InstallPowerShellISE
210
211
# InstallLinuxSubsystem # UninstallLinuxSubsystem
211
212
# InstallHyperV # UninstallHyperV
212
213
# UninstallSSHClient # InstallSSHClient
Original file line number Diff line number Diff line change @@ -3385,6 +3385,19 @@ Function InstallPowerShellV2 {
3385
3385
}
3386
3386
}
3387
3387
3388
+ # Uninstall PowerShell Integrated Scripting Environment - Applicable since 2004
3389
+ # Note: Also removes built-in graphical methods like Out-GridView
3390
+ Function UninstallPowerShellISE {
3391
+ Write-Output " Uninstalling PowerShell Integrated Scripting Environment..."
3392
+ Get-WindowsCapability - Online | Where-Object { $_.Name -like " Microsoft.Windows.PowerShell.ISE*" } | Remove-WindowsCapability - Online | Out-Null
3393
+ }
3394
+
3395
+ # Install PowerShell Integrated Scripting Environment - Applicable since 2004
3396
+ Function InstallPowerShellISE {
3397
+ Write-Output " Installing PowerShell Integrated Scripting Environment..."
3398
+ Get-WindowsCapability - Online | Where-Object { $_.Name -like " Microsoft.Windows.PowerShell.ISE*" } | Add-WindowsCapability - Online | Out-Null
3399
+ }
3400
+
3388
3401
# Install Linux Subsystem - Applicable since Win10 1607 and Server 1709
3389
3402
# Note: 1607 requires also EnableDevelopmentMode for WSL to work
3390
3403
# For automated Linux distribution installation, see https://docs.microsoft.com/en-us/windows/wsl/install-on-server
You can’t perform that action at this time.
0 commit comments