How install a font when my computer gives me NO opportunity to do? (I tried it all)

My computer won't let me install fonts.

I know I'm very late to this conversation, but it seems that each forum help tech I go about it is 5 or 6 years. So hoping to get a response. I'm a graphic designer and desperately need to use other fonts than I have on my computer.

I tried all the methods suggested by the forums and help Windows on the Internet:

-J' tried to double click on the TrueType font file. Nothing happens.
-J' tried right clicking on the TrueType font file for hitting "install". There's no option 'Install' in the menu dropdown.
-J' tried to drag / drop the TrueType font file in Control Panel > fonts. It does not appear.
-J' tried to copy and paste the TrueType font file in Control Panel > fonts. It won't let me paste.
-J' tried to go in Control Panel > fonts and clicking file > install font. There is no "Install font" option under file.
-J' tried to move the TrueType font file to my desktop to install it from there. It cannot move on my desk.
-My user account is an administrator account. There is absolutely no reason that my computer should restrict to install anything.

Thank you, and I beg you to answer.

Hello

Welcome to the Microsoft community. I appreciate your efforts to resolve the issue. I will certainly help you with the problem you are experiencing.

See the following thread that is on a similar question.

http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-desktop/how-do-i-add-a-font-in-Windows-7-there-is-no-add/edaf7ebc-4762-499E-891c-1d8720a9abd0

If you are unable to find solutions, you follow the Microsoft articles below:

Install or remove fonts

How to install or remove a font in Windows

Hope this information was useful. Let us know the results once you have tried these methods. We will be happy to help you further.

Thank you

Tags: Windows

Similar Questions

  • How to disable series when your computer does not work?

    How to disable series when your computer does not work?

    and also how to use for computer B that you recently purchased?

    Thank you

    Shine,

    You can install and activate the perpetual software (purchased) two computers of the same type (mac or pc), as long as you use it on one at a time. (lightroom is the exception because it is a product of multi platform, so it can be installed on the pc and mac platforms)

    It is advisable to disable the software on a computer on which it will be is most used, especially before giving away or selling the computer or reformat the hard disk. Please see this link: How to disable the software.  This frees an activation if you have the option to install the software on another computer at any time.

    If you do not have access to your old computer because you have replaced a hard drive, upgraded your operating system to format your computer before you deactivate your software or your computer is dead, you can ask Adobe Support to help you disable from a machine, you cannot access. Have your serial number or Adobe ID ready, then contact us.

    To load the software on another computer, download and install it as you did on the first computer. Then enter your serial number to activate it.

    Guinot

  • How do I know when my computer sercurity as compromised and what attempt has been made to the hac, a system?

    How do I know when my computer sercurity as compromised and what attempt has been made to the hac, a system?

    Hello.

    You know when you have been infected by malware:

    1. your security programs will not open either, will not scan or will not update.

    2. When you are in your Web browser, you are redirected either or you receive a lot of pop ups.

    3. your computer may slow down or freeze.

    4. you can not access the Internet.

    5 and follow the advice of Richard G. Harper:

    http://www.bing.com/
    http://www.Google.com/

    Or see your lesson, manual materials or other resources in the classroom.

    Examples of Google:

    http://answers.Yahoo.com/question/index?QID=20080405053727AAdKagd

    http://www.computerhope.com/issues/ch001296.htm

    http://www.ehow.com/how_4851647_computer-hacked.html

    http://www.WikiHow.com/know-if-your-computer-has-been-tracked

    See you soon.

  • How to incorporate fonts when running (AS2 in CS3)?

    Hey everybody,

    I have a shared file fonts.swf containing a variety of fonts that use my main swf. I have a movieclip in the fonts.swf file that is exported for sharing life. In my main swf file, I have the fonts.swf imported for execution via a movieclip. This works very well and allows me to use the fonts in the fonts.swf file in my main swf.

    I'm trying to find how to import fonts.swf for execution via as2 (instead of manually within the library), in circumstances different, different fonts are necessary and it massively increases the size of the file to import all the fonts in each time when only a few are needed. I read on the internet about this and can not for the life of me find how do it, I'd be grateful if someone could point me in the right direction?

    Thank you very much for any advice you can give, that was confused me for centuries, and I'd really like to know how to do!

    Dave

    It's doable, but it's not easy.  Here is the core of coding, but I don't think it's easy to understand and I wrote a tutorial to learn how to use it:

    kglad code.  no need to edit **************************************************************
    function fontEmbedF (tf:TextField, font: String, callbackF:Function, callbackParams:Array) {}
    fontObj declared in Fla.
    fontObj ["refA"] = [];
       
    {if(!fontObj["Setup"])}
    done once for all fonts
    fontloadSetupF();
    fontObj ["setup"] = true;
    }
    Tf properties record orig
    var o: Object = recordTFPropsF (tf);
    loadFontF(o,tf,font,callbackF,callbackParams);
    }
    function loadFontF (o: Object, tf:TextField, font: String, callbackF:Function, callbackParams:Array) {}
    fontObj ["mclLO"] ["o"] = o;
    fontObj ["mclLO'] ['currentFont'] = fonts;
    fontObj ["mclLO'] ['callbackF'] = callbackF;
    fontObj ["mclLO'] ['callbackParams'] = callbackParams;
    let alone _root.  It must mention the _level containing this code
    findReferencesF (tf, _root);
           
    var targetMC:MovieClip = createFontHolderMC (tf)
    fontObj ["mcl"].loadClip("fonts/"+fontObj[font],targetMC);
    }
    function fontloadSetupF() {}
    fontObj ['mcl'] = new MovieClipLoader();
    fontObj ["mclLO'] = new Object();
    fontObj ["mclLO'] .onLoadInit = {function (target)}
    Pseudo-duplicate tf textfield.  TF is removed in createTF when its depth is taken
    var newTF:TextField = createTF (this ["o"], target);
       
    restoreReferencesF (fontObj ["refA"], newTF)
           
    assignTFPropsF (this ["o"], newTF);
    embedFontF (newTF, target);
    This ["callbackF"]. Apply (null, this ["callbackParams"]);
    }
       
    fontObj ["mclLO'] .onLoadError = {function (target, errorCode, httpStatus)}
    trace ("onLoadError");
    trace (target);
    trace (ErrorCode);
    trace (httpStatus);
    }
       
    fontObj ["mcl"] .addListener (["mclLO"] fontObj);
    }
    function embedFontF (tf:TextField, target: MovieClip) {}
    tf.embedFonts = true;
    var tfor:TextFormat = new TextFormat();
    Tfor.font = target.fontID;
    tf.setTextFormat (tfor);
    tf.setNewTextFormat (tfor);
    }
    function assignTFPropsF (o: Object, tf:TextField) {}
    var tfPropA:Array = ["_alpha", "_highquality", "menu", "_quality", "_rotation", '_soundbuftime', 'tabEnabled', "_vis ible", "_xscale", "_yscale"]
       
    tf.setTextFormat (o.textFormat);
    tf.setNewTextFormat (o.newTextFormat);
       
    for (var s:String in tf) {}
    TF [s] = f [s];
    }
    for (var i: Number = 0; i<>
    TF [tfPropA [i]] = o [tfPropA [i]];
    }
    if(TF.html && TF.htmlText) {}
    tf.htmlText = o ["htmlText"];
    } else {if (tf.text)
    TF. Text = o ["text"];
    } else {}
    TF. Text = "";
    }
    }
    function recordTFPropsF(tf:TextField):Object {}
    var tfPropA:Array = ["_alpha", "_highquality", "menu", "_quality", "_rotation", '_soundbuftime', 'tabEnabled', "_vis ible", "_xscale", "_yscale"]
    var o: Object = new Object();
    for (var s:String in tf) {}
    [s] o = tf [s];
    }
    for (var i: Number = 0; i<>
    o [tfPropA [i]] = tf [tfPropA [i]];
    }
    o ["newTextFormat"] = tf.getNewTextFormat ();
    o ['textFormat'] = tf.getTextFormat ();
    o ["tfX"] = tf._x;
    o ['tfY"] = tf._y;
    o ["TET"] = tf._width;
    o ["tfH"] = tf._height;
    o ["tfName"] = tf._name;
    o ["tfDepth"] = tf.getDepth ();
       
    Return to o;
    }
    function createFontHolderMC(tf:TextField):MovieClip {}
    var d: Number = Math.abs (tf.getDepth ());
    var tfParent:MovieClip = tf._parent;
    {if(!tfParent["MC"+d])}
    remove the tf
    MC = tfParent.createEmptyMovieClip ("MC" + d, TF.getDepth ());
        
    }
    return tfParent ["mc" + d];
    }
    function createTF(o:Object,target:MovieClip):TextField {}
    target.createTextField (o ["tfName"], o ["tfDepth"], o ["tfX"], o ["tfY"], o ["tfW"], o ["tfH"]);
    Reset references.  That is to say, was path.timeline.tf, now path.timeline.mc.tf
    so: path.timeline.mc._parent [tfName] = path.timeline.mc [tfName] or path.timeline [tfName] now points to path.timeline.mc [tfName]
    Target._parent [o ["tfName']] = target [o ["tfName"]];
       
    return the target [o ["tfName"]];
    }
    function restoreReferencesF (refA, newTF) {}
    for (var i = 0; i)<>
    refA [i] [0] [refA [i] [1]] is newTF;.
    }
    }
    function findReferencesF (tf, obj) {}
    for (^ s in obj) {}
    If (obj [s] == tf) {}
    fontObj ["refA"] .push ([obj, s]);
    }
    If (typeof (obj [s]) == "movieclip" & obj [s] ._parent == obj) {}
    findReferencesF (tf, obj [s]);
    }
    Comment of if-block less than the speed of treatment IF references of associative array to textfields are not used.
           
    {if (typeof (obj [s]) == "Object")}
    findReferencesF (tf, obj [s]);
    }
           
    }
    }

  • I've got an important update that I can't install it because the continuous computer give the error 80070666

    I'm the only user on my computer and so I should have all the priveliges needed to install the update, but it still gives the error =)

    1. download the Norton Removal Tool, save it to your desktop: ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    2. close all open applications (that is, anything with an icon on the taskbar).

    3. right click on the file that you saved in #1 above and select run as administrator to run the utility. DO TAP not your keyboard until the race ends, then restart.

    4. If the Office 2003 SP3 still fails to install, see...

    Description of the update for Office 2003 (December 9, 2008)
    [Download/install manually, if necessary & not already installed)
    http://support.Microsoft.com/kb/949074

    You can not install a service pack for Office 2003
    http://support.Microsoft.com/kb/884298

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Explorer 8 wants to udate 2530548 KB; It runs pretending to install each time restarting the computer so far appears once again completed the looks at all that I can find on the web no cure to settle

    It runs pretending to install: each time restarting the computer up to date appears again; I look at all, I can find no cure for installation is complete on the web.

    all others so far seem to fill. KB 2530548 tried to install several times. shows that I need to be updated after every stop.

    Hello

    In addition, check to see if this article helps you.

    Troubleshooting Windows Update or Microsoft Update when you are repeatedly offered an update

  • How install a game when there is no disc drive?

    Original title: no disc tray

    How can I get my game on my laptop without a disc tray

    Hello

    Thanks for posting your query in the Microsoft Community Forums.

    Before troubleshooting, provide us with information.

    1. what operating system is installed?

    2. what game are you talking about?

    You can download the game directly into the laptop if you have an internet connection for the laptop.

    You can copy the files to install game on a usb flash drive and move the files to the laptop.

    Let us know if you need assistance with any windows problem. We will be happy to help you.

  • I have install cc subscription, when the computer 2, told me trial has expired...

    Hi, I have subscription CC in a single computer, use the laptop of the trial, after 30 days, cc told me 'trial expiré' in laptop, I am connected with the same details of subscription...

    Any help? I uninstalled all the software and reinstall it again and without success...

    You have enabled the CC only once, the second activation is always there to serve.

    If you use Photoshop at all, you may need to install the latest update for this problem. See this blog for more information:

    http://blogs.adobe.com/crawlspace/2013/01/Photoshop-13-0-413-1-2-updat 're-now - available.html

    If you do not have Photoshop, try the solution that others have mentioned previously:

    1. Open Adobe Application Manager (AAM).
    2. If it is necessary, let MAO all automatic updates and restart itself.
    3. Sign in using your Adobe ID (optionally, you can close MAO at this point.)
    4. Open an application CS6 (e.g. InDesign CC).
    5. If you are asked (for example, you get the trial screen), click on "license this software" and sign in with your Adobe ID

    https://forums.Adobe.com/thread/1127385

    It will be useful.

    Concerning

    Baudier

  • How to embed fonts when you save a document in word 07 in PDF format?

    I can't save my word doc in PDF format but need to incorporate the police (trebuchet MS).  Is it by clicking on the box that says IS0 190005-1 conform to PDF/A does the trick?

    You must embed a font. If I understand correctly, a PDF file is mainly recorded in the same way as a graphic file... Mike Hall MVP - Windows Experience http://msmvps.com/blogs/mikehall/

  • How lsnr start automatically when the computer starts

    Hello

    My OS is windows7 and Oracle version 11.2.0

    Whenever I start listener manually to start the computer. Is it possible to start car?

    Best regards

    have you checked the State of the listener service in the windows services console? (Start-> Run-> services.msc)

  • How to change font size, that computer sends to the printer?

    Screen shows info of regular print, size but the printed product is super, super small.

    Just print up a few google documents.  Much to my surprise, the first two printed 'exactly' like they should.  On the third try, the impression returned to the small print.  I am completely stupid-based!

  • When the computer starts I sterted, thunderbird (was used for years). All my email accounts and messages disappeared! What should I do?

    I use the latest version of Thunderbird (24.6.0) and installed it on a Windows 7 computer. I just turned on my computer and connected. Then I started to Thunderbird (the computer, a Sony VAIO laptop) had been closed for about 9 hours.

    Thunderbird start he asked me to set up an e-mail account. The four accounts that I already had disappeared. No details of account. Not possible to search for messages. My address book was intact and my passwords are all still stored. That's happened?

    Concerning
    David Mowbray

    See if this article helps you recover your profile.

    http://KB.mozillazine.org/Recovering_a_profile_that_suddenly_disappeared

  • Can I install windows 7 on my computer no matter which package of windows 7 I have all three?

    I am looking to buy windows 7 professional 64-bit load up on two computers and a laptop any game disc of windows 7 professional 64 bit do this or do I have to get a package family or something?

    Thanks for your time.

    Windows 7 Home Premium Family Pack would be the best option, but the machines that you want to install on all must have a qualification license installed (Windows XP or Vista)

    Family Pack: Upgrade of Microsoft Windows 7 Home Premium Family Pack (3 users)

  • OFFSET of mouse as _ any when the computer is something in the background. User/Windows interface, all, staggered as I use windows 3.1.

    Hello

    I'm really bothered by the fact that my trolling as _ mouse in Windows 7 any time of installation is done in the background, is opening a program or anything like that.  It seems to me as being the fact that we are not in 1995 over this issue should not occur.  How the _ did I have 8 GB of ram and a quad core i5-750 processor and my machine mouse is trolling as _ in these situations?

    I use a logitech optical mouse wireless.  I reinstalled the drivers and software for this 3 times.  Also, I moved the USB connector on the front of my Dell machine.  Still no difference.  Help, please!  I love Windows 7 so far, but the functionality of a mouse I do experience is unacceptable!

    Justin Hansen-

    Software engineer

    You might consider replacing the battery in the mouse?  Or, try not to use any driver module and the software - just plug it in and use it.  It work?

    What if you start in safe mode, or with a boot or a boot device - have you noticed the behavior then?

  • How to install the PFB fonts when you use Windows 7 64-bit?

    I got a new computer with Windows 7 64 bit. But when I copied the fonts I used on the old computer, PFB fonts do not work any longer.

    The former ATMF program doesn't work so how can I now install PFB fonts on this computer?

    Anni

    I hope that you did not try to install the old software of Adobe Type Manager . If you did, you may need to completely reload Windows if you cannot restore your system to its state before you try to install this software!

    Assuming that you did not this fatal error, the method to install Type 1 fonts, which each consists of a .pfb and .pfm file is as follows:

    (1) copy the .pfb and .pfm files in a single directory if they are not already available.

    (2) select the .pfm for the fonts you want to install files.

    (3) right click and select install which will then install the fonts on your system by copying the .pfb and .pfm files into C:\Windows\Fonts directory. Do not drag - move these files! If you do not want the font files themselves reside in the C:\Windows\Fonts directory, when you right click on the file, select install as a shortcut. This installs the police but he refers to his current location.

    -Dov

Maybe you are looking for

  • Why Enhanced dictation has stopped working?

    A few days ago when I turned my computer back on, I found that Enhanced dictation no longer worked for all applications in which I usually dictates.  This continues and I can dictate more in my own user account (dictation Enhanced still works for oth

  • HP Deskjet F4280 all-in-One: How can I download HP for Windows 10 Solution Center

    Since the upgrade, I've lost Center Solutions HP (Desktop console) and could not find the equivalent for windows 10

  • Looking for charger UK for Satellite L500-1ZP

    Hello I have a Toshiba Satellite L500-1ZP, I bought to the Netherlands.At the end of March, I move to the United Kingdom. I am looking to buy an adaptor charger/power supply I can use with my laptop in the United Kingdom.Please can anyone help with a

  • Share the music of iMac when he sleeps?

    I just got the home sharing on my iMac so I can access my iTunes library on my iPhone, the iPad and the Macbook Pro. 1. it's I think understand that to make this work, I simply activate the home sharing on other devices which are also saved in the sa

  • Functional Global Variable reference

    Hi all I want to update the value of the indicator element in primary VI, I don't want to use the global variable, due to the problem of race condition. So I create a functional global variable to control reference. It is reliable and can avoid the r