From 963e6dc4d058aaccd386a65020cdef0676a5972a Mon Sep 17 00:00:00 2001 From: Eric Hartford Date: Fri, 21 Aug 2015 00:56:50 -0700 Subject: [PATCH] add windows install script add windows install script --- install.ps1 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 install.ps1 diff --git a/install.ps1 b/install.ps1 new file mode 100644 index 0000000..2f388c4 --- /dev/null +++ b/install.ps1 @@ -0,0 +1,3 @@ +$sa = new-object -comobject shell.application +$fonts = $sa.NameSpace(0x14) +gci $PSScriptRoot -i *.ttf, *.otf -Recurse | %{$fonts.CopyHere($_.FullName)}