Upgrading from Windows Server 2008r2 to 2012r2

We have an existing Windows Server 2008R2 which Crystal Reports delivering reports via our website. 
On the Windows 2008 server, we used Crystal Reports version 2008.
I am now updating my Windows Server to 2012, and because Crystal Reports 2008 does not work on this server, I am trying to use the latest version.  (I downloaded the trial -- once it works, I will purchase.)
Below is the Web.config file I have on the 2008 server (and this works on the 2008 server
<?xml version="1.0"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    \Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
    <appSettings>
        <add key="CrystalImageCleaner-AutoStart" value="true"/>
        <add key="CrystalImageCleaner-Sleep" value="60000"/>
        <add key="CrystalImageCleaner-Age" value="120000"/>
    </appSettings>
    <connectionStrings/>
    <system.web>
        <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.
        -->
        <compilation debug="false">
            <assemblies>
                <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                <add assembly="CrystalDecisions.ReportAppServer.CommonObjectModel, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.ReportAppServer.DataDefModel, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.ReportAppServer.ObjectFactory, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.ReportAppServer.ReportDefModel, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="CrystalDecisions.CrystalReports.TemplateEngine, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.RegularExpressions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="CrystalDecisions.Data.AdoDotNetInterop, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/></assemblies></compilation>
        <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
        <authentication mode="Windows"/>
        <!--
            The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.
        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
        <httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></httpHandlers></system.web>
</configuration>
What do I need to install and what changes to the web.config do I need to make to have my reports continue to display via my website?

First, you need to download the new SDK - it's no longer available as part of the Crystal Reports install.
To do this go here:  http://scn.sap.com/docs/DOC-7824.  Download and install the latest version of the "Install Executable" to get integration into Visual Studio.  The other installs are the runtime installs - select the appropriate runtime install for your environment.
Now you have to upgrade your application to VS 2010 or newer.  There are some changes to the SDK, so you can't just replace the assemblies in your existing application's configuration.  DO NOT compile as "any CPU", you need to specifically target either x86 (32-bit runtime) or x64 (64-bit runtime).  If you target the 32-bit runtime (which will run on a 64-bit server!) and you're using ODBC, you'll need to create 32-bit ODBC connections on the server.  In any case, when working in VS, you'll need 32-bit ODBC connections for testing.
-Dell

Similar Messages

  • Can't Open Reports after upgrading to Windows Server 2008R2

    Since upgrading to Windows Server 2008R2, I am unable to use File > Open to browse my network for existing Crystal Reports.  I am able to access reports from my recent reports list.  If I use Windows Explorer to try to find/open an existing report file, I'm prompted for the installation disk.  Is this a known issue?  Thanks for your help.

    SP2 fully supports Windows 2008 Server, here's a link to the [platforms PDF|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/00225757-ab5c-2c10-c1a8-fb9f9f0f4ac2&overridelayout=true] file:
    As for permissions this is something you need to setup with Windows and file sharing.
    Thank you
    Don

  • Upgrade from Windows Server 2012 Active Directory to Windows Server 2012 R2 Active Directory

    We are currently running Windows Server 2012 Active Directory and would like to upgrade to Windows Server 2012 R2 AD. Is it OK to just do an in-place upgrade, or is it advisable to build new domain controllers on R2? Are there any guides or articles anyone
    can recommend?

    Hi Ginandtonic,
    To upgrade DC(Domain Controller) from windows server 2012 to windows server 2012 r2, please refer to these articles:
    Upgrade from windows Server 2012 to 2012 R2                                 
    Upgrade Active Directory from 2012 to 2012 R2
    I hope this helps.
    Best Regards,
    Anna

  • Upgrade from Windows Server 2008 R2 SP1 to Windows Server 2012 R2

    Hi, I was trying to setup a new DC for our company, originally it's DC is Windows Server 2003 SP2, we decided not tomigrate it and instead build a new one from scratch which is Windows Server 2008 R2 SP1. I was able to set it up, perform windows updates,
    added roles, perform Domains and Trusts, etc
    When suddenly our global standards shifted to Windows Server 2012 R2, so instead of creating another server from scratch, this is the time to upgrade from 2k8 to 2K12 R2, besides the MAPtool which I've downloaded to check for prerequisites, etc, are there
    other things I need to be aware of? backups? etc.
    Regards,
    Jeff
     

    Hi,
    You can
    insert Windows Server 2012 R2 DVD into the DVD-ROM and click onRun
    Setup.exe. You can refer to the link below:
    Windows Server 2008R2 in-place upgrade to Windows Server 2012/2012R2
    Note:
    Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure
    that you completely understand the risk before retrieving any suggestions from the above link.
    Best regards,
    Susie

  • Issues when Sharepoint Services 3.0 OS upgraded from windows server 2003 standard to windows server 2003 enterprise

    In my sharepoint 2007, I have upgraded the OS from windows server 2003 standard to windows server 2003 enterprise R2 SP2. After the OS upgrade when I run the central admin it's showing this error "Microsoft Windows Sharepoint Services 3.0 Error 2908
    error has occurred" screen shot below of the error. 
    Any help?

    Not sure I can help.  In general MS does NOT support the upgrade of the Underlying OS without re-installing SharePoint.  Many of the prerequisites that were installed when SharePoint was installed are OS specific.  You can either contact
    Product Support and see if they can provide any assistance or re-install SharePoint from scratch and re-attach/migrate all the existing databases with content into the new system on the new OS.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • In place upgrade from Windows Server 2000 to Windows Server 2003 ADS

    Hi...is anyone aware of any issues with performing an in place upgrade from Windows 2000 Server to 2003 Server, which is currently running ESSBASE? Please advise, if you have any information. Thank you.

    You can post your question in ESSBase forum
    Essbase

  • Upgrade from Windows Server 2003 to 2008

    Hi Experts,
    We are currently running SAP BPC v 7.0 for Microsoft in a Windows Server 2003 environment. This is not a production application right now as we are doing discovery work in SAP BPC 7.0. For another project, we need to upgrade to windows server 2008.
    We are trying to figure out if the SAP BPC will still work after the upgrade. I know SAP BPC is compatible with Server 2008, but do we need to start of a fresh installation or the upgrade will work. We are trying to figure out if we should plan some time to reinstall SAP BPC and re-do the work we have done in BPC once it has been upgraded.
    Thanks a lot!
    Martin

    At this point, BPC 7.0 for Microsoft is not certified for Windows 2008.  So, if you prepare and execute the upgrade to the server OS, support may not assist if you find any issues.  We plan to be certified on Windows 2008 with the next release of 7.5 for BPC.
    Hope this helps.

  • Upgrade from Windows Server 2008 SP1 STD to Windows Server 2012 STD

    Hi,
    tried to upgrade Windows Server 2008 SP1 STD(OEM) to Windows Server 2012 STD but received message in Compatability Report
    SAYING:
    "Upgrades to this build have been disabled"
    Both OS are English and X64.
    Cant get arround this... any idea´what the problem is?

    Hi
    Try upgrading to SP2 and then you can do the upgrade, supported list below:
    http://blogs.technet.com/b/askcore/archive/2012/10/23/upgrading-to-windows-server-2012-part-1.aspx
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Post upgrade from Windows Server 2008 R2 SP1 to Windows Server 2012 R2

    Hi, I'm not sure if I've done something wrong or if i lack some steps.
    We have an existing server having Windows Server 2008 R2 SP1 as OS, DC, and DNS. I had to upgrade it based on global standards so I upgraded it into Windows Server 2012 R2.
    What I did was an online upgrade, insert the DVD installation disc and it asked for a adprep for forest and domain.
    I did both forest and domain adprep and installation continued. After reboot, it showed up errors on my local server. Please see image below:
    and when i clicked each roles under Manageability, it shows me
    Is there something I need to do to fix these red marks?
    Regards,
    Jeff

    These are the logs i've seen inside Custom Views>Server Roles>AD DS, DNS Server, and Administrative Events respectively.
    Regards,
    Jeff

  • BSOD after an in-place upgrade from Windows Server 2003 R2 to Window Server 2008

    Xylems92 wrote:Unfortunately, we cannot take this approach.We have to move to 2008 (not R2) due to a software that runs on this machine and is validated will not run on 2008 R2 and above. In order to keep validation, we can only do an inplace upgrade. If we choose to either purchase the software upgrade or revalidate the system, both approaches will cost $80k+. So i need this to work as an in place upgrade to 2008I feel your pain, but any company worth their salt will (meaning the vendor) should know that you cannot simply perform an in-place upgrade of a Server OS.
    Really the proper method is to backup everything, format and install Server 2008 (are you limited to 32-bit?), restore data/reinstall software. What's the reasoning for the upgrade? 2003 EOL or something else?
    Do you have a guarantee that the software will even work on...

    Hello everyone. 
    We seem to be having an issue when doing an in place upgrade on our windows 2003 R2 server to go to Windows 2008. Every time we try and do the upgrade, once the server reboots it blue screens with no real information. Just mentioned to try and do a check disk to check for hard drive issues.
    It gives us the option to go the earlier version of windows (back to 2003 R2) but nothing we have tried has succeeded so far.
    Does anyone have any suggestions?
    Regards,
    -Xylems92
    This topic first appeared in the Spiceworks Community

  • I WANT TO UPGRADE WINDOWS SERVER 2008R2 STANDARD EDDITION SP1 TO ENTERPRISE SP1

    I HAVE INSTALLED WINDOWS SERVER 2008 SERVICE PACK1 TO ENTERPRISE SERVICE PACK1
    C:\Users\Administrator>DISM /online /Get-CurrentEdition
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    Image Version: 6.1.7600.16385
    Current edition is:
    Current Edition : ServerStandard
    The operation completed successfully.
    C:\Users\Administrator>DISM /online /Get-TargetEditions
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    Image Version: 6.1.7600.16385
    Editions that can be upgraded to:
    Target Edition : ServerDataCenter
    Target Edition : ServerEnterprise
    The operation completed successfully.
    C:\Users\Administrator>DISM /online /Set-Edition:ServerEnterprise /ProductKey:XXXX-XXXX-XXXX-XXXX-XXXX
    Deployment Image Servicing and Management tool
    Version: 6.1.7600.16385
    Image Version: 6.1.7600.16385
    Error: 50
    Setting an Edition is not supported with online images.
    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log

    “Setting an Edition is not supported with online images” More than likley the reason you are getting this error is because the server you are trying to inplace upgrade has the AD DS Role installed and is acting as a
    domain controller. The only way to upgrade this one is to move the FSMO Roles to another server, then DCpromo the server, and make it a member server and then run the command, and then you can go ahead and make the server a Domain Controller once the edition
    of Windows has been changed.
    http://rickrbyrne.wordpress.com/2011/06/16/in-place-upgrade-from-windows-server-2008-r2-standard-to-enterprise/
    UPDATE: One important note, as I'm reminded by Xaegr in the comments, is that
    the server can't be a DC at the time of upgrade.  If you demote a DC using dcpromo, you can upgrade, then re-promote it (you may need to migrate FSMO roles, etc, in order to succesfully demote.)
    http://blogs.technet.com/b/server_core/archive/2009/10/14/upgrading-windows-server-2008-r2-without-media.aspx<o:p></o:p>
    http://mariusene.wordpress.com/

  • Unable to do Bare Metal Restore on Windows Server 2008R2 Backup from USB Seagate Backup Plus Harddrive

    I have done a windows full server backup on to an external Seagate HDD on a Dell PowerEdge T110 II Server running Windows Server 2008 R2
    I want to clone this and do a Bare Metal Restore on an identical server at home which has Windows Server 2008 R2 on it.
    I boot from the Windows DVD provided, select repair however windows Server 2008 R2 will not find the image of the Seagate drive. The Seagate drive can be seen on the server otherwise. I guess there are options to load the driver, but I don't see them.
    Please help. Kind of stuck here
    Thanks

    I am using a windows server 2008R2 disk to boot up. Both the servers have windows server 2008R2 on them. I have two licenses for each of the servers. I want to use the server at home as a backup server in case the server in office  goes down. I used
    windows server backup to backup the server at work to a portable USB hard drive. I bought the hard drive home and want to clone the server at work. I heard bare metal restore is the best way to do this. So I booted the server at home with the windows server
    2008 r2 disk that I have and clicked repair. I had attached my seagate portable drive to the usb port so that the server could find the image of the server at work, however the server cant find the hard drive or the server image. Is it a problem with my usb
    hard drive? Do I need a specific type of usb hard drive to do server image backups?
    If I let my server at home boot regularly and it comes up, it can see the image on the hard drive so I dont know how to do the bare metal restore. I know it can be done becuase my IT guy did it when he set up both the servers. I just want to periodically
    clone them so make sure the server at home is updated with the settings of the server at work.
    Thanks for any help here

  • Upgrade from Windows Home Server 2011

    Even though Windows Server 2012 Essentials is being mentioned as a replacement for Windows Home Server 2011, there doesn't seem to be any documentation or mention of can you upgrade from Windows Home Server 2011 to Windows Server 2012 Essentials?
    Will this work with the beta download and will we then be able to upgrade this version to the RC and/or release version?
    As you may guess I have a Windows Home Server 2011 and am interested in looking at Windows Server 2012 Essentials to see what it offers me. The storage spaces sounds exactly what I want to replace the drive extender on the previous home server version. The
    problem is that I don't mind sacrificing my present server box by installing the beta but it would be nice if it actually retained what settings it could via an upgrade option, which I could then have a chance of using with a proper release version.
     

    Just clarifying about the 'upgrade path' and 32b vs 64b.
    Yes, no in-place upgrade. However, one could theorise about some form of 'migration' being possible, where the list of users, the content of your shares, the current backups, would be 'moved' from old box to new.
    I was in fact pretty sure no such process existed. (Wouldn't it be neat though? AND in future _at least theoretically_ possible, using processes similar to SBS AD migration.)
    From this perspective putting the new box onto the network is similar to replacing WHSv1 with WHS11, in that nothing is carried over. No gain, but no lesser. Working on currently available information.
    The later comment about the work laptop is, TTBOMK, a resounding 'NO'. When attempting to join a member of another AD the 'connect' process stated 'You must 1st remove the PC from the other AD'. I haven't tested this extensively but believe that PC's _capable_
    of operating in an AD (Pro, vs Home, versions) will be made members of the WS12E AD. It is only PC's that do not have 'domain join' capability that are left in workgroup mode.
    TTBOMK, AFAICS, so far, etc...

  • 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

  • Running an External Program from Batch on Windows Server 2008R2 Failing

    Hi,
    I am trying to run an external program from a batch job and it is failing with this error message:
    Ext. prog.: ERROR: Input redirection is not supported, exiting the process immediately.
    Ext. prog.: External program terminated with exit code 1
    The program I am trying to run is:  timeout
    This command works on the OS: timeout -t 30
    I have setup the step to look like this:
    Under External Program:
    -Name: timeout
    -Parameter: -t 30
    I have also tried:
    -Name: timeout -t -30
    -Parameter:
    I am running ECC 6.04 on top of Windows Server 2008R2 with SQL Server 2008R2. 
    When we were running in Server 2003 on ECC 6.0 I was able to use the Sleep program just fine in the same manner.  I have found out that sleep is not available in server 2008.  It was replaced with timeout.
    After an update to EHP4 and moving to Windows Server 2008R2, Is there any pre-work that needs to be done on the SAP or Windows side before we can run external programs?
    Thank you,
    Neil

    > SAPService<SID> and <SID>ADM both have Administrator rights for the server.
    > That means they should have full access.
    No - this is no more true like that since Windows 2008, it's a bit more complex:
    http://en.wikipedia.org/wiki/User_Account_Control
    > Where would you setup the permission/policy to "interact with the desktop"?
    Add the policy using group policy editor (gpedit.msc)
    Markus

Maybe you are looking for