Extension to downgrade Windows DSVM from R Server to Rclient

This commit is contained in:
Gopi Kumar 2017-06-05 15:59:13 -07:00 коммит произвёл GitHub
Родитель 27d0bf1e64
Коммит dcc5ab1173
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -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