update install script
This commit is contained in:
parent
6d6367cba2
commit
0fa87f9497
21
install.ps1
21
install.ps1
@ -7,6 +7,25 @@
|
|||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
# Disable UAC
|
||||||
|
Try {
|
||||||
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /t REG_DWORD /f /v "EnableLUA" /d "0"
|
||||||
|
Write-Host "UAC is now disabled."
|
||||||
|
}
|
||||||
|
Catch {
|
||||||
|
Write-Host "Error - Exception caught in disabling UAC : $error[0]"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Enable Developer Mode
|
||||||
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1" /t REG_DWORD /f /v "AllowAllTrustedApps" /d "1"
|
||||||
|
|
||||||
|
# Set environmenmt variables
|
||||||
|
## CMDER_ROOT
|
||||||
|
[System.Environment]::SetEnvironmentVariable('CMDER_ROOT',"$($env:USERPROFILE)\Cmder", [System.EnvironmentVariableTarget]::Machine)
|
||||||
|
|
||||||
|
# DEV_ROOT --Use this per-machine, i.e. laptops sometimes only have a single disk and desktops have multiple disks
|
||||||
|
$dev_path = Read-Host -Prompt 'Input the Repos Path:'
|
||||||
|
[System.Environment]::SetEnvironmentVariable('DEV_PATH', $dev_path, [System.EnvironmentVariableTarget]::Machine)
|
||||||
|
|
||||||
# User Profile
|
# User Profile
|
||||||
Write-Host "User Profile Directory: $($env:USERPROFILE)"
|
Write-Host "User Profile Directory: $($env:USERPROFILE)"
|
||||||
@ -103,5 +122,5 @@ if (-not (Test-Path -Path $neovim_init_path)) {
|
|||||||
Write-Host "Neovim Init Path Exists"
|
Write-Host "Neovim Init Path Exists"
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host -NoNewline "Press any key to continue.."
|
Write-Host -NoNewline "Be sure to Reboot the Machine. Press any key to continue.."
|
||||||
$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
|
$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
|
Loading…
Reference in New Issue
Block a user