зеркало из https://github.com/Azure/DataScienceVM.git
Extension to downgrade Windows DSVM from R Server to Rclient
This commit is contained in:
Родитель
27d0bf1e64
Коммит
dcc5ab1173
|
@ -0,0 +1,15 @@
|
|||
# Uninstall Microsoft R Server first
|
||||
(Get-WmiObject -Class win32_product -Filter "Name like 'Microsoft R Server%'").Uninstall()
|
||||
|
||||
# Download R Client
|
||||
cmd /c "curl -L http://aka.ms/rclient -o \tmp\RClientSetup.exe"
|
||||
|
||||
# Install R Client
|
||||
cmd /c "c:\tmp\RClientSetup.exe /quiet"
|
||||
|
||||
# Disable SQL Launchpad
|
||||
set-Service -name "MSSQLLaunchpad" -StartupType Disabled
|
||||
Stop-Service -name "MSSQLLaunchpad"
|
||||
|
||||
# Cleanup
|
||||
del C:\tmp\RClientSetup.exe
|
Загрузка…
Ссылка в новой задаче