Captaris RightFax 9.4 - How to package
It seems that Captaris has changed the way RightFax 9.4 works. I can not use the directions from 9.3 to package this application. I also am not able to find documentation on their website for this.
I see that the MSI included with the setup.exe uses Microsoft Installer XML. I don't believe the previuos 9.3 uses this. Do I need to edit or create an XML file for this? I am not familar with how to do this. If this is the way to create this silently, are there any tools out there that will automate the creation of the XML file?
I can't figure out if the setup.exe, which appears to be the only way to install RightFax, takes any switches. I know in 9.3 the use of CMDLINE= was required in the setup.ini file. Doesn't seem to be the case in 9.4. Any suggestions? Thanks.
I see that the MSI included with the setup.exe uses Microsoft Installer XML. I don't believe the previuos 9.3 uses this. Do I need to edit or create an XML file for this? I am not familar with how to do this. If this is the way to create this silently, are there any tools out there that will automate the creation of the XML file?
I can't figure out if the setup.exe, which appears to be the only way to install RightFax, takes any switches. I know in 9.3 the use of CMDLINE= was required in the setup.ini file. Doesn't seem to be the case in 9.4. Any suggestions? Thanks.
0 Comments
[ + ] Show comments
Answers (47)
Please log in to answer
Posted by:
michaelnowell
15 years ago
This may be too late for you, but others might find it helpful.
This is from the RightFax documentation......
Installing the Client Applications from a Command Line
The RightFax client applications can be installed from an MS-DOS prompt in a Command Prompt window. You can:
?? Install RightFax client applications for the first time.
?? Modify an existing installation of a client application to add or remove (uninstall) one or more client applications.
?? Remove (uninstall) all of the client applications
Following are examples of common operations that can be performed. Note that these examples wrap to fit on this page. The command line must not include a carriage return.
Installing a RightFax client application for the first time:
- Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,EFM" /rightFaxServer="myserver"
Modifying an existing installation:
- Setup.exe /modify /unattended=true /allowShutdown=true /add="faxctrl"
Removing one RightFax client application from a server:
- Setup.exe /modify /unattended=true /allowshutdown=true /drop="faxctrl"
Uninstalling all RightFax client applications from a server:
- Setup.exe /remove /unattended=true /allowShutdown=true
Before You Begin
Copy the Setup.exe to a network file location from which you will run the command line. You have the following options:
?? Copy the RightFax product suite Setup.exe from the DVD to the network. (Only the client applications can be installed from the command line.)
?? Copy the Setup.exe for client applications from the DVD to the network. The client Setup.exe is located on the RightFax product suite DVD in the \Client folder. The file size is 105 MB.
If you use the Setup.exe for client applications, you can further reduce the file size of the Setup.exe with the following options:
?? If the destination client computer operating systems are all 32-bit, you can reduce the Setup.exe to 60 MB. Delete the file \Client\Prereqs\NetFx64.exe.
?? If .NET 2.0 is already installed on the destination client computers, you can reduce the Setup.exe to 32 MB. Delete the file \Client\Prereqs\dotnetfx2.0.
The command line install is not intended for installing client applications on the RightFax server.
Specifying the Level of User Interaction
Setup.exe runs with a fully interactive wizard, but it also can be run with minimal or no user interaction.
To check for success or failure, see Exit Codes later in this section.
Command /unattended=true
Description Setup.exe displays a progress bar and will not require user input except in the case of an error. In the case of an error, Setup.exe will display a message explaining the error. The user must click OK to continue. /quiet=true Setup.exe runs with no user interaction.
Command /quiet=true
Description Setup.exe runs with no user interaction.
Specifying the Location of the Setup.exe File
You must run the command in the directory where the RightFax Setup.exe is copied, or you must specify the full path to Setup.exe.
Command /manifest="file_path"
Description The location can be any valid path, such as "D:\" or \\server\share.
Specifying the Installation Mode
To modify an existing installation or to uninstall all of the client applications, you must specify the installation mode.
Command /modify
Description Modifies an existing installation to add or remove RightFax client applications. This command must be used with the Add or Drop command. This command cannot be used to remove all features.
Command /remove
Description Removes all RightFax client applications from the system. This command cannot be used to add or remove specific features.
Specifying the RightFax Client Applications to Install
With the Add command, you can specify one or more RightFax client applications to add. This option applies when you are installing features for the first time or when you decide to add RightFax client applications at a later time (modifying an existing installation).
Command /add="name1, name2, …"
Description Feature names must be separated by commas.
Specifying the RightFax Client Applications to Remove
With the Drop command, you can remove one or more client applications at a time
Do not use this option to remove all of the client applications. To remove (uninstall) all client applications, use the /remove command.
Command /drop="name1, name2"
Description Feature names must be separated by commas.
Specifying the RightFax Server
Some commands require the name of a RightFax server to which the client application will connect when it is first installed.
Command /rightFaxServer="My Server"
Description "MyServer" is the name of the RightFax server.
Shutting Down RightFax Processes
Before running Setup.exe, RightFax applications should be shut down and then restarted after Setup.exe is finished.
You can stop and start the applications manually, or Setup.exe can perform these operations for you.
Command /allowShutdown= true
Description None.
Client Application Names
The client applications must be specified with these names.
Command FaxUtil
Description RightFax FaxUtil
Command EFM
Description RightFax Enterprise Fax Manager
Command FaxCtrl
Description RightFax Print Driver
Command Outlook
Description RightFax Outlook Advanced Fax Extensions
Command MAPI
Description MAPI Print Driver
Command VIM
Description VIM Print Driver
Command AutoReply
Description RightFax AutoReply
Exit Codes
Setup.exe returns an exit code. The exit codes can be utilized in a batch file to display the exit code when
Setup.exe is finished or to branch to another operation. Use the errorlevel command in the batch file to utilize the exit code.
Exit Code 0
Description Success.
Exit Code 1
Description No errors, but a reboot is required to finish the operation.
Exit Code -1
Description An error occurred
This is from the RightFax documentation......
Installing the Client Applications from a Command Line
The RightFax client applications can be installed from an MS-DOS prompt in a Command Prompt window. You can:
?? Install RightFax client applications for the first time.
?? Modify an existing installation of a client application to add or remove (uninstall) one or more client applications.
?? Remove (uninstall) all of the client applications
Following are examples of common operations that can be performed. Note that these examples wrap to fit on this page. The command line must not include a carriage return.
Installing a RightFax client application for the first time:
- Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,EFM" /rightFaxServer="myserver"
Modifying an existing installation:
- Setup.exe /modify /unattended=true /allowShutdown=true /add="faxctrl"
Removing one RightFax client application from a server:
- Setup.exe /modify /unattended=true /allowshutdown=true /drop="faxctrl"
Uninstalling all RightFax client applications from a server:
- Setup.exe /remove /unattended=true /allowShutdown=true
Before You Begin
Copy the Setup.exe to a network file location from which you will run the command line. You have the following options:
?? Copy the RightFax product suite Setup.exe from the DVD to the network. (Only the client applications can be installed from the command line.)
?? Copy the Setup.exe for client applications from the DVD to the network. The client Setup.exe is located on the RightFax product suite DVD in the \Client folder. The file size is 105 MB.
If you use the Setup.exe for client applications, you can further reduce the file size of the Setup.exe with the following options:
?? If the destination client computer operating systems are all 32-bit, you can reduce the Setup.exe to 60 MB. Delete the file \Client\Prereqs\NetFx64.exe.
?? If .NET 2.0 is already installed on the destination client computers, you can reduce the Setup.exe to 32 MB. Delete the file \Client\Prereqs\dotnetfx2.0.
The command line install is not intended for installing client applications on the RightFax server.
Specifying the Level of User Interaction
Setup.exe runs with a fully interactive wizard, but it also can be run with minimal or no user interaction.
To check for success or failure, see Exit Codes later in this section.
Command
Description Setup.exe displays a progress bar and will not require user input except in the case of an error. In the case of an error, Setup.exe will display a message explaining the error. The user must click OK to continue. /quiet=true Setup.exe runs with no user interaction.
Command /quiet=true
Description Setup.exe runs with no user interaction.
Specifying the Location of the Setup.exe File
You must run the command in the directory where the RightFax Setup.exe is copied, or you must specify the full path to Setup.exe.
Command
Description The location can be any valid path, such as "D:\" or \\server\share.
Specifying the Installation Mode
To modify an existing installation or to uninstall all of the client applications, you must specify the installation mode.
Command
Description Modifies an existing installation to add or remove RightFax client applications. This command must be used with the Add or Drop command. This command cannot be used to remove all features.
Command /remove
Description Removes all RightFax client applications from the system. This command cannot be used to add or remove specific features.
Specifying the RightFax Client Applications to Install
With the Add command, you can specify one or more RightFax client applications to add. This option applies when you are installing features for the first time or when you decide to add RightFax client applications at a later time (modifying an existing installation).
Command
Description Feature names must be separated by commas.
Specifying the RightFax Client Applications to Remove
With the Drop command, you can remove one or more client applications at a time
Do not use this option to remove all of the client applications. To remove (uninstall) all client applications, use the /remove command.
Command
Description Feature names must be separated by commas.
Specifying the RightFax Server
Some commands require the name of a RightFax server to which the client application will connect when it is first installed.
Command
Description "MyServer" is the name of the RightFax server.
Shutting Down RightFax Processes
Before running Setup.exe, RightFax applications should be shut down and then restarted after Setup.exe is finished.
You can stop and start the applications manually, or Setup.exe can perform these operations for you.
Command
Description None.
Client Application Names
The client applications must be specified with these names.
Command
Description RightFax FaxUtil
Command EFM
Description RightFax Enterprise Fax Manager
Command FaxCtrl
Description RightFax Print Driver
Command Outlook
Description RightFax Outlook Advanced Fax Extensions
Command MAPI
Description MAPI Print Driver
Command VIM
Description VIM Print Driver
Command AutoReply
Description RightFax AutoReply
Exit Codes
Setup.exe returns an exit code. The exit codes can be utilized in a batch file to display the exit code when
Setup.exe is finished or to branch to another operation. Use the errorlevel command in the batch file to utilize the exit code.
Exit Code
Description Success.
Exit Code 1
Description No errors, but a reboot is required to finish the operation.
Exit Code -1
Description An error occurred
Posted by:
anonymous_9363
15 years ago
Posted by:
michaelnowell
15 years ago
Posted by:
anonymous_9363
15 years ago
Posted by:
slparker
15 years ago
I'm still having issues (Thought I had found the solution when I saw your post)... Here is what I am trying...
Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,FaxCtrl,EFM,Outlook" /rightFaxServer="MyRFServer"
I copied the "Client" folder and am running setup.exe from it...
I do not have a setup.ini file...
Any Ideas???
Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,FaxCtrl,EFM,Outlook" /rightFaxServer="MyRFServer"
I copied the "Client" folder and am running setup.exe from it...
I do not have a setup.ini file...
Any Ideas???
Posted by:
anonymous_9363
15 years ago
Posted by:
cl3tUs
15 years ago
I really hope someone can still help with this. The following line didn't work:
Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,EFM" /rightFaxServer="myserver"
What I had to do was add a switch in there that they didn't have in the example (I will bold it):
Setup.exe /unattended=true /quiet=true /allowShutdown=false add="FaxUtil,FaxCtrl" /rightFaxServer="myserver"
My main problem is that when the print driver starts to install, Windows pops up a message asking if I want to allow the hardware installation. The driver looks like a generic driver install window (not something you would see in device manager - http://www.mydigitallife.info/wp-content/uploads/2007/12/unsigned-driver-install.jpg) and I didn't see where you could ignore that in the script. I have to find a way to get beyond that.
Thanks in advance!
Edit: Also, I am not sure what the manifest.xml file is for. Not sure if we even need to specify the location of it.
Setup.exe /unattended=true /allowShutdown=true add="FaxUtil,EFM" /rightFaxServer="myserver"
What I had to do was add a switch in there that they didn't have in the example (I will bold it):
Setup.exe /unattended=true /quiet=true /allowShutdown=false add="FaxUtil,FaxCtrl" /rightFaxServer="myserver"
My main problem is that when the print driver starts to install, Windows pops up a message asking if I want to allow the hardware installation. The driver looks like a generic driver install window (not something you would see in device manager - http://www.mydigitallife.info/wp-content/uploads/2007/12/unsigned-driver-install.jpg) and I didn't see where you could ignore that in the script. I have to find a way to get beyond that.
Thanks in advance!
Edit: Also, I am not sure what the manifest.xml file is for. Not sure if we even need to specify the location of it.
Posted by:
cygan
15 years ago
Posted by:
cl3tUs
15 years ago
Cygan, I'm sure it's possible, but I would have to get with our Sys Admin team and that would take a long time. It's hard relying on those guys. I'm trying to throw a random idea out there.
Maybe, if I can copy the print driver over to system32 and then it would see that it is there and install it that way. Not sure. It's a long shot, but I'm desperate. I have until Thursday.
Maybe, if I can copy the print driver over to system32 and then it would see that it is there and install it that way. Not sure. It's a long shot, but I'm desperate. I have until Thursday.
Posted by:
anonymous_9363
15 years ago
copy the print driver over to system32 and then it would see that it is there and install it that way.How would that ever work?
The simplest answer is to separate out the driver installation and sign the driver. And before you ask, there's a ton of stuff here on AppDeploy about driver-signing so use the 'Search' facility.
Posted by:
cl3tUs
15 years ago
Posted by:
NetMedic
15 years ago
I am using SCCM to deloy RightFax...I was able to deploy and add modules but can't remove it. I get a long winded error that points to a problem with the installer. I can do it manualy with the setup.exe /remove but not through SCCM. I sent a message to OpenText and this is what I got back.
The 9.4 client installation package was completely redesigned by Development for version 9.4.
We do not have any documentation or process concerning the deploymentation method of the client via any 3rd party tool at this time, with 9.4.
I have already submitted a Feature Request to Development on other Customer's behalf that this be looked into for the next version release cycle, and provided to customers and technical support; however, untill they test it and document it, this is an unsupported process with 9.4.
Because the process work from the command line, the process as documented in the guide, would appear to work, and the issue would appear specific to the deploymentation method. I wish I had something to offer; however, we have no suggestions at this time to resolve.
Unfortunately, this will not be something we can directly assist you with.
Anyone else having this problem?
The 9.4 client installation package was completely redesigned by Development for version 9.4.
We do not have any documentation or process concerning the deploymentation method of the client via any 3rd party tool at this time, with 9.4.
I have already submitted a Feature Request to Development on other Customer's behalf that this be looked into for the next version release cycle, and provided to customers and technical support; however, untill they test it and document it, this is an unsupported process with 9.4.
Because the process work from the command line, the process as documented in the guide, would appear to work, and the issue would appear specific to the deploymentation method. I wish I had something to offer; however, we have no suggestions at this time to resolve.
Unfortunately, this will not be something we can directly assist you with.
Anyone else having this problem?
Posted by:
cl3tUs
15 years ago
Posted by:
NetMedic
15 years ago
Posted by:
cl3tUs
15 years ago
How is the package made? Are you doing a TS that runs a script or did you make a batch file? Did you make a program that runs that setup and then has the removal switches?
Also, one thing just came to mind. We couldn't remove RightFax unless the RightFax thing in the system tray was not running.
Try this:
taskkill /f /im faxctrl.exe
setup.exe /unattend=true /quiet=true /remove
Also, one thing just came to mind. We couldn't remove RightFax unless the RightFax thing in the system tray was not running.
Try this:
taskkill /f /im faxctrl.exe
setup.exe /unattend=true /quiet=true /remove
Posted by:
NetMedic
15 years ago
I am just running the program in a program that is attached to the RightFax package. I was able to install the FaxCtrl no problem. I was also able to run another program to add the FaxUtil and EFM. No issues with either of those. I used the setup.exe the for those routines. I tried killing the FaxCtrl and running the advertisement for the uninstall program and it did not uninstall.
Posted by:
NetMedic
15 years ago
This is the error when I try to run the setup.exe /unattented=true /removal.
RightFax:_setup
Application could not be started:
Unhandled application exception.
System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at System.Windows.Forms.Form.ShowDialog()
at RightFax.Tools.UI.MessageBoxPlus.Show()
at RightFax.Tools.UI.MessageBoxPlus.ShowFullControl(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, SupressModes& supression, Boolean semiModal)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, SupressModes& supression)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon)
at RightFax.Tools.UI.MessageBoxPlus.Show(String text, String caption, MessageBoxButtons buttons, MessageBoxIcon icon)
at TaskWizard.TaskWizardManager.Run(String logFileName, String traceDisplayName, String traceDescription)
at Install.Program.AppMain(String[] args)
at Install.Program.AppStart.RightFax.IGlobalAppStart.Main(String[] args)
at RightFax.GlobalAppStart.CallAppEntryPoint(String[] args, String& strMessage)
The following assemblies were loaded:
vrv8v8b_, Version=9.4.0.0, Culture=neutral, PublicKeyToken=null
from
vkxbz7j3, Version=9.4.0.0, Culture=neutral, PublicKeyToken=null
from
No assemblies failed to load.
When I run the /removal with the /quiet=true I do not get the error but it does not uninstall. I have tried using a batch file as a TS as well as a straight package.
RightFax:_setup
Application could not be started:
Unhandled application exception.
System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at System.Windows.Forms.Form.ShowDialog()
at RightFax.Tools.UI.MessageBoxPlus.Show()
at RightFax.Tools.UI.MessageBoxPlus.ShowFullControl(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, SupressModes& supression, Boolean semiModal)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, SupressModes& supression)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton)
at RightFax.Tools.UI.MessageBoxPlus.ShowDetails(IWin32Window owner, String text, String details, Boolean expandDetails, String caption, MessageBoxButtons buttons, MessageBoxIcon icon)
at RightFax.Tools.UI.MessageBoxPlus.Show(String text, String caption, MessageBoxButtons buttons, MessageBoxIcon icon)
at TaskWizard.TaskWizardManager.Run(String logFileName, String traceDisplayName, String traceDescription)
at Install.Program.AppMain(String[] args)
at Install.Program.AppStart.RightFax.IGlobalAppStart.Main(String[] args)
at RightFax.GlobalAppStart.CallAppEntryPoint(String[] args, String& strMessage)
The following assemblies were loaded:
vrv8v8b_, Version=9.4.0.0, Culture=neutral, PublicKeyToken=null
from
vkxbz7j3, Version=9.4.0.0, Culture=neutral, PublicKeyToken=null
from
No assemblies failed to load.
When I run the /removal with the /quiet=true I do not get the error but it does not uninstall. I have tried using a batch file as a TS as well as a straight package.
Posted by:
cl3tUs
15 years ago
Posted by:
cl3tUs
15 years ago
I just ran into a problem... I can't deploy this through SCCM for some reason. SCCM shows it as a success but RightFax never installs. I read in the log and found the following information:
2009-10-21 09:21:34Z: Info: Logging started.
2009-10-21 09:21:35Z: Info: Setup v9.4.0.239
2009-10-21 09:21:35Z: Info: Command line: /unattended=true /quiet=true /allowshutdown=false /add=FaxUtil,FaxCtrl /rightfaxserver=HQADAVAP23
2009-10-21 09:21:38Z: Info: Loading install state at start of work.
2009-10-21 09:21:38Z: Info: IsUpgrade=False, IsModify=False, IsRemoval=False, IsRepair=False
2009-10-21 09:21:38Z: Info: The following feature change requests are being processed:
2009-10-21 09:21:38Z: Info: Add Clients/Tools
2009-10-21 09:21:38Z: Info: Add RightFax FaxUtil
2009-10-21 09:21:38Z: Info: Add RightFax Print Driver
2009-10-21 09:21:38Z: Error: Unexpected problem
System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at System.Windows.Forms.Form.ShowDialog()
at RightFax.Tools.UI.BackgroundWorkerProgressDialog.Run(IWin32Window owner, BackgroundWorker worker, BackgroundWorkerProgressMode mode, TimeSpan duration)
at RightFax.Tools.UI.BackgroundWorkerProgressDialog.Run(IWin32Window owner, BackgroundWorker worker)
at TaskWizard.TaskWorker.RunSilently(TaskWorker worker)
at TaskWizard.TaskWizardManager.DoWorkQuiet(TaskWorker[] currentWorkers)
at TaskWizard.TaskWizardManager.OnDoWork(TaskWorker[] currentWorkers)
at CommonInstall.CommonInstallManager.OnDoWork(TaskWorker[] currentWorkers)
at TaskWizard.TaskWizardManager.RunInSandbox()
at TaskWizard.TaskWizardManager.Run(String logFileName, String traceDisplayName, String traceDescription)
2009-10-21 09:21:38Z: Info: Reboot status = NotRequired
2009-10-21 09:21:38Z: Info: Exitcode = -1
2009-10-21 09:21:38Z: Info: Logging ended.
I Googled the part about the error and everyone was referring to VBS script or something else that isn't RightFax.
2009-10-21 09:21:34Z: Info: Logging started.
2009-10-21 09:21:35Z: Info: Setup v9.4.0.239
2009-10-21 09:21:35Z: Info: Command line: /unattended=true /quiet=true /allowshutdown=false /add=FaxUtil,FaxCtrl /rightfaxserver=HQADAVAP23
2009-10-21 09:21:38Z: Info: Loading install state at start of work.
2009-10-21 09:21:38Z: Info: IsUpgrade=False, IsModify=False, IsRemoval=False, IsRepair=False
2009-10-21 09:21:38Z: Info: The following feature change requests are being processed:
2009-10-21 09:21:38Z: Info: Add Clients/Tools
2009-10-21 09:21:38Z: Info: Add RightFax FaxUtil
2009-10-21 09:21:38Z: Info: Add RightFax Print Driver
2009-10-21 09:21:38Z: Error: Unexpected problem
System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at System.Windows.Forms.Form.ShowDialog()
at RightFax.Tools.UI.BackgroundWorkerProgressDialog.Run(IWin32Window owner, BackgroundWorker worker, BackgroundWorkerProgressMode mode, TimeSpan duration)
at RightFax.Tools.UI.BackgroundWorkerProgressDialog.Run(IWin32Window owner, BackgroundWorker worker)
at TaskWizard.TaskWorker.RunSilently(TaskWorker worker)
at TaskWizard.TaskWizardManager.DoWorkQuiet(TaskWorker[] currentWorkers)
at TaskWizard.TaskWizardManager.OnDoWork(TaskWorker[] currentWorkers)
at CommonInstall.CommonInstallManager.OnDoWork(TaskWorker[] currentWorkers)
at TaskWizard.TaskWizardManager.RunInSandbox()
at TaskWizard.TaskWizardManager.Run(String logFileName, String traceDisplayName, String traceDescription)
2009-10-21 09:21:38Z: Info: Reboot status = NotRequired
2009-10-21 09:21:38Z: Info: Exitcode = -1
2009-10-21 09:21:38Z: Info: Logging ended.
I Googled the part about the error and everyone was referring to VBS script or something else that isn't RightFax.
Posted by:
dpolishsensation
15 years ago
Has anyone had any luck with setting the server for RightFax through Outlook? I am able to get the software installed successfully, however when clicking on the RightFax icon in Outlook, I receive the following error:
Unable to connect to server RightFax.
As you can see below, the server has been set.
"\\va1wps01\Staging\RightFax Outlook 9.4\Source\RightFax Outlook 9.4\Setup.exe" /unattended=true /quiet=true /allowShutdown=true /add="outlook,faxctrl" /rightFaxServer="va1rfx01"
Unable to connect to server RightFax.
As you can see below, the server has been set.
"\\va1wps01\Staging\RightFax Outlook 9.4\Source\RightFax Outlook 9.4\Setup.exe" /unattended=true /quiet=true /allowShutdown=true /add="outlook,faxctrl" /rightFaxServer="va1rfx01"
Posted by:
michaelnowell
15 years ago
dpolishsensation
When the Rightfax install run, it does a basic MSI install, but most of the reg keys etc... are generated by the installshield addin. I suspect that you are missing several of the registry keys that are generated during the Outlook integration part of the installshield installation.
Here are the keys that are generated during this installation. Check that they are present. If not, merge them into your registry and see if it then works.
When the Rightfax install run, it does a basic MSI install, but most of the reg keys etc... are generated by the installshield addin. I suspect that you are missing several of the registry keys that are generated during the Outlook integration part of the installshield installation.
Here are the keys that are generated during this installation. Check that they are present. If not, merge them into your registry and see if it then works.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Extensions]
"Captaris RightFax Client Extension"="4.0;C:\\Program Files\\RightFax\\Shared Files\\RFxMSx32.dll;1;01000111101100;1101010"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}]
@="RightFax Form Options"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Control]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\MiscStatus]
@="0"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\MiscStatus\1]
@="131473"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\ProgID]
@="RFaxVwrCtrl.FormOptions.1"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\ToolboxBitmap32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll, 1004"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\Version]
@="1.0"
[HKEY_CLASSES_ROOT\CLSID\{20AFADBC-6732-45D0-89FB-9E253DD0D180}\VersionIndependentProgID]
@="RFaxVwrCtrl.FormOptions"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}]
@="RightFax Form Viewer"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Control]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\MiscStatus]
@="0"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\MiscStatus\1]
@="131473"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\ProgID]
@="RFaxVwrCtrl.FormViewer.1"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\ToolboxBitmap32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll, 1000"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\Version]
@="1.0"
[HKEY_CLASSES_ROOT\CLSID\{2F4D6C5A-231C-486A-A737-16DE8BF966D3}\VersionIndependentProgID]
@="RFaxVwrCtrl.FormViewer"
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}]
@="RFaxExchange Class"
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFxMSx32.dll"
"ThreadingModel"="Free"
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\ProgID]
@="RFxMSx32.RFaxExchange.1"
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\TypeLib]
@="{1D6000DD-2D92-450C-A5BA-2F0F2324709F}"
[HKEY_CLASSES_ROOT\CLSID\{4F85E688-D616-497B-A2E4-A86A221D0DAA}\VersionIndependentProgID]
@="RFxMSx32.RFaxExchange"
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}]
@="RightFax Form Helper"
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\ProgID]
@="RFaxVwrCtrl.FormHelper.1"
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
[HKEY_CLASSES_ROOT\CLSID\{92C57082-A6B6-4372-8A93-6FA589AB8ED4}\VersionIndependentProgID]
@="RFaxVwrCtrl.FormHelper"
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}]
@="Viewer Class"
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxView.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\ProgID]
@="RFaxView.Viewer.1"
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\TypeLib]
@="{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}"
[HKEY_CLASSES_ROOT\CLSID\{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}\VersionIndependentProgID]
@="RFaxView.Viewer"
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}]
@="Scanner Class"
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFScan.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\ProgID]
@="RFScan.Scanner.1"
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\TypeLib]
@="{EFA785C7-1745-4C29-961C-7419075E67ED}"
[HKEY_CLASSES_ROOT\CLSID\{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}\VersionIndependentProgID]
@="RFScan.Scanner"
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}]
@="FaxServer Class"
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\rfcomapi.dll"
"ThreadingModel"="Both"
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\ProgID]
@="RFComAPI.FaxServer.1"
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
[HKEY_CLASSES_ROOT\CLSID\{D7CA3941-DA83-4C87-949A-60DF378DD68E}\VersionIndependentProgID]
@="RFComAPI.FaxServer"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}]
@="RightFAX Objects"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\Control]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFObj.dll"
"ThreadingModel"="both"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\MiscStatus]
@="0"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\MiscStatus\1]
@="131473"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\ProgID]
@="RightFAX.Object.1"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\ToolboxBitmap32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFObj.dll, 1"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\TypeLib]
@="{BF9A9E2B-FE8B-4c15-91D5-F91D073C1241}"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\Version]
@="1.0"
[HKEY_CLASSES_ROOT\CLSID\{F846E186-061A-4960-BA14-B2B4DBC3B21E}\VersionIndependentProgID]
@="RightFAX.Object"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}]
@="ViewerCtrl Class"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Control]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Implemented Categories]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Implemented Categories\{3AB51FE2-1D00-11d3-AA05-00500409F78D}]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\InprocServer32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxView.dll"
"ThreadingModel"="Apartment"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\MiscStatus]
@="0"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\MiscStatus\1]
@="131473"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\ProgID]
@="RFaxView.ViewerCtrl.1"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Programmable]
"+"=""
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\ToolboxBitmap32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxView.dll, 103"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\TypeLib]
@="{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\Version]
@="1.0"
[HKEY_CLASSES_ROOT\CLSID\{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}\VersionIndependentProgID]
@="RFaxView.ViewerCtrl"
[HKEY_CLASSES_ROOT\Interface\{0187CA55-C98D-48C1-8A90-4850DA384BCA}]
@="Folder"
[HKEY_CLASSES_ROOT\Interface\{0187CA55-C98D-48C1-8A90-4850DA384BCA}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{0187CA55-C98D-48C1-8A90-4850DA384BCA}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{0187CA55-C98D-48C1-8A90-4850DA384BCA}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{0564678E-94B6-4126-B2D2-9FE19444FA77}]
@="IFormOptions"
[HKEY_CLASSES_ROOT\Interface\{0564678E-94B6-4126-B2D2-9FE19444FA77}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{0564678E-94B6-4126-B2D2-9FE19444FA77}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{0564678E-94B6-4126-B2D2-9FE19444FA77}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{18D3EC32-5B38-4A1D-966A-994847C90992}]
@="Fax"
[HKEY_CLASSES_ROOT\Interface\{18D3EC32-5B38-4A1D-966A-994847C90992}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{18D3EC32-5B38-4A1D-966A-994847C90992}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{18D3EC32-5B38-4A1D-966A-994847C90992}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{19982F6C-9807-41BF-9368-B32AE07E9705}]
@="Signatures"
[HKEY_CLASSES_ROOT\Interface\{19982F6C-9807-41BF-9368-B32AE07E9705}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{19982F6C-9807-41BF-9368-B32AE07E9705}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{19982F6C-9807-41BF-9368-B32AE07E9705}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{1FBB63BE-889D-4E36-809C-8AA32DA9BF3A}]
@="PhoneItemGroup"
[HKEY_CLASSES_ROOT\Interface\{1FBB63BE-889D-4E36-809C-8AA32DA9BF3A}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{1FBB63BE-889D-4E36-809C-8AA32DA9BF3A}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{1FBB63BE-889D-4E36-809C-8AA32DA9BF3A}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{24B5EE30-AA31-4554-A36F-F77009E855C3}]
@="IFaxServer"
[HKEY_CLASSES_ROOT\Interface\{24B5EE30-AA31-4554-A36F-F77009E855C3}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{24B5EE30-AA31-4554-A36F-F77009E855C3}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{24B5EE30-AA31-4554-A36F-F77009E855C3}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{2AD3B468-CED5-40AC-A217-03BB3D8EA1AA}]
@="User"
[HKEY_CLASSES_ROOT\Interface\{2AD3B468-CED5-40AC-A217-03BB3D8EA1AA}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{2AD3B468-CED5-40AC-A217-03BB3D8EA1AA}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{2AD3B468-CED5-40AC-A217-03BB3D8EA1AA}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{2C074DE2-293E-44C2-A054-8A0E5379E74C}]
@="Forms"
[HKEY_CLASSES_ROOT\Interface\{2C074DE2-293E-44C2-A054-8A0E5379E74C}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{2C074DE2-293E-44C2-A054-8A0E5379E74C}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{2C074DE2-293E-44C2-A054-8A0E5379E74C}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{318A6061-5EC5-4A76-8214-C43341F1969D}]
@="PrintFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{318A6061-5EC5-4A76-8214-C43341F1969D}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{318A6061-5EC5-4A76-8214-C43341F1969D}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{318A6061-5EC5-4A76-8214-C43341F1969D}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{3F16ECA5-C7B3-4FF0-9D99-3B2179E7DC15}]
@="PhoneItem"
[HKEY_CLASSES_ROOT\Interface\{3F16ECA5-C7B3-4FF0-9D99-3B2179E7DC15}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{3F16ECA5-C7B3-4FF0-9D99-3B2179E7DC15}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{3F16ECA5-C7B3-4FF0-9D99-3B2179E7DC15}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{3F2247A4-84F1-4CAA-90D8-69AA62CCEA8E}]
@="PrintRequest"
[HKEY_CLASSES_ROOT\Interface\{3F2247A4-84F1-4CAA-90D8-69AA62CCEA8E}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{3F2247A4-84F1-4CAA-90D8-69AA62CCEA8E}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{3F2247A4-84F1-4CAA-90D8-69AA62CCEA8E}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{43B3D22D-9C56-428B-95F6-A14E40756F88}]
@="SecureDocHistory"
[HKEY_CLASSES_ROOT\Interface\{43B3D22D-9C56-428B-95F6-A14E40756F88}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{43B3D22D-9C56-428B-95F6-A14E40756F88}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{43B3D22D-9C56-428B-95F6-A14E40756F88}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{44E62C87-E2A5-4A61-BD69-6C0850A7AF94}]
@="Folders"
[HKEY_CLASSES_ROOT\Interface\{44E62C87-E2A5-4A61-BD69-6C0850A7AF94}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{44E62C87-E2A5-4A61-BD69-6C0850A7AF94}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{44E62C87-E2A5-4A61-BD69-6C0850A7AF94}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{45E50059-9911-48FF-A5C6-193E1E862B0D}]
@="FileRouteFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{45E50059-9911-48FF-A5C6-193E1E862B0D}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{45E50059-9911-48FF-A5C6-193E1E862B0D}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{45E50059-9911-48FF-A5C6-193E1E862B0D}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{4612841A-9A05-4D0F-AA0D-B9B1DEBDC111}]
@="OCRFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{4612841A-9A05-4D0F-AA0D-B9B1DEBDC111}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4612841A-9A05-4D0F-AA0D-B9B1DEBDC111}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4612841A-9A05-4D0F-AA0D-B9B1DEBDC111}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{4A54921D-B729-442A-9299-329B50F600F1}]
@="BillingCode"
[HKEY_CLASSES_ROOT\Interface\{4A54921D-B729-442A-9299-329B50F600F1}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4A54921D-B729-442A-9299-329B50F600F1}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4A54921D-B729-442A-9299-329B50F600F1}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{4A9D27C2-F039-45D2-B4B9-2DDB21133CE8}]
@="ArchiveEvent"
[HKEY_CLASSES_ROOT\Interface\{4A9D27C2-F039-45D2-B4B9-2DDB21133CE8}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4A9D27C2-F039-45D2-B4B9-2DDB21133CE8}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{4A9D27C2-F039-45D2-B4B9-2DDB21133CE8}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{59800B02-BBA4-40CC-A8F7-DCE63578F53B}]
@="Printer"
[HKEY_CLASSES_ROOT\Interface\{59800B02-BBA4-40CC-A8F7-DCE63578F53B}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{59800B02-BBA4-40CC-A8F7-DCE63578F53B}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{59800B02-BBA4-40CC-A8F7-DCE63578F53B}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{5C067FFE-F5E0-4086-B006-7FCE9CE85A69}]
@="FaxEx1"
[HKEY_CLASSES_ROOT\Interface\{5C067FFE-F5E0-4086-B006-7FCE9CE85A69}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5C067FFE-F5E0-4086-B006-7FCE9CE85A69}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5C067FFE-F5E0-4086-B006-7FCE9CE85A69}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{5DC26049-0AE4-4587-9314-63DA28C634F6}]
@="ServerStats"
[HKEY_CLASSES_ROOT\Interface\{5DC26049-0AE4-4587-9314-63DA28C634F6}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5DC26049-0AE4-4587-9314-63DA28C634F6}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5DC26049-0AE4-4587-9314-63DA28C634F6}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{5E7A3FC9-B741-4FB7-90EB-B24160AAB58F}]
@="Attachment"
[HKEY_CLASSES_ROOT\Interface\{5E7A3FC9-B741-4FB7-90EB-B24160AAB58F}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5E7A3FC9-B741-4FB7-90EB-B24160AAB58F}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5E7A3FC9-B741-4FB7-90EB-B24160AAB58F}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{5FEDF988-D937-4C47-A1CB-CF61FD7BCDE5}]
@="PhoneItemElement"
[HKEY_CLASSES_ROOT\Interface\{5FEDF988-D937-4C47-A1CB-CF61FD7BCDE5}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5FEDF988-D937-4C47-A1CB-CF61FD7BCDE5}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{5FEDF988-D937-4C47-A1CB-CF61FD7BCDE5}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{62551E19-012A-48A9-A606-3571C036C8C2}]
@="Delegates"
[HKEY_CLASSES_ROOT\Interface\{62551E19-012A-48A9-A606-3571C036C8C2}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{62551E19-012A-48A9-A606-3571C036C8C2}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{62551E19-012A-48A9-A606-3571C036C8C2}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{633CACEF-45D5-48B9-98CD-1B4E4D0566BF}]
@="CoverSheets"
[HKEY_CLASSES_ROOT\Interface\{633CACEF-45D5-48B9-98CD-1B4E4D0566BF}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{633CACEF-45D5-48B9-98CD-1B4E4D0566BF}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{633CACEF-45D5-48B9-98CD-1B4E4D0566BF}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{697C743A-86E2-42E9-B6AB-4F4916285795}]
@="_DFaxServerEvents"
[HKEY_CLASSES_ROOT\Interface\{697C743A-86E2-42E9-B6AB-4F4916285795}\ProxyStubClsid]
@="{00020420-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{697C743A-86E2-42E9-B6AB-4F4916285795}\ProxyStubClsid32]
@="{00020420-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{697C743A-86E2-42E9-B6AB-4F4916285795}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{6BAD6E7E-B55B-4CD7-AA4F-E1D8FDF80B47}]
@="Faxes"
[HKEY_CLASSES_ROOT\Interface\{6BAD6E7E-B55B-4CD7-AA4F-E1D8FDF80B47}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6BAD6E7E-B55B-4CD7-AA4F-E1D8FDF80B47}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6BAD6E7E-B55B-4CD7-AA4F-E1D8FDF80B47}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{6D4B7672-95BE-468E-A718-EF53E3A5DE02}]
@="Delegate"
[HKEY_CLASSES_ROOT\Interface\{6D4B7672-95BE-468E-A718-EF53E3A5DE02}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6D4B7672-95BE-468E-A718-EF53E3A5DE02}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6D4B7672-95BE-468E-A718-EF53E3A5DE02}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{6D57212A-F2DC-4D98-860A-3BE3DCAC9397}]
@="Signature"
[HKEY_CLASSES_ROOT\Interface\{6D57212A-F2DC-4D98-860A-3BE3DCAC9397}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6D57212A-F2DC-4D98-860A-3BE3DCAC9397}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6D57212A-F2DC-4D98-860A-3BE3DCAC9397}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{6FAAD240-77D4-4E81-8F30-232BED769035}]
@="IRFObjObj"
[HKEY_CLASSES_ROOT\Interface\{6FAAD240-77D4-4E81-8F30-232BED769035}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6FAAD240-77D4-4E81-8F30-232BED769035}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{6FAAD240-77D4-4E81-8F30-232BED769035}\TypeLib]
@="{BF9A9E2B-FE8B-4C15-91D5-F91D073C1241}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{754E1277-3827-48C7-BB0B-025B403AC0FD}]
@="Attachments"
[HKEY_CLASSES_ROOT\Interface\{754E1277-3827-48C7-BB0B-025B403AC0FD}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{754E1277-3827-48C7-BB0B-025B403AC0FD}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{754E1277-3827-48C7-BB0B-025B403AC0FD}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{76C38BF1-4AF8-4E47-A2EE-C269D58D3BFA}]
@="CompleteEvent"
[HKEY_CLASSES_ROOT\Interface\{76C38BF1-4AF8-4E47-A2EE-C269D58D3BFA}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{76C38BF1-4AF8-4E47-A2EE-C269D58D3BFA}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{76C38BF1-4AF8-4E47-A2EE-C269D58D3BFA}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{7B9C839A-95AC-4D1D-B86F-6D9916CFD87D}]
@="RouteFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{7B9C839A-95AC-4D1D-B86F-6D9916CFD87D}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{7B9C839A-95AC-4D1D-B86F-6D9916CFD87D}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{7B9C839A-95AC-4D1D-B86F-6D9916CFD87D}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{804ED068-B8A7-4F2B-A520-B465B9B2CF06}]
@="IViewerCtrl"
[HKEY_CLASSES_ROOT\Interface\{804ED068-B8A7-4F2B-A520-B465B9B2CF06}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{804ED068-B8A7-4F2B-A520-B465B9B2CF06}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{804ED068-B8A7-4F2B-A520-B465B9B2CF06}\TypeLib]
@="{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{8E811B77-A557-4307-B378-E2B5E085B7A8}]
@="DisapprovalFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{8E811B77-A557-4307-B378-E2B5E085B7A8}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{8E811B77-A557-4307-B378-E2B5E085B7A8}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{8E811B77-A557-4307-B378-E2B5E085B7A8}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{9624BEFE-0D90-406A-89F2-882000C988E8}]
@="TransmissionFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{9624BEFE-0D90-406A-89F2-882000C988E8}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9624BEFE-0D90-406A-89F2-882000C988E8}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9624BEFE-0D90-406A-89F2-882000C988E8}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{9B49326A-0B60-49F4-94E2-2638FFEFE349}]
@="Events"
[HKEY_CLASSES_ROOT\Interface\{9B49326A-0B60-49F4-94E2-2638FFEFE349}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9B49326A-0B60-49F4-94E2-2638FFEFE349}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9B49326A-0B60-49F4-94E2-2638FFEFE349}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{9F386618-764B-48F8-A5BF-3682B03DE840}]
@="Form"
[HKEY_CLASSES_ROOT\Interface\{9F386618-764B-48F8-A5BF-3682B03DE840}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9F386618-764B-48F8-A5BF-3682B03DE840}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{9F386618-764B-48F8-A5BF-3682B03DE840}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{A387FEF3-F14B-4E8F-A89D-81FE3FB1F3EC}]
@="LibraryDocuments"
[HKEY_CLASSES_ROOT\Interface\{A387FEF3-F14B-4E8F-A89D-81FE3FB1F3EC}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{A387FEF3-F14B-4E8F-A89D-81FE3FB1F3EC}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{A387FEF3-F14B-4E8F-A89D-81FE3FB1F3EC}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{A4412691-8414-4971-846D-2740A7895082}]
@="Group"
[HKEY_CLASSES_ROOT\Interface\{A4412691-8414-4971-846D-2740A7895082}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{A4412691-8414-4971-846D-2740A7895082}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{A4412691-8414-4971-846D-2740A7895082}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{AF1C98DF-51B7-4C9C-85D5-B2F14005F4BF}]
@="MessageRouteEvent"
[HKEY_CLASSES_ROOT\Interface\{AF1C98DF-51B7-4C9C-85D5-B2F14005F4BF}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{AF1C98DF-51B7-4C9C-85D5-B2F14005F4BF}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{AF1C98DF-51B7-4C9C-85D5-B2F14005F4BF}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{B5394069-CAFA-4216-B977-05A4E2868F97}]
@="ValidateEvent"
[HKEY_CLASSES_ROOT\Interface\{B5394069-CAFA-4216-B977-05A4E2868F97}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{B5394069-CAFA-4216-B977-05A4E2868F97}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{B5394069-CAFA-4216-B977-05A4E2868F97}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{B97624AD-7027-4335-BA71-F3F3702895E9}]
@="IViewer"
[HKEY_CLASSES_ROOT\Interface\{B97624AD-7027-4335-BA71-F3F3702895E9}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{B97624AD-7027-4335-BA71-F3F3702895E9}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{B97624AD-7027-4335-BA71-F3F3702895E9}\TypeLib]
@="{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{BAF8D983-E7FE-4503-BFE0-D5A6530B57B3}]
@="Users"
[HKEY_CLASSES_ROOT\Interface\{BAF8D983-E7FE-4503-BFE0-D5A6530B57B3}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{BAF8D983-E7FE-4503-BFE0-D5A6530B57B3}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{BAF8D983-E7FE-4503-BFE0-D5A6530B57B3}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{BDA22AE4-9456-4854-A8FF-F330B918C582}]
@="LibraryDocument"
[HKEY_CLASSES_ROOT\Interface\{BDA22AE4-9456-4854-A8FF-F330B918C582}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{BDA22AE4-9456-4854-A8FF-F330B918C582}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{BDA22AE4-9456-4854-A8FF-F330B918C582}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{C61C0F3E-BF89-4C0D-AC2B-5A629D73BB64}]
@="ApprovalFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{C61C0F3E-BF89-4C0D-AC2B-5A629D73BB64}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{C61C0F3E-BF89-4C0D-AC2B-5A629D73BB64}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{C61C0F3E-BF89-4C0D-AC2B-5A629D73BB64}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{C8B53D39-DB33-4F45-AB31-27D13F884A43}]
@="FaxHistories"
[HKEY_CLASSES_ROOT\Interface\{C8B53D39-DB33-4F45-AB31-27D13F884A43}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{C8B53D39-DB33-4F45-AB31-27D13F884A43}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{C8B53D39-DB33-4F45-AB31-27D13F884A43}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{CDAECB2A-AC43-44AA-AC96-68FEDCA66780}]
@="ServerInfo"
[HKEY_CLASSES_ROOT\Interface\{CDAECB2A-AC43-44AA-AC96-68FEDCA66780}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{CDAECB2A-AC43-44AA-AC96-68FEDCA66780}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{CDAECB2A-AC43-44AA-AC96-68FEDCA66780}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{CF779514-DA29-4B9E-9E3A-82920E8B1B43}]
@="BillingCodes"
[HKEY_CLASSES_ROOT\Interface\{CF779514-DA29-4B9E-9E3A-82920E8B1B43}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{CF779514-DA29-4B9E-9E3A-82920E8B1B43}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{CF779514-DA29-4B9E-9E3A-82920E8B1B43}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{D12D627C-C0C6-414D-80A7-8C2EF5971D25}]
@="Printers"
[HKEY_CLASSES_ROOT\Interface\{D12D627C-C0C6-414D-80A7-8C2EF5971D25}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{D12D627C-C0C6-414D-80A7-8C2EF5971D25}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{D12D627C-C0C6-414D-80A7-8C2EF5971D25}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{D840A333-33A6-45B1-BABF-6105AE309EE6}]
@="Groups"
[HKEY_CLASSES_ROOT\Interface\{D840A333-33A6-45B1-BABF-6105AE309EE6}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{D840A333-33A6-45B1-BABF-6105AE309EE6}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{D840A333-33A6-45B1-BABF-6105AE309EE6}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{E8F7343D-1A5D-42C2-BB37-4DC5C50AD609}]
@="CoverSheet"
[HKEY_CLASSES_ROOT\Interface\{E8F7343D-1A5D-42C2-BB37-4DC5C50AD609}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{E8F7343D-1A5D-42C2-BB37-4DC5C50AD609}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{E8F7343D-1A5D-42C2-BB37-4DC5C50AD609}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{ECC33E6D-0FE0-4A79-83DB-72B53D7783B6}]
@="IFormViewer"
[HKEY_CLASSES_ROOT\Interface\{ECC33E6D-0FE0-4A79-83DB-72B53D7783B6}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{ECC33E6D-0FE0-4A79-83DB-72B53D7783B6}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{ECC33E6D-0FE0-4A79-83DB-72B53D7783B6}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{ECD9B015-9CF1-4E69-832F-AF15EF2DF172}]
@="MessageEvent"
[HKEY_CLASSES_ROOT\Interface\{ECD9B015-9CF1-4E69-832F-AF15EF2DF172}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{ECD9B015-9CF1-4E69-832F-AF15EF2DF172}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{ECD9B015-9CF1-4E69-832F-AF15EF2DF172}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{EF727834-AB89-4F09-BB99-2573F5B5C405}]
@="IFormHelper"
[HKEY_CLASSES_ROOT\Interface\{EF727834-AB89-4F09-BB99-2573F5B5C405}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{EF727834-AB89-4F09-BB99-2573F5B5C405}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{EF727834-AB89-4F09-BB99-2573F5B5C405}\TypeLib]
@="{093C0434-D10B-4BED-9E81-0B12AD755DA3}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{F3A847FC-AEC9-416C-971A-443948D32CAD}]
@="NetForwardFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{F3A847FC-AEC9-416C-971A-443948D32CAD}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F3A847FC-AEC9-416C-971A-443948D32CAD}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F3A847FC-AEC9-416C-971A-443948D32CAD}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{F54CE5B2-D3F1-41C6-8D59-FE6BE3C6CEA6}]
@="PhoneBook"
[HKEY_CLASSES_ROOT\Interface\{F54CE5B2-D3F1-41C6-8D59-FE6BE3C6CEA6}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F54CE5B2-D3F1-41C6-8D59-FE6BE3C6CEA6}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F54CE5B2-D3F1-41C6-8D59-FE6BE3C6CEA6}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{F713D5DD-EF49-4075-B19B-4DDA792B18BB}]
@="ConversionErrorFaxHistory"
[HKEY_CLASSES_ROOT\Interface\{F713D5DD-EF49-4075-B19B-4DDA792B18BB}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F713D5DD-EF49-4075-B19B-4DDA792B18BB}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F713D5DD-EF49-4075-B19B-4DDA792B18BB}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{F9DD61B4-727F-4C97-B270-1589A46B40F7}]
@="FaxHistory"
[HKEY_CLASSES_ROOT\Interface\{F9DD61B4-727F-4C97-B270-1589A46B40F7}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F9DD61B4-727F-4C97-B270-1589A46B40F7}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{F9DD61B4-727F-4C97-B270-1589A46B40F7}\TypeLib]
@="{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\Interface\{FDFE0F3D-C25B-4931-B0B0-69790FB691DD}]
@="IScanner"
[HKEY_CLASSES_ROOT\Interface\{FDFE0F3D-C25B-4931-B0B0-69790FB691DD}\ProxyStubClsid]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{FDFE0F3D-C25B-4931-B0B0-69790FB691DD}\ProxyStubClsid32]
@="{00020424-0000-0000-C000-000000000046}"
[HKEY_CLASSES_ROOT\Interface\{FDFE0F3D-C25B-4931-B0B0-69790FB691DD}\TypeLib]
@="{EFA785C7-1745-4C29-961C-7419075E67ED}"
"Version"="1.0"
[HKEY_CLASSES_ROOT\RFaxView.Viewer]
@="Viewer Class"
[HKEY_CLASSES_ROOT\RFaxView.Viewer.1]
@="Viewer Class"
[HKEY_CLASSES_ROOT\RFaxView.Viewer.1\CLSID]
@="{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}"
[HKEY_CLASSES_ROOT\RFaxView.Viewer\CLSID]
@="{9ACDC811-AB37-40DB-A938-AA8AC6D99C46}"
[HKEY_CLASSES_ROOT\RFaxView.Viewer\CurVer]
@="RFaxView.Viewer.1"
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl]
@="ViewerCtrl Class"
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl.1]
@="ViewerCtrl Class"
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl.1\CLSID]
@="{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}"
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl.1\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl\CLSID]
@="{F88EB5B2-F43E-4D64-8AE4-F9B72F06626A}"
[HKEY_CLASSES_ROOT\RFaxView.ViewerCtrl\CurVer]
@="RFaxView.ViewerCtrl.1"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormHelper]
@="RightFax Form Helper"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormHelper.1]
@="RightFax Form Helper"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormHelper.1\CLSID]
@="{92C57082-A6B6-4372-8A93-6FA589AB8ED4}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormHelper\CLSID]
@="{92C57082-A6B6-4372-8A93-6FA589AB8ED4}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormHelper\CurVer]
@="RFaxVwrCtrl.FormHelper.1"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormOptions]
@="RightFax Form Options"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormOptions.1]
@="RightFax Form Options"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormOptions.1\CLSID]
@="{20AFADBC-6732-45D0-89FB-9E253DD0D180}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormOptions\CLSID]
@="{20AFADBC-6732-45D0-89FB-9E253DD0D180}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormOptions\CurVer]
@="RFaxVwrCtrl.FormOptions.1"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormViewer]
@="RightFax Form Viewer"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormViewer.1]
@="RightFax Form Viewer"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormViewer.1\CLSID]
@="{2F4D6C5A-231C-486A-A737-16DE8BF966D3}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormViewer\CLSID]
@="{2F4D6C5A-231C-486A-A737-16DE8BF966D3}"
[HKEY_CLASSES_ROOT\RFaxVwrCtrl.FormViewer\CurVer]
@="RFaxVwrCtrl.FormViewer.1"
[HKEY_CLASSES_ROOT\RFComAPI.FaxServer]
@="FaxServer Class"
[HKEY_CLASSES_ROOT\RFComAPI.FaxServer.1]
@="FaxServer Class"
[HKEY_CLASSES_ROOT\RFComAPI.FaxServer.1\CLSID]
@="{D7CA3941-DA83-4C87-949A-60DF378DD68E}"
[HKEY_CLASSES_ROOT\RFComAPI.FaxServer\CLSID]
@="{D7CA3941-DA83-4C87-949A-60DF378DD68E}"
[HKEY_CLASSES_ROOT\RFComAPI.FaxServer\CurVer]
@="RFComAPI.FaxServer.1"
[HKEY_CLASSES_ROOT\RFScan.Scanner]
@="Scanner Class"
[HKEY_CLASSES_ROOT\RFScan.Scanner.1]
@="Scanner Class"
[HKEY_CLASSES_ROOT\RFScan.Scanner.1\CLSID]
@="{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}"
[HKEY_CLASSES_ROOT\RFScan.Scanner\CLSID]
@="{A78B292D-6FAF-4ED5-ADDC-CAFEDFFD630A}"
[HKEY_CLASSES_ROOT\RFScan.Scanner\CurVer]
@="RFScan.Scanner.1"
[HKEY_CLASSES_ROOT\RFxMSx32.RFaxExchange]
@="RFaxExchange Class"
[HKEY_CLASSES_ROOT\RFxMSx32.RFaxExchange.1]
@="RFaxExchange Class"
[HKEY_CLASSES_ROOT\RFxMSx32.RFaxExchange.1\CLSID]
@="{4F85E688-D616-497B-A2E4-A86A221D0DAA}"
[HKEY_CLASSES_ROOT\RFxMSx32.RFaxExchange\CLSID]
@="{4F85E688-D616-497B-A2E4-A86A221D0DAA}"
[HKEY_CLASSES_ROOT\RFxMSx32.RFaxExchange\CurVer]
@="RFxMSx32.RFaxExchange.1"
[HKEY_CLASSES_ROOT\RightFAX.Object]
@="RightFAX Objects"
[HKEY_CLASSES_ROOT\RightFAX.Object.1]
@="RightFAX Objects"
[HKEY_CLASSES_ROOT\RightFAX.Object.1\CLSID]
@="{F846E186-061A-4960-BA14-B2B4DBC3B21E}"
[HKEY_CLASSES_ROOT\RightFAX.Object.1\Insertable]
"+"=""
[HKEY_CLASSES_ROOT\RightFAX.Object\CLSID]
@="{F846E186-061A-4960-BA14-B2B4DBC3B21E}"
[HKEY_CLASSES_ROOT\RightFAX.Object\CurVer]
@="RightFAX.Object.1"
[HKEY_CLASSES_ROOT\TypeLib\{093C0434-D10B-4BED-9E81-0B12AD755DA3}\1.0]
@="RFaxVwrCtrl 1.0 Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{093C0434-D10B-4BED-9E81-0B12AD755DA3}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxVwrCtrl.dll"
[HKEY_CLASSES_ROOT\TypeLib\{093C0434-D10B-4BED-9E81-0B12AD755DA3}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{093C0434-D10B-4BED-9E81-0B12AD755DA3}\1.0\HELPDIR]
@=""
[HKEY_CLASSES_ROOT\TypeLib\{1D6000DD-2D92-450C-A5BA-2F0F2324709F}\1.0]
@="RFxMSx32 1.0 Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{1D6000DD-2D92-450C-A5BA-2F0F2324709F}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFxMSx32.dll"
[HKEY_CLASSES_ROOT\TypeLib\{1D6000DD-2D92-450C-A5BA-2F0F2324709F}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{1D6000DD-2D92-450C-A5BA-2F0F2324709F}\1.0\HELPDIR]
@=""
[HKEY_CLASSES_ROOT\TypeLib\{BF9A9E2B-FE8B-4C15-91D5-F91D073C1241}\1.0]
@="RightFAX Object Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{BF9A9E2B-FE8B-4C15-91D5-F91D073C1241}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFObj.dll"
[HKEY_CLASSES_ROOT\TypeLib\{BF9A9E2B-FE8B-4C15-91D5-F91D073C1241}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{BF9A9E2B-FE8B-4C15-91D5-F91D073C1241}\1.0\HELPDIR]
@=""
[HKEY_CLASSES_ROOT\TypeLib\{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}\1.0]
@="RightFax Viewer 1.0 Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFaxView.dll"
[HKEY_CLASSES_ROOT\TypeLib\{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{D0DE187A-5715-4AED-9CFA-F3C46E46FB7F}\1.0\HELPDIR]
@=""
[HKEY_CLASSES_ROOT\TypeLib\{EFA785C7-1745-4C29-961C-7419075E67ED}\1.0]
@="RFScan 1.0 Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{EFA785C7-1745-4C29-961C-7419075E67ED}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\RFScan.dll"
[HKEY_CLASSES_ROOT\TypeLib\{EFA785C7-1745-4C29-961C-7419075E67ED}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{EFA785C7-1745-4C29-961C-7419075E67ED}\1.0\HELPDIR]
@=""
[HKEY_CLASSES_ROOT\TypeLib\{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}\1.0]
@="RightFax COM API Type Library"
[HKEY_CLASSES_ROOT\TypeLib\{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}\1.0\0\win32]
@="C:\\Program Files\\RightFax\\Shared Files\\rfcomapi.dll"
[HKEY_CLASSES_ROOT\TypeLib\{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}\1.0\FLAGS]
@="0"
[HKEY_CLASSES_ROOT\TypeLib\{FD0FBD6B-7484-4E50-B95A-AC5E3A5AFFAE}\1.0\HELPDIR]
@=""
Posted by:
anonymous_9363
15 years ago
Posted by:
NetMedic
15 years ago
Posted by:
anonymous_9363
15 years ago
Posted by:
lady.d
15 years ago
Posted by:
egagnier
15 years ago
For all of you who wants to deploy Rightfax 9.4 with SMS 2003, you have to check the box "Allow users to interact with this program" in your program in the SMS Console. Don't know why but, it seems that the SETUP.EXE from Captaris is trying to show a modal dialog even if you specify the "/unattended=true /quiet=true" switches to the SETUP.EXE.
Posted by:
rob731
14 years ago
Posted by:
BerkApp
14 years ago
Posted by:
rob731
14 years ago
Heres a list of Client Application Names, hope this helps. They worked fine for me. The one in bold is what you need.
Command Description [font="akzidenz grotesk be,akzidenz grotesk"][font="akzidenz grotesk be,akzidenz grotesk"]
FaxUtil = RightFax FaxUtil
EFM = RightFax Enterprise Fax Manager
FaxCtrl = RightFax Print Driver
Outlook = RightFax Outlook Advanced Fax Extensions
MAPI = MAPI Print Driver [font="akzidenz grotesk be,akzidenz grotesk"][font="akzidenz grotesk be,akzidenz grotesk"]
VIM = VIM Print Driver
AutoReply = RightFax AutoReply
Command Description
FaxUtil = RightFax FaxUtil
EFM = RightFax Enterprise Fax Manager
FaxCtrl = RightFax Print Driver
Outlook = RightFax Outlook Advanced Fax Extensions
MAPI = MAPI Print Driver
VIM = VIM Print Driver
AutoReply = RightFax AutoReply
Posted by:
aogilmor
14 years ago
ya!!!! (sound of riotous applause)
Finally SOMEBODY actually suggests looking at the vendor documentation.
And shame on all of you people who don't even search the vendor docs or worse, encourage glass bottle or old shoe solutions.
Finally SOMEBODY actually suggests looking at the vendor documentation.
And shame on all of you people who don't even search the vendor docs or worse, encourage glass bottle or old shoe solutions.
Posted by:
Helpy
14 years ago
Hello AppDeploy. Has anyone had any experience using vbs to package and deploy RightFax 9.4 and it's Service Release 5 update? I have had success silently installing the 9.4 Right Fax client and uninstalling it but I am running into trouble with the update. When I attempt to use the same switches provided by the Vendor PDF (/quiet=true, /unattended=true, etc.) I find that the .exe terminates prematurely. The differences are Update.exe used by the service release versus the setup.exe used by the 9.4 client.
I have thoroughly scoured the internet via Google for solutions or vendor support but have come up dry on information regarding Service Release 5. Any assistance would be appreciated.
I have thoroughly scoured the internet via Google for solutions or vendor support but have come up dry on information regarding Service Release 5. Any assistance would be appreciated.
Posted by:
ekniranjan
14 years ago
Posted by:
anonymous_9363
14 years ago
Posted by:
Helpy
14 years ago
Thanks for the replies. I was able to figure it out after breaking down my code into smaller pieces. I needed to manually end the FAXCTRL.exe and SPOOLSV.exe before the update runs and then restart them after it has completed. When the update is run manually the application is designed to find these two processes, end them, run the update and then restart them once it is completed.
Appreciate the help. Hopefully this helps someone else avoid a few headaches.
Appreciate the help. Hopefully this helps someone else avoid a few headaches.
Posted by:
anonymous_9363
14 years ago
Posted by:
Helpy
14 years ago
I found the command line switches for Service Release 5 provided by the vendor, Captaris, in the Readme file of all places. I have submitted them for approval for the Package KB page and will list them below because they are slightly different than the ones used in the original 9.4 client install.
Option
Description
/quiet
The install program runs with no user interaction.
/repair
Reinstalls the service release.
/passive
Setup displays a progress bar and will not require user input except in the case of an error.
/shutdown
To install the service release, RightFax services and processes must be shut down and then restarted after the installation is finished.
If you are running a passive or quiet installation, you must use this command to shut down and restart the RightFax services during the installation. If this command is not used, the installation will fail.
/norestart
Use this option if you do not want the install program to restart RightFax services and processes when the installation is finished.
/extract=<folder>
Specifies the destination folder where the files and folders for the service release will be extracted.
The log file “ExtractingFiles_<date_time>.log†will be created in the named folder.
Posted by:
njseq
14 years ago
Hello,
The problem with RightFax 9.4 client is that we cannot use the command line from 9.3, they changed that.
We now use a SETUP.EXE which has limited command switches and it calls the RightFax Cliente Suite.MSI to install. However we cannot call the MSI alone, we must always call the SETUP.EXE.
I miss the command line to place the LOG file into another folder not the c:\%username%\Appdata\temp (windows 7 clients) and this happens with a unattended install batch file. So I need another folder and not the profile folder because I use a system account to massive install this.
Any suggestion?
Thanks.
Kind regards,
Nuno
The problem with RightFax 9.4 client is that we cannot use the command line from 9.3, they changed that.
We now use a SETUP.EXE which has limited command switches and it calls the RightFax Cliente Suite.MSI to install. However we cannot call the MSI alone, we must always call the SETUP.EXE.
I miss the command line to place the LOG file into another folder not the c:\%username%\Appdata\temp (windows 7 clients) and this happens with a unattended install batch file. So I need another folder and not the profile folder because I use a system account to massive install this.
Any suggestion?
Thanks.
Kind regards,
Nuno
Posted by:
pjgeutjens
14 years ago
We now use a SETUP.EXE which has limited command switches and it calls the RightFax Cliente Suite.MSI to install. However we cannot call the MSI alone, we must always call the SETUP.EXE.
just gonna throw this out there, but you've already tried passing ISSETUPDRIVEN=1 to the MSI on the command line?
Posted by:
blizzster
14 years ago
Hello Guys,
Seems that Rightfax 9.4 only fails when is launched remotely.
I used the --- setup.exe /quiet=true /allowShutdown=true /add="FaxUtil, EFM" /rightFaxServer="server1"
This script works flawlessly when you launch it from the workstation you want it installed either by using a batch file or vbscript call,etc. The problem start when you try to do remote installs with SMS or PSexec. I psexec to pass the batch file to the remote machine and I can see the Setup.exe launch and the PSEXEC session will close. I modified the script so that it will wait for the setup.exe to finish before closing the session but it will just sit there and hang. The service support lady suggested me to use psexec -i ..... (-i = interactive) and that the user at the other end have to respond to finish with the install process.. This is nuts.. I spend 5hrs working on this and found out that the package is not built to be installed remotely. I might just break it appart and repackage it with Wise Studio.
Anyone else had better luck than me? I need to push this to 700 workstation. I saw someone did get it to work by modifying the msi file. I guess there is no other choice.
Seems that Rightfax 9.4 only fails when is launched remotely.
I used the --- setup.exe /quiet=true /allowShutdown=true /add="FaxUtil, EFM" /rightFaxServer="server1"
This script works flawlessly when you launch it from the workstation you want it installed either by using a batch file or vbscript call,etc. The problem start when you try to do remote installs with SMS or PSexec. I psexec to pass the batch file to the remote machine and I can see the Setup.exe launch and the PSEXEC session will close. I modified the script so that it will wait for the setup.exe to finish before closing the session but it will just sit there and hang. The service support lady suggested me to use psexec -i ..... (-i = interactive) and that the user at the other end have to respond to finish with the install process.. This is nuts.. I spend 5hrs working on this and found out that the package is not built to be installed remotely. I might just break it appart and repackage it with Wise Studio.
Anyone else had better luck than me? I need to push this to 700 workstation. I saw someone did get it to work by modifying the msi file. I guess there is no other choice.
Posted by:
Rheuvel
14 years ago
Posted by:
teh_tourist
13 years ago
I'm trying to update to 9.4 FP1 SP3 and I'm using the batch file
Setup.exe /unattended=true /allowShutdown=true /add="FaxUtil,EFM" /rightFaxServer="hcsvr03"
everything seems to run okay, no errors. But when I go to check the about.. windows in rightfax it doesn't show that it's been updated. What am I doing wrong?
Setup.exe /unattended=true /allowShutdown=true /add="FaxUtil,EFM" /rightFaxServer="hcsvr03"
everything seems to run okay, no errors. But when I go to check the about.. windows in rightfax it doesn't show that it's been updated. What am I doing wrong?
Posted by:
anonymous_9363
13 years ago
Posted by:
michaelnowell
13 years ago
We now use a SETUP.EXE which has limited command switches and it calls the RightFax Cliente Suite.MSI to install. However we cannot call the MSI alone, we must always call the SETUP.EXE.
Actually, it's a little tricky but you can call the MSI alone for this install. You have to add the additional registry keys into your MST that are generated by the Installshield installation, include some custom actions to create the RightFAX printer (and remove it during uninstall) and port, restart the spooler service and register some dll's.
We've been installing various versions of this using the MSI (with Transform) for quite a while without issue.
Posted by:
MikeStover
13 years ago
RightFax 9.4 FP1 SR3 introduced support for Microsoft Windows Installer (Msiexec.exe). Open Text recommends its usage over setup.exe.
Open Text has published a new Installation Guide that details the usage and switches available with the Msiexec.exe. Check out that guide for even more information.
To silent install on a client machine, a typical command line would be:
msiexec.exe /i "RightFax Product Suite - Client.msi" /qn REBOOT=ReallySuppress RUNBYRIGHTFAXSETUP=2 CONFIGUREFAXCTRL=1 ADDLOCAL="FaxUtil,FaxCtrl,EFM,Outlook" INSTALLDIR="C:\Program Files\RightFax" RFSERVERNAME=<myservername>
Open Text has published a new Installation Guide that details the usage and switches available with the Msiexec.exe. Check out that guide for even more information.
To silent install on a client machine, a typical command line would be:
msiexec.exe /i "RightFax Product Suite - Client.msi" /qn REBOOT=ReallySuppress RUNBYRIGHTFAXSETUP=2 CONFIGUREFAXCTRL=1 ADDLOCAL="FaxUtil,FaxCtrl,EFM,Outlook" INSTALLDIR="C:\Program Files\RightFax" RFSERVERNAME=<myservername>
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.