Advertisement
Guest User

font install command line

a guest
Nov 15th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. ;Copies the contents of the folder "SOURCE" to C:\windows\temp\fonts folder
  2. xcopy "SOURCE" "%windir%\Temp\fonts" /q /y /i
  3.  
  4. ;Copies the script from the ldcore server to the same \temp\fonts\ folder as above
  5. xcopy "\\ldcore\conf\InstallFonts.vbs" "%windir%\Temp\fonts" /q /y /i
  6.  
  7. ;Runs the copied script sliently on the local machine
  8. cscript //B "%windir%\Temp\fonts\InstallFonts.vbs"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement