Skip to content

Instantly share code, notes, and snippets.

@AggamR
Created July 15, 2021 15:38
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AggamR/314eaa3ef6d5488ed7ebd9eb39404390 to your computer and use it in GitHub Desktop.
Save AggamR/314eaa3ef6d5488ed7ebd9eb39404390 to your computer and use it in GitHub Desktop.
get ms fonts from a windows 10 iso
#!/bin/bash
echo -e "Hello! this is a shell script to help you get microsoft fonts straight from a Windows 10 ISO. \nThis can be used for any language."
[ "$EUID" -ne 0 ] && echo "Please run this script as root."
[ ! -x "$(command -v 7z)" ] && echo "You need 7z installed in order for the scipt to run"
echo enter iso file path:
read ISOPATH
7z e ${ISOPATH} sources/install.wim
7z e install.wim 1/Windows/{Fonts/"*".{ttf,ttc},System32/Licenses/neutral/"*"/"*"/license.rtf} -ofonts/
cp fonts/* /usr/share/fonts/TTF
rm -rf fonts/ install.wim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment