salt/pkg/windows/clean_env.bat
twangboy a5d9f85db6 Modifications to build scripts
Py3 installs to c:\python35
Quote the path to the python install directory
Fix spellings in comments
Move pywin32 dlls to site-packages/win32 instead of python root
Remove pywin32 postinstall and testing scripts
Add passive switch to py3 uninstall
2017-08-31 11:41:13 -06:00

82 lines
2.6 KiB
Batchfile

echo off
echo =====================================================================
echo Salt Windows Clean Script
echo =====================================================================
echo.
rem Make sure the script is run as Admin
echo Administrative permissions required. Detecting permissions...
echo ---------------------------------------------------------------------
net session >nul 2>&1
if %errorLevel%==0 (
echo Success: Administrative permissions confirmed.
) else (
echo Failure: This script must be run as Administrator
goto eof
)
echo.
if exist "\Python27" goto RemovePython2
if exist "\Python35" goto RemovePython3
goto eof
:RemovePython2
rem Uninstall Python 2.7
echo %0 :: Uninstalling Python 2 ...
echo ---------------------------------------------------------------------
echo %0 :: - 2.7.12 (32 bit)
MsiExec.exe /X {9DA28CE5-0AA5-429E-86D8-686ED898C665} /QN
echo %0 :: - 2.7.12 (64 bit)
MsiExec.exe /X {9DA28CE5-0AA5-429E-86D8-686ED898C666} /QN
echo %0 :: - 2.7.13 (32 bit)
MsiExec.exe /X {4A656C6C-D24A-473F-9747-3A8D00907A03} /QN
echo %0 :: - 2.7.13 (64 bit)
MsiExec.exe /X {4A656C6C-D24A-473F-9747-3A8D00907A04} /QN
echo.
rem Wipe the Python directory
echo %0 :: Removing the C:\Python27 Directory ...
echo ---------------------------------------------------------------------
rd /s /q C:\Python27
if %errorLevel%==0 (
echo Successful
) else (
echo Failed, please remove manually
)
goto eof
:RemovePython3
echo %0 :: Uninstalling Python 3 ...
echo ---------------------------------------------------------------------
:: 64 bit
if exist "%LOCALAPPDATA%\Package Cache\{b94f45d6-8461-440c-aa4d-bf197b2c2499}" (
echo %0 :: - 3.5.3 64bit
"%LOCALAPPDATA%\Package Cache\{b94f45d6-8461-440c-aa4d-bf197b2c2499}\python-3.5.3-amd64.exe" /uninstall /passive
)
:: 32 bit
if exist "%LOCALAPPDATA%\Package Cache\{a10037e1-4247-47c9-935b-c5ca049d0299}" (
echo %0 :: - 3.5.3 32bit
"%LOCALAPPDATA%\Package Cache\{a10037e1-4247-47c9-935b-c5ca049d0299}\python-3.5.3" /uninstall /passive
)
rem wipe the Python directory
echo %0 :: Removing the C:\Program Files\Python35 Directory ...
echo ---------------------------------------------------------------------
rd /s /q "C:\Program Files\Python35"
if %errorLevel%==0 (
echo Successful
) else (
echo Failed, please remove manually
)
goto eof
:eof
echo.
echo =====================================================================
echo End of %0
echo =====================================================================