Windows 2003 and windows 2008 for applications server

hi all.
i want to know about windows that which one is better for application server 10 R2.
which one is better windows server 2003 or windows 2008?
please if anyone knows about the difference and about the performance please help me out thanks.
Any suggestion?
sarah

Well, Sarah, I have used both and I would recommend that Win2K3 is better, not because any fault of the iAS from Oracle but due to some quirks of the Win2K8. There are many updates available for the Win 2003 and it is well patched. To be honest, I have been using Oracle iAS for the last 5 or so years and seriously think that it is not that great product from Oracle and when combined with Windows OS, it really sucks. I have, that is why shifted my iAS to Linux and one to Solaris.
best regards

Similar Messages

  • Windows 2003 and windows 7 access compability

    Hi,
    I am now using IBM server with windows 2003 32 bit operating system and clients are windows xp and windows 7. I want to know that if I convert all clients to windows 7. Is there any connectivity/accessing issues to server.
    Is there any compability / accessing issues within windows 2003 and windows 7?
    Thanks in advance

    Hello,
    Windows Server 2003 is going out of support 2015.
    Windows 7 works together with it without  problems.
    If this is a domain you have to be aware that GPO settings for Windows 7 should be configured from a Windows 7 machine with RSAT installed, otherwise lot of settings are not available within Windows Server 2003.
    Also you have to think about server stored profiles, if used, as the .V2 profiles are used with Windows 7 and the older profiles will not work for users logging on to the Windows 7 machines.
    Maybe there is more to consider but therefore the information you have provided is too less.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • Windows 2003 and windows 2008 for forms

    hi all.
    i want to know about windows that which one is better for forms server.
    which one is better windows server 2003 or windows 2008?
    please if anyone knows about the difference and about the performance please help me out thanks.
    sarah

    hi
    Thanks for reply but i think forms forum are still alive and i do not think so if anyone reply me in a sec in other forum.Anyways thinks for suggestions.
    well i want to install forms R2 in windows server 2008 but do not know about the performance may be there will be bugs?
    i was thinking may be it will be like windows vista or windows 7 because some softeware is not supportable with windows 7 and with windows vista...
    any suggestion?
    sarah

  • Appending Tiff files works on Windows 7 and Windows 2012 but doesn't work on Windows 2003 and Windows 2008

    Please help me! The code below creates perfect output file son windows 7 and 2012 but on windows 2008 and win 2003 the generated images are corrupted without generating any exception during the process.
    Both win 2008 and win 2003 are up to date. What do I have to install? Some hotfix? Please help me I'm stuck.
    public void appendTiffs(string tiff1inputFilePath, string tiff2inputFilePath, string outputFilePath)
                Stream imageStreamSource = null;
                try
                    //Prepare encoders:
                    System.Drawing.Imaging.ImageCodecInfo encoderInfo = getEncoderInfo("image/tiff");
                    System.Drawing.Imaging.EncoderParameters encoderParams = new System.Drawing.Imaging.EncoderParameters(2);
                    System.Drawing.Imaging.EncoderParameter compressionEncodeParam =
                        new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.Compression, (long)System.Drawing.Imaging.EncoderValue.CompressionLZW);
                    System.Drawing.Imaging.EncoderParameter saveEncodeParam =
                        new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.MultiFrame);
                    encoderParams.Param[0] = compressionEncodeParam;
                    encoderParams.Param[1] = saveEncodeParam;
                    int numberOfPages = getNumberOfPages(tiff1inputFilePath);
                    MemoryStream byteStream;
                    imageStreamSource = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                    System.Drawing.Bitmap sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, 0, out byteStream);
                    System.Drawing.Bitmap outputBitmap;                
                    outputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                    outputBitmap.Save(outputFilePath, encoderInfo, encoderParams);                
                    //For subsequent pages, prepare encoders:
                    saveEncodeParam =
                            new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.FrameDimensionPage);
                    encoderParams.Param[1] = saveEncodeParam;
                    for (int i = 1; i < numberOfPages; i++)
                        sourceBitmap.Dispose();
                        byteStream.Close();
                        byteStream.Dispose();
                        sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, i, out byteStream);
                        sourceBitmap.Save(byteStream, System.Drawing.Imaging.ImageFormat.Tiff);                    
                        System.Drawing.Bitmap tmpOutputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                        outputBitmap.SaveAdd(tmpOutputBitmap, encoderParams);                    
                    sourceBitmap.Dispose();
                    byteStream.Close();
                    byteStream.Dispose();
                    imageStreamSource.Close();
                    imageStreamSource.Dispose();
                    imageStreamSource = new FileStream(tiff2inputFilePath, FileMode.Open, FileAccess.Read, FileShare.Read);
                    numberOfPages = getNumberOfPages(tiff2inputFilePath);
                    for (int i = 0; i < numberOfPages; i++)
                        sourceBitmap.Dispose();
                        byteStream.Close();
                        byteStream.Dispose();
                        sourceBitmap = (System.Drawing.Bitmap)getTifPage(imageStreamSource, i, out byteStream);
                        sourceBitmap.Save(byteStream, System.Drawing.Imaging.ImageFormat.Tiff);
                        System.Drawing.Bitmap tmpOutputBitmap = (System.Drawing.Bitmap)System.Drawing.Image.FromStream(byteStream);
                        outputBitmap.SaveAdd(tmpOutputBitmap, encoderParams);
                    //Finally flush the file:
                    saveEncodeParam = new System.Drawing.Imaging.EncoderParameter(System.Drawing.Imaging.Encoder.SaveFlag, (long)System.Drawing.Imaging.EncoderValue.Flush);
                    encoderParams = new System.Drawing.Imaging.EncoderParameters(1);
                    encoderParams.Param[0] = saveEncodeParam;
                    outputBitmap.SaveAdd(encoderParams);
                finally
                    imageStreamSource.Close();
                    imageStreamSource.Dispose();

    I solved the problem. The following code works also on 2003 and 2008.
    public void appendTiffs(string tiff1inputFilePath, string tiff2inputFilePath, string outputFilePath)
                FileStream fileStream = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read);
                ImageCodecInfo tiffCodecInfo = getEncoder(ImageFormat.Tiff);
                Encoder saveEncoder;
                Encoder compressionEncoder;
                EncoderParameter saveEncodeParam;
                EncoderParameter compressionEncodeParam;
                EncoderParameters encoderParams = new EncoderParameters(2);
                saveEncoder = Encoder.SaveFlag;
                compressionEncoder = Encoder.Compression;
                saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.MultiFrame);
                compressionEncodeParam = new EncoderParameter(compressionEncoder, (long)EncoderValue.CompressionLZW);
                encoderParams.Param[0] = compressionEncodeParam;
                encoderParams.Param[1] = saveEncodeParam;
                FileStream outputStream = new FileStream(outputFilePath, FileMode.Create, FileAccess.ReadWrite);
                Image image = Image.FromStream(fileStream);
                image.Save(outputStream, tiffCodecInfo, encoderParams);
                fileStream.Close();
                fileStream = new FileStream(tiff1inputFilePath, FileMode.Open, FileAccess.Read);
                saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.FrameDimensionPage);
                compressionEncodeParam = new EncoderParameter(compressionEncoder, (long)EncoderValue.CompressionLZW);
                encoderParams.Param[0] = compressionEncodeParam;
                encoderParams.Param[1] = saveEncodeParam;
                TiffBitmapDecoder tiffBitmapDecoder = new TiffBitmapDecoder(fileStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
                TiffBitmapEncoder tiffBitmapEncoder;
                int numberOfPages = tiffBitmapDecoder.Frames.Count;
                for (int i = 1; i < numberOfPages; i++)
                    BitmapFrame frame = tiffBitmapDecoder.Frames[i];
                    System.Drawing.Bitmap bitmap;
                    using (MemoryStream outStream = new MemoryStream())
                        tiffBitmapEncoder = new TiffBitmapEncoder();
                        tiffBitmapEncoder.Frames.Add(frame);
                        tiffBitmapEncoder.Save(outStream);
                        bitmap = new System.Drawing.Bitmap(outStream);
                        image.SaveAdd(bitmap, encoderParams);
                fileStream.Close();
                fileStream = new FileStream(tiff2inputFilePath, FileMode.Open, FileAccess.Read);
                tiffBitmapDecoder = new TiffBitmapDecoder(fileStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
                numberOfPages = tiffBitmapDecoder.Frames.Count;
                for (int i = 0; i < numberOfPages; i++)
                    BitmapFrame frame = tiffBitmapDecoder.Frames[i];
                    System.Drawing.Bitmap bitmap;
                    using (MemoryStream outStream = new MemoryStream())
                        tiffBitmapEncoder = new TiffBitmapEncoder();
                        tiffBitmapEncoder.Frames.Add(frame);
                        tiffBitmapEncoder.Save(outStream);
                        bitmap = new System.Drawing.Bitmap(outStream);
                        image.SaveAdd(bitmap, encoderParams);
                fileStream.Close();
                saveEncodeParam = new EncoderParameter(saveEncoder, (long)EncoderValue.Flush);
                encoderParams.Param[0] = saveEncodeParam;
                image.SaveAdd(encoderParams);
                outputStream.Close();
            private ImageCodecInfo getEncoder(ImageFormat format)
                ImageCodecInfo[] codecs = ImageCodecInfo.GetImageDecoders();
                foreach (ImageCodecInfo codec in codecs)
                    if (codec.FormatID == format.Guid)
                        return codec;
                return null;

  • SAP Server upgrade from Windows 2003 and 2008 R2 with Oracle Database

    Hi,
    We need to upgrade upgrade our Windows servers that are running our SAP systems from Windows Server 2003 to Windows Server 2008 R2.  We are using Microsoft Clustering for HA so an inplace upgrade seems not possible.
    Someone has suggested to us that we will need to export our database and reimport it to achieve this upgrade however but I cannot understand why this would be necessary (we are not changing the underlying filesystem!).
    Could someone please confirm whether a database export and import is required for this OS upgrade scenario?  I have done a bit of research but nothing has jumped out and now I need an answer to this quickly.
    We are running
    - ERP 6.0 NW 7.01 (soon to be 7.02 with ABAP stack only)
    - XI(PI) Java & ABAP
    - SRM (Java & ABAP)
    - Portal (Java only)
    - PLM (Java & ABAP)
    - BW (BI 7.0) (Java and ABAP)
    Thank You
    Felicity

    Hello,
    You need to go for 'Homogeneous System Copy' to achieve this, but since almost all the systems in your landscape include the Java Stack as well - so the system copy with Export/Import is to be carried out.
    Even if you are not going for file system change, but it is a Windows environment and you can't put SAP up on the target Windows (windows 2008 R2) just by copying the contents and file system from source to target. You need SAPinst to create the registry and all. - On top of that you have Java stacks involved, so for java stack you can't carry out just backup/restore method to put SAP up there on target - so you need Export/import because for java stack some OS level dump is to be collected during system copy from source and it needs to be imported on target OS.
    Are you clear on this one ?
    Read system copy guide once and Search in OSS for the Notes to check how to upgrade from Windows 2003 to Windows 2008 R2.
    Thanks

  • Remote desktop connection limit in windows 2003 administration as well as in the mixed environment of windows 2003 and 2008 servers

    RDP protocol i.e. Remote desktop connection is configured to perfrom and manage  software administration of ORACLE application and database servers which runs on windows 2003 server.   Two sessions are allowed on each of these servers for database
    administrators. The question is: 
    a) if network administrators who perform window server administration (50+) are included in
    2 sessions limit or do they manage all these servers through Console Session which is separate from the remote desktop connection limits of 2 sessions.  
    b) How is the 2 sessions  limit prescribed by microsoft (more of a licensing limit) handled in the mix environment of windows 2003 and 2008 server where all these servers are managed on the VMWARE?
    avnish sharma

    Hi Avnish,
    Thank you for posting in Windows Server Forum.
    By default any windows server will provide 2 remote session for administration purpose only. No matter which administrator is accessing that server. If you will connect the console session then 3.One server is accessed by 3 Session (console + Remote +
    Remote). When the particular server reached this limit then any working administrator will receive a message to log out as other user trying to access the session or if we had provided the setting then new user is restricted to login.
    If you want more than 2 remote desktop session than you need to purchase TS\RDS CAL, install TS\RD Licensing role, activate it first and then configure CAL on it. There are 2 types of CAL available (USER & DEVICE). You can purchase CAL according to your
    company requirements.
    Hope it helps to understand!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • BDB support for Windows Vista, WIndows 7 and Windows Server?

    Hello,
    I examine to use BDB on Windows, and I have a question.
    There's a description about supported OSs on the BDB reference guide as follows;
    Where does Berkeley DB run?
    The Berkeley DB distribution includes support for Windows/95, Windows/98, Windows/NT, Windows/2000 and Windows/XP, via the Microsoft Visual C++ 6.0 and .NET development environments.
    Does BDB distribution supports for Windows Vista and Windows Server 2003?
    And it will support Windows Server 2008 and Windows 7?
    I believe that BDB does not depend on specific function of Windows, thus there's no problem to support them...
    Regards,
    Akira

    Yes, we have a plan about BDB support for Windows Vista, Windows 7 and Windows Server. Once we are ready, we'll let you know here.
    Hi Vit,
    For Berkeley DB XML questions, please go to the Berkeley DB XML forum at: Berkeley DB XML
    By the way, I learnt there's a XP-compatible mode in Windows 7. You may want to try DB-XML with that.
    Best regards,
    Chao Huang
    Oracle Berkeley DB

  • WIndows 7 and Windows 2008 authentication failed in Windows 2003 Domain

    Hi,
    We have Domain with Windows 2003 and recently Windows 2008 Doamin controllers also added.
    We are facing authentication failure for Windows 7 and Windows 2008 Domain members when user is trying to login.
    Schema Master is on Windows 2003 and remaining roles on Windows 2008 Domain controller.
    Windows XP clients login is working fine.
    Problem si for Windows 7 and Windows 2008 Domain members login.
    Any hint/solution will be really great help.
    Pls share if you have any solutions.
    Regards:Mahesh

    Hi,
    I found some more details about issue
    Below are the events getting generated. It looks like due to encryption mismatch with Windows 2003 Domain and Windows7 and Windows 2008 clients. However i am looking for solution if someone tested this case.
    Event Type:        Error
    Event Source:    KDC
    Event Category:                None
    Event ID:              26
    Date:                     08/06/2014
    Time:                     9:41:04 AM
    User:                     N/A
    Computer:          AAAAAA
    Description:
    While processing an AS request for target service krbtgt, the account ADDADA$ did not  have a suitable key for generating a Kerberos ticket (the missing key has an ID of 2). The requested etypes were 17.  The accounts
    available etypes were 23  -133  -128  3  -140.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Event Type:        Error
    Event Source:    Kerberos
    Event Category:                None
    Event ID:              4
    Date:                     08/06/2014
    Time:                     9:34:17 AM
    User:                     N/A
    Computer:          AAAAAA
    Description:
    The kerberos client received a KRB_AP_ERR_MODIFIED error from the server ADADDFHDHDH$.  The target name used was . This indicates that the password used to encrypt the kerberos service ticket is different than that on the
    target server. Commonly, this is due to identically named  machine accounts in the target realm (DOMAINNAME.COM), and the client realm.   Please contact your system administrator.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Regards:Mahesh

  • Reviewing Windows NT Rights and Privileges Granted for SQL Server Service Accounts

    Hi Folks,
    I am an experienced .NET apps developer who has been tasked with writing a bunch of technical controls for all the SQL Server instances on a domain.
    So for the last month I have been diving in the deep end learning Powershell, dba and infrastructure tasks. This is still a work in progress, so be kind to me.. ;o)
    So the task I am stuck on is described in the section on 'Reviewing Windows NT Rights and Privileges Granted for SQL Server Service Accounts' http://technet.microsoft.com/en-us/library/ms143504(v=sql.105).aspx
    I have not been able to find cmdlets that gives me this information. I have found some exes which come frustratingly close like NTRights.exe. This lets me specify a computer name which is great, but only seems to let you set or deny permissions, not just
    list them!
    Any help with this would be very much appreciated as I am firmly stuck. As per comments above also bear in mind that up until around 1.5 months ago I had never used powershell / knew very much at all about SQL server admin etc. Feeling much more comfortable
    with them now, but much less so with Active Directory/ windows permission structures etc so please can I ask anyone kind enough to reply to try and keep the acronyms down as much as humanly possible.. ;o)
    Cheers 
    Kieron

    Hi Kieron,
    Take a look at this module, it makes permissions much easier to work with than what's currently available:
    https://gallery.technet.microsoft.com/scriptcenter/PowerShellAccessControl-d3be7b83
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Import image iso of Window 2003 and 2008R2 Server Error

    Dear All,
    I have tries many times to import Window 2003 and 2008R2 image iso from Oracle VM Server 2.2.0 to Oracle VM Manager 2.2.0, it always shows status error in Oracle VM Manager.
    Please help to give advice and solution.
    Thanks,
    Best regards,
    Heng

    ... After checking: I cannot delete my posts either.
    I can see some sort of button "Actions" at the bottom of my replies, but it seems to be missing from a 'main' post. You may want to ask this in the Forum About Forums: Forum comments

  • Windows 2003 to windows 2008 r2 migration-non dc

    Hello, 
    Am wondering how can we migrate NON DC windows 2003/2003r2 to windows 2008/2008r2 ?
    Below links explains how to do migration or prerequisites but is anyone already done this project?
    https://technet.microsoft.com/en-us/library/cc755199(v=ws.10).aspx
    Also i have found another blog about about migration windows 2003 to windows 2008, but ""IS IT ONLY FOR DC or APPLIES TO NON DC AS WELL""?
    http://blog.pluralsight.com/upgrading-to-server-2008-from-server-2003
    regards,
    Dharanesh,

    Hello,
    if the installed software is checked to work with the new OS version you can use the installation disk from the new OS version, if the architecture(32bit or 64bit could be ONLY upgraded to the same) is the same, and do an in place upgrade.
    Also keep in mind that you have to check for drivers BEFORE starting.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Problem with upgrade Windows 2003 to Windows 2008

    Hi,
    I have problem with upgrade Windows 2003 to Windows 2008 R2
    When I run installer it check compatibility drivers and programs after that appear message that I need to uninstall  "adaptec storage manager" but I already remove this driver from the system and registry.
    Any ideas to solve this problem?
    My server it's IBM System x3500
    Regards 

    Not sure if this issue was solved or no longer relevant, but I had the same issue with the same IBM x3500 server type.
    Based on the SETUPACT.LOG output from the Server 2003 to 2008 upgrade compatibility check, the problem was that the driver AACMGT.SYS is unsigned, and hence not acceptable for running in Windows Server 2008.
    AACMGT.SYS is a part of IBM ServeRAID but unfortunately, even the latest versions 9.3 to not seem to update or replace this file. It's also possible this file is a residue of an earlier, deprecated version of ServeRAID, I don't know.
    In the end, to get passed the Upgrade check hard stop, I did this, though I'm not sure if all steps are needed:
    0. Make sure you have a system backup in case you break something doing this steps. If you do break your system and cannot recover from backups, it's not my fault!
    1. Go into Device Manager --> Disks and check the Driver properties for the disks on your system. You might have AACMGT.SYS listed for some/all disks and also listed as unsigned. 
    2. Uninstall IBM ServeRAID from the system, just in case
    3. Do into Device Manager and go under Disks, and manually Uninstall all the disks in the list including "AdaptecArray SCSI Disk" and some other secondary. I did not reboot right away.
    4. Go to console, go into C:\WINDOWS\SYSTEM32\DRIVERS, and rename AACMGT.SYS to something else. 
    5. Reboot the system and hope it still boots. Go into Device Manager -> Disks and make sure that AACMGT.SYS is no longer listed.
    6. Run the 2003 to 2008 Upgrade process again. The Compatibility checker should no longer flag "Adaptec Storage Manager" as a blocker.

  • Can we convert Scheduled tasks in Windows 2003 to Windows 2008 Automatically

    Can we convert Scheduled tasks in Windows 2003 to Windows 2008 Automatically. what is the simpler way to convert it

    ... so migration of scheduled tasks from windows 2003 to windows 2008 is not possible.
    sainath anal
    If that is true, then what is the following TechNet article discussing?
    http://technet.microsoft.com/en-us/library/dd363704(v=ws.10).aspx
    Excerpt:
    Task Scheduler Backward Compatible Module Status
    Applies To: Windows Server 2008 R2
    The backward compatibility module is used by Task Scheduler to register and run tasks that were created to run on Windows Server 2003, Windows XP, and Windows 2000.

  • On 6u13, new plug-in fails to load on Windows 2003 and IE7

    I'm attempting to load an applet in IE7 with an OBJECT tag in Windows 2003. This is a mature product that has, for this release, moved from 5 to 6. The CLSID was changed from the CAFEEFAC one for any version of 5 to the one for any version of 6. Java 5 version worked fine on Windows 2003. Now, on some, but not all, of our 2003 systems the ActiveX control for the new Java Plug-in fails to load.
    These configurations work:
    - Windows XP and any Java and any IE
    - Windows 2003 and Java5 and any IE
    - Windows 2003 and Java6, old plug-in, and any IE
    - Windows 2003 and Java6 and APPLET tag and any IE
    This one doesn't...on some machines:
    - Windows 2003 and Java6, new plug-in, IE7, OBJECT tag
    This is not a security problem. If I turn off the new style plug-in in the control panel, it works. However, I'd really like to avoid doing this, as the new plug-in has much needed features. Also, the APPLET tag works where the OBJECT tag doesn't. I can implement this change if needed, but it would be fairly painful and I'd prefer to avoid it.
    Does anyone know why this might be happening? Is there a good way for me to diagnose this? The browser is quite silent as to what the error might be.
    I appreciate any help. This one is truly vexing me!

    Okay, I'm wrong...I thought I could move to APPLET tags...I cannot. LiveConnect from JavaScript to Java does not support APPLET tags, only OBJECT tags. This makes my problem worse, as I don't have any recourse so far, except to disable the new plugin.
    However, this did lead to a clue: disabling the new plugin caused it to work again. When the new plugin was re-enabled to see it fail again, much to my surprise, it worked! Does anyone know what flipping that option actually does? Registry change or something else?

  • How can I quickly view pdf files like I can do with Windows Picture and Fax viewer for jpg files?

    How can I quickly view pdf files like I can do with Windows Picture and Fax viewer for jpg files? I need to look at several thousand PDF files. It takes too long to open each one individually. The only thing I could think of is combining them into large groups and then using the Navigation index. But I like the way windows Picture and Fax Viewer does it because you can keep the files separate. Combining PDFs causes loss of individual file names. That would be a problem since I do need to have the individual file names.

    Windows Picture and Fax Viewer is a DLL and is started via a rundll32.exe call and can't be set as an application to handle images in Firefox 3 and later versions.
    Try to set Windows Picture and Fax Viewer as the default viewer in Windows, then it should be listed automatically in the Mozilla Firefox Browse dialog.
    *http://www.winhelponline.com/articles/115/1/Windows-Picture-and-Fax-Viewer-as-the-default-viewer-in-Mozilla-Firefox.html
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

Maybe you are looking for