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

github.com/13rac1/emojione-color-font.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windows/uninstall.cmd')
-rw-r--r--windows/uninstall.cmd18
1 files changed, 18 insertions, 0 deletions
diff --git a/windows/uninstall.cmd b/windows/uninstall.cmd
new file mode 100644
index 0000000..a95d4b2
--- /dev/null
+++ b/windows/uninstall.cmd
@@ -0,0 +1,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