-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-extension.bat
More file actions
31 lines (27 loc) · 844 Bytes
/
Copy pathinstall-extension.bat
File metadata and controls
31 lines (27 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@echo off
echo ================================
echo ENG Language Support Extension
echo Installation Script
echo ================================
echo.
if not exist "eng-language-support-1.5.4.vsix" (
echo ERROR: eng-language-support-1.5.4.vsix not found!
echo Please make sure the .vsix file is in the same folder as this script.
pause
exit /b 1
)
echo Installing ENG Language Support extension...
code --install-extension eng-language-support-1.5.4.vsix
if %ERRORLEVEL% == 0 (
echo.
echo ✅ SUCCESS: Extension installed successfully!
echo.
echo Please reload VS Code to activate the extension.
echo Then open any .eng file to see syntax highlighting.
) else (
echo.
echo ❌ ERROR: Installation failed.
echo Make sure VS Code is installed and accessible from command line.
)
echo.
pause