Windows server 2003 and 2003

Windows server Blue Screen appears What we do tell me,   What is meant By BSOD how can i solve this problem

Hi Sir,
For BSOD , you may analyze them with Debugging Tools by yourself. You can install it and it’s Symbol Packages from the following link: 
http://www.microsoft.com/whdc/Devtools/Debugging/default.mspx
WinDbg will tell you the possible cause. For more information, please read Microsoft KB Article: 
How to read the small memory dump files that Windows creates for debugging 
http://support.microsoft.com/kb/315263
Best Regards,
Elton Ji
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 Subscriber Support, contact [email protected] .

Similar Messages

  • How do you repair ntoskrnl.exe error or system error in windows server 2008 and 2012

                              
    hi,
    can you repair system file errors like  ntoskrnl.exe in windows server 2008 and 2012  like   like before  in windows server 2003 ?
     the steps were  repairing ntoskrnl.exe  error in windows server 2003
    1- have a 2003 cd and from that cd  start recovery console and copy from i386 directory ntldr and ntdetect.com to  windows /system32 directory on the  server and then repairing
    2- MBR with fixmbr command  and then  rebuild BOT.INI file  with bootcfg/rebuild . 
    now my question  is how you repair or solve such problem with ntoskrnl.exe error  in windows server 2008 and windows server 2012
    thanks
    johan
    h.david

    first this wil take a lot of time for windows 2008 and 2012 ,
    and what about windows 2003 I thing this has no startup repair
    thanks
    johan
    h.david
    What will take a lot of time? Repair or clean install? These days one can standup a new VM and have an operating system on it in around 20 minutes or so.
    Correct server 2003 is file based deployment and completely different OS from repair perspective as well.
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • MSXML6.dll method"SEND" don't work in Windows Server 2012 and SQL 2008R2

    Hi all,
    I have a SP to send a WebService data
    It works fine on Windows 2008R2 server and also on Windows Server 2003.
    moving it on Windows Server 2012 with SQL 2008R2 express (32bit) or SQL 2012 express (32bit), it doesn't work anymore.
    Below the SP.
    -- =============================================
    -- Author: Giancarlo MADA Service 2008
    -- Create date: 09/09/2008
    -- Description: Web Service Interface
    -- =============================================
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest]
    @URI varchar(2000) = '',
    @methodName varchar(50) = '', -- POST, GET
    @requestBody varchar(8000) = '', -- XML Document envelope
    @SoapAction varchar(255),
    @UserName nvarchar(100), -- Domain\UserName or UserName
    @Password nvarchar(100),
    @responseText varchar(8000) output
    as
    SET NOCOUNT ON
    IF @methodName = ''
    BEGIN
    select FailPoint = 'Method Name must be set'
    return
    END
    set @responseText = 'FAILED'
    DECLARE @objectID int
    DECLARE @hResult int
    DECLARE @source varchar(255), @desc varchar(255)
    EXEC @hResult = sp_OACreate 'MSXML2.ServerXMLHTTP.6.0', @objectID OUT
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Create failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- open the destination URI with Specified method
    EXEC @hResult = sp_OAMethod @objectID, 'open', null, @methodName, @URI, 'false', @UserName, @Password
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Open failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set request headers
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Type', 'text/xml;charset=UTF-8'
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set soap action
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'SOAPAction', @SoapAction
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @len int
    set @len = len(@requestBody)
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Length', @len
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- send the request
    EXEC @hresult = sp_OAMethod @objectID, 'send', NULL, @requestBody
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Send failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @statusText varchar(1000), @status varchar(1000)
    -- Get status text
    exec sp_OAGetProperty @objectID, 'StatusText', @statusText out
    exec sp_OAGetProperty @objectID, 'Status', @status out
    select @status, @statusText, @methodName
    -- Get response text
    exec sp_OAGetProperty @objectID, 'responseText', @responseText out
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'ResponseText failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    destroy:
    exec sp_OADestroy @objectID
    SET NOCOUNT OFF
    The underlined portion is the one that gives error, reported below.
    "Msxml6.dll 0x80070057 The parameter is incorrect. Send failed POST"
    Previously the SP used MSXML3.dll and also with that it gives the same problem.
    I can't understand what the wrong parameter is.
    Even because, as mentioned at the beginning, everything works fine on windows server 2008R2 and Windows Server 2003
    Some ideas?

    Hello, 
    We have built a dll via CLR on the database. 
    Below is the code.
    If you want to send the file SOAP.dll. Give me an e-mail ..
    USE MydatabaseGO
    /****** Object: SqlAssembly [SOAP] Script Date: 03/05/2014 12:59:14 ******/
    CREATE ASSEMBLY [SOAP]
    AUTHORIZATION [dbo]
    FROM MyPath\SOAP.dll
    WITH PERMISSION_SET = EXTERNAL_ACCESS
    GO
    USE Mydatabase
    GO
    /****** Object: StoredProcedure [dbo].[spmd_HTTPRequest3] Script Date: 03/05/2014 12:53:32 ******/
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest3]
    @URI [nvarchar](4000),
    @methodName [nvarchar](4000),
    @requestBody [nvarchar](4000),
    @SoapAction [nvarchar](4000),
    @UserName [nvarchar](4000),
    @Password [nvarchar](4000),
    @responseText [nvarchar](4000) OUTPUT
    WITH EXECUTE AS CALLER
    AS
    EXTERNAL NAME [SOAP].[StoredProcedures].[spmd_HTTPRequest3]
    GO
    Now call the new SP called spmd_HTTPRequest3
    By..

  • Hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem

    hyper link of public image(hyperlink or image) can not be saved on windows server 2012 and sharepoint 2010 problem, is this a bug?
    thanks for any reply.
    Rosone

    It is not a bug, you might be using IE in Windows server 2012 and and browser might be restricting your site actions to respond properly.
    Check this in a different browser or access site in a differ OS.
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • What is the most powerful books for Windows server 2008 and R2?

    Hi,
    There are many books out there that cover Windows server 2k8 and its R2 successor but i wonder which ones to focus on. In the same time, all books are for one purpose, "Windows Server 2008". Each author has his/her own view on the platform. I don't
    want to read them all just to avoid confusions and complications.
    These are the list of books that i have along with books that i finished reading them:
    Exam 70-640 Configuring Windows Server® 2008 Active Directory® (Finished this)
    Exam 70-642 Configuring Windows Server 2008 Network Infrastructure (Finished this)
    Exam 70-643 Configuring Windows Server 2008 Application Infrastructure
    (Finished this)
    Exam 70-646 Windows_Server__2008_Server_Administrator_Second_Edition (Finished this)
    Mastering_Windows_Server_2008_R2 (Finished this)
    McGraw.Hill.Microsoft.Windows.Server.2008.Administration.Feb.2008
    McGraw.Hill.Microsoft.Windows.Server.2008.The.Complete.Reference.Feb.2008
    OReilly.Windows.Server.2008.The.Definitive.Guide.Mar.2008
    Sams.Teach.Yourself.Windows.Server.2008.in.24.Hours.May.2008
    Sybex.MCTS.Windows.Server.2008.Active.Directory.Configuration.Study.Guide
    Windows Server 2008 Active Directory Resource Kit (Finished this)
    Windows Server 2008 Networking and Network Access Protection (Finished this)
    Windows Server 2008 Unleashed
    Windows Server 2008 R2 Unleashed
    Do you think the unfinished books worth reading?
    Appreciate your help.

    Thank you for the reply. My goal is to read everything (ins and outs) about Win 2008 and R2 platforms before i jump into Win 2012. I have pretty good experience in certain roles in Win 2008 such ADDS and ADCS. As clarified, i've finished a good number of
    books but i want to make sure that i didn't miss a single piece of information that maybe covered in another book.
    Honestly, i find the Technet docs are informative but daunting. On the other hand, books written by authors are more friendly because authors can throw jokes while explaining a certain technology, which makes the reader more attracted to the topic. In addition,
    examples, practices, labbing, and quizzes in the books are more fun.

  • How are Windows Server Backup and Command Line Tools used in vCSHB installation?

    How are Windows Server Backup and Command Line Tools used during the installation of vCSHB?  Is it required in all types of deployments (PtoV, VtoV, PtoP)? Is it used to create the files that are put in the file share for the second node to use during vCSHB installation or is it only used during a vCSHB clone operation of a Physical to Physical deployment?  Are these tools not used in some deployments?

    You need Windows Server Backup installed on source and destination, and during the installation of vCSHB the installer will invoke the wbadmin (Windows Server Backup Utility) and will backup configuration and application data (application data is optimal but can decrease the sync time after installation of secondary node). On the secondary node you will need only run the vCSHB installer and everything will be restored.
    Check this blog entry for some more info about some problems in P2P deployment: http://www.vcoportal.de/2013/12/vmware-vcenter-server-heartbeat-restore-on-a-second-node-a-journey/

  • It is compatible Obi 11g  with Windows Server  2012 and Sql Server 2012?

    Hi every
    Please help with two questions.
    1. - Obi 11g is supported on Windows Server 2012 and SQL Server 2012?
    There a compatibility matrix which mention compatibility with versions 2012?
    2. - is feasible to install Obi 11g in separate server and install weblogic on another server?
    I appreciate the prompt response
    Regards
    Pedro

    Hi Pedro,
    As of November 2012 Compatibility Matrix released by Oracle for OBI 11.1.1.x Windows 2012 and SQL Server 2012 were not supported. It was supported on 2008 Windows and SQL Server.
    We can have weblogic and OBI server's on 2 different machines. The approach is to opt software only install. the link below will give more details:
    http://obieeelegant.blogspot.com/2012/07/obiee111160-software-only-installation.html
    Let me know if this helped.
    Regards,
    Jay

  • Indexing .cfm files using Indexing Service on windows server 2008 and IIS 7.0

    Hi All,
    Anyone knows why .cfm files would not get indexed by Indexing Service on windows server 2008 and IIS 7.0.  This is a coldfusion website using Indexing Service for site search.  There are a lot of cfm pages indexed as unknown files.   Any clues on how this can be fixed?
    Thanks!

    You might try editing your registry so that *.cfm, *.cfc, and other ColdFusion related files are treated as text files by the Windows search feature.  See link below.
    http://www.dougknox.com/xp/tips/xp_bad_search.htm
    Disclaimer: I am not a Windows system admin.  You might try posting this question to a Windows specific forum.

  • Windows Server 2008 and SQL Server 2008 R2 - ?? for replication with Oracle

    Hello:
    I am running Windows Server 2008 and SQL Server 2008 R2 - 64 bit
    I need to replicate data between the SQL 2008 and Oracle 11.2 ?? with Oracle being the publisher
    I also would lile SqlPlus installed on the server.
    I need a definite answer as to what I should download from the Oracle download area. There are just so many packages and so many version I dont know what to download.
    Thanks

    Hi,
    Currently Microsoft Windows Server 2008 and SQL Server 2008 are not supported for SAP Business One.
    For detailed information about all supported platforms, we have the following link for your reference:
    www.service.sap.com/smb/sbo >product availability > supported platforms.
    Regarding the information on the service marketplace this is updated on a regular basis and provides the most up to date information regarding the supported platforms for Business One.
    Platforms not mentioned in this documentation are not supported.
    hope it helps,
    Regards,
    Ladislav
    SAP Business One Forum Team

  • When will Oracle 10g/11g support Windows Server 2008 and AIX6.1

    Hi all
    I'm sorry if I post it in a wrong place... But I really want to know when will Oracle 10g/11g support Windows Server 2008 and AIX 6.1?
    I've searched in metalink but found nothing useful. Is there anybody can give me a link of Oracle's roadmap for platform support?
    Thanks!

    Oracle does not announce release dates and neither
    does any other software company.But Oracle does have a very good track record of supporting their products on new windows releases extremely close to the windows release date. Clearly they can't support on an unreleased platform though. Given that the launch of Server 2008 isn't even complete worldwide yet (19th March in the UK for example) it would seem that this enquiry is a little premature.
    Niall Litchfield
    http://www.orawin.info/

  • I have problem with data transfer between Windows Server 2012RT and Windows7 (no more than 14kbps) while between Windows Sever 2012RT and Windows8.1 speed is ok.

    I have problem with data transfer between Windows Server 2012RT and Windows7 (no more than 14kbps) while between Windows Sever 2012RT and Windows8.1 speed is ok.

    Hi,
    Regarding the issue here, please take a look at the below links to see if they could help:
    Slow data transfer speed in Windows 7 or in Windows Server 2008 R2
    And a blog here:
    Windows Server 2012 slow network/SMB/CIFS problem
    Hope this may help
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    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.

  • Is there a 32 Bit edition available for windows server 2012 and windows server 2008

    Dear All,
    Is there a 32 Bit edition available for windows server 2012 and windows server 2008?
    Regards,
    Ahmed

    Hi,
    Quote:
    All editions of Windows Server 2008 R2 are 64-bit only.
    Reference link below(session Supported upgrade paths):
    https://technet.microsoft.com/en-us/library/dd379511(v=ws.10).aspx
    And based on MS official description about system requirement for Windows Server 2012/2012 R2, we may find out that they only has 64 bit OS.
    Best Regards,
    Eve Wang
    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]

  • Monthly Windows Server maintenance and patching, best practices?

    WSUS, or System Center Essentials or like that from microsoft itself, its quite good and you can delay the deployment or manage it as your needs.

    Greetings All,
    I would like to reduce our reliance on a MSP for performing server maintenance and patching and would like to know some best practices for doing updates on production servers.
    Are there programs or services out there that track Microsoft updates for Windows Server 2008+, and lists possible issues that they may cause? How do you go about monthly updates for your critical servers?
    Thanks
    This topic first appeared in the Spiceworks Community

  • How share ADSL Internet connection to all machines without RRAS but using Windows Server DHCP and DNS

    Hello!
    I have this scenario on my small network with 10 PCs (connecting from outside to inside my network):
    1) Modem with ADSL connection
    2) Wireless Router with public IP on WAN interface 
    3) Switch 
    4) Server 2012 with DC/DHCP/DNS (with 2 NICs) and others servers/desktops machines 
    I want to share internet to servers and desktops.
    I was able to share internet by 2 methods searching on google, but I am not satisfied with them:
    First method - Using the Wireless Router and its DHCP Server
    I turned on the DHCP inside the Wireless Router. All machines will get an IP and be able to go to Internet, but I don’t have the ability to control the DHCP and DNS in the router
    how I would like to have, because the server DHCP and DNS must be turned off on Windows Server.
    Second method - Using the Windows Server RRAS NAT, DHCP and DNS server
    I have 2 NICs on the server:
    NIC1 - CONNECTED TO SWITCH
    IP: 192.168.1.1
    MSK: 255.255.255.0
    GTW:192.168.1.1
    DNS:192.168.1.1
    NIC2 - CONNECTED TO WIRELESS ROUTER
    (the LAN IP of the wireless router is 172.16.0.1)
    IP: 172.16.0.2
    MSK: 255.255.0.0
    GTW: 172.16.0.1
    DNS: 172.16.0.1
    After installing and setting the RRAS with NAT at the Server, the internet began to work on all machines but at some times the internet stop to load some
    random webpages, and if you hit a couple of times the F5 button, the webpage open sometimes, but very, very slow.
    I saw other people in foruns saying that RRAS is not very good, and could cause weird things at internet connection, so, now I think the internet is horrible
    because of RRAS. After notice that internet is bad I tested it connecting a cable direct to the lan ports of the Wireless Router, and the internet works fast and perfect.
    What is the best thing to do in my case to maintain Windows Server DHCP and DNS turned on and Internet be shared without loss of quality?
    Thank you!

    Hi,
    please deploy according to this network topology. please turn off DHCP from router and use internal NAT function to share internet. Detailed configurations:
    Router part:
    LAN address: 192.168.1.1/24
    DHCP part:
    scope name : site name
    address pool: 192.168.1.3-192.168.1.254
    scope options:
    router:192.168.1.1
    DNS server:192.168.1.2
    DNS part:
    configure a forwarder to point to the public DNS address such as 8.8.8.8
    with these settings, you can maintain Windows Server DHCP and DNS turned on and Internet be shared via hardware router.
    Regards,
    Mike
    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.

  • Migrating an Oracle Forms 4.5 application from Windows Server 2000 to 2003

    We are upgrading a number of servers from Windows Server 2000 to Windows Server 2003 (Standard Edition, R2). Can we re-install Forms 4.5 on 2003 and what is involved. If not, what can we do.
    Kind regards,
    Malcolm

    Forms 4.5 has been desupported way before Windows 2003 was ever available. So, you can be sure that Forms 4.5 is not supported on Windows 2003. You could give it a try, but you could very well run into problems.

