Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uninstall.cmd « windows - github.com/13rac1/emojione-color-font.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a95d4b25c55dff0329395400e1e338a2acb6c185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@ECHO OFF
SETLOCAL

SET MS_EMOJI_FONT_PATH="%SystemRoot%\Fonts\seguiemj.ttf"
SET MS_FONT_PATH="%SystemRoot%\Fonts\seguisym.ttf"

IF EXIST %MS_EMOJI_FONT_PATH% (
    ECHO Pressing [INSTALL] button in the Font Viewer will reinstall
    ECHO the original Segoe UI Emoji font.
    fontview %SystemRoot%\Fonts\seguiemj.ttf
)
ECHO.
ECHO Pressing [INSTALL] button in the Font Viewer will reinstall
ECHO the original Segoe UI Symbol font.
fontview %SystemRoot%\Fonts\seguisym.ttf
ECHO.
ECHO All Done!
PAUSE