aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1')
-rw-r--r--coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps122
1 files changed, 0 insertions, 22 deletions
diff --git a/coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1 b/coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1
deleted file mode 100644
index e7f4c248..00000000
--- a/coin/provisioning/qtci-windows-10-x86_64/01-enable-dotnet-framework.ps1
+++ /dev/null
@@ -1,22 +0,0 @@
-# The DirectX SDK installer requires .Net framework 3.5 which isn't installed
-# by default
-
-$netFeature = "NetFx3"
-try {
- $netFeatureState = (Get-WindowsOptionalFeature -Online -FeatureName "$netFeature").State
- if ($netFeatureState -eq "Enabled") {
- Write-Host ".Net Framework is already installed"
- exit 0
- }
-} catch {
- Write-Host "Could not find .Net Framework Windows feature."
- exit 1
-}
-
-Write-Host "Installing .Net Framework client"
-try {
- Enable-WindowsOptionalFeature -Online -FeatureName "$netFeature" -All -NoRestart
-} catch {
- Write-Host "Could not install .Net framework"
- exit 1
-}