Maybe you are looking for

  • Any ideas for a fix since my external drive for my iTunes Library failed...

    I had my large iTunes Library stored on an external hard drive.  The drive has now failed and my backup isn't working correctly.  When I go to my iTunes Library on my Mac, the songs, videos etc that were stored on the external library show up but whe

  • Vista on Macbook Pro (Not Unibody)

    I'm going to upgrade my XP Boot Camp to Vista. I've run the Vista upgrade advisor, and it says it's all good to upgrade to ultimate edition. My question is this, do I get the 32 or 64bit version of Vista Ultimate? And is there much difference between

  • StarOffice 8 Update 8 screen issues.

    Ever since installing the update, my client is having problems with funny red bars popping up and obscuring random cells in spreadsheets. Anyone else have that problem? Hoping there's a workaround, since SO8U8 fixes so many other bugs, hate to have t

  • JSF and VoiceXML

    Hi, From my reading of JSF books it appears that a JSF based VoiceXML application will need custom components and renderers in order to render the output in VoiceXML. Are there plans in the near future to extend ADF to include support for VoiceXML ?

  • Insetring a Primary Key

    Hi everyone, I'm creating a relational database application. I've set up a connection to the database and created a table called member with two fields. In order to make a relational database I'm going to need to insert a primary key into the table,