Thanks to Red400r for the contribution about Filemaker and default printers (see below). Here's an addition to that. If you don't want to rummage through the registry for every user who complains about this, here's a vbscript to delete the registry key (beware the text wrapping):
Const HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set objRegistry=GetObject("winmgmts:\\" & _
strComputer & "\root\default:StdRegProv")
strKeyPath = "Software\FileMaker\FileMaker Pro\9.0\Preferences"
strValueName = "Printer"
objRegistry.DeleteValue HKEY_CURRENT_USER, strKeyPath, strValueName
That works for Filemaker Pro v9, just customise strKeyPath = "Software\FileMaker\FileMaker Pro\9.0\Preferences" for your version!
L8r.
I.T. in an education environment is not like normal I.T. Systems Administrators and Support Techs in education have to deal with an environment very different to those who work in industry and government. That sometimes means using unconventional methods. Here's a place to document all of the unconventional methods, and some of the conventional ones too!
Showing posts with label filemaker. Show all posts
Showing posts with label filemaker. Show all posts
Wednesday, February 27, 2008
Filemaker + windows + printer (blog a good Idea)
This is a good Idea, Blogging any odd issue's and unconventional fix's... Here is one I came up with just the other day...
Problem: My Default printer is set in "FileMaker Pro" at first use; I need to change that printer without a re-install of FileMaker as I have many clients to do this on. I looked the web up and down and still got nowhere.. The answer may be out there but I couldn't find it. So I'm going to post my fix here...
The answer:
HKEY_CURRENT_USER + Software\FileMaker\FileMaker Pro\your version number of FM\Preferences
Make sure FileMaker is closed!
In the registry at the above location you will find a value called "Printer" delete it. Open the Printers and Faxes control panel and set your Default printer to the printer you wish FileMaker to use as default. Run FileMaker and test printing, the new printer should appear.
Deleting this reg key can be scripted easy enough too, So if you have many PC's to do .. you may want to make a little vbs script.
Cheers!
JD.
Problem: My Default printer is set in "FileMaker Pro" at first use; I need to change that printer without a re-install of FileMaker as I have many clients to do this on. I looked the web up and down and still got nowhere.. The answer may be out there but I couldn't find it. So I'm going to post my fix here...
The answer:
HKEY_CURRENT_USER + Software\FileMaker\FileMaker Pro\your version number of FM\Preferences
Make sure FileMaker is closed!
In the registry at the above location you will find a value called "Printer" delete it. Open the Printers and Faxes control panel and set your Default printer to the printer you wish FileMaker to use as default. Run FileMaker and test printing, the new printer should appear.
Deleting this reg key can be scripted easy enough too, So if you have many PC's to do .. you may want to make a little vbs script.
Cheers!
JD.
Subscribe to:
Posts (Atom)