Windows 8.1 client reports as "Microsoft Windows NT Workstation 6.3 (Tablet Edition)"

Hey there,
I just brought our first Windows 8.1 client into our  ConfigMgr 2012-R2 infrastructure and noticed that the Operating System and Name client attribute gets populated with Microsoft Windows NT Workstation 6.3 (Tablet Edition).
My question is, why does it also include "Tablet Edition" ? I must mention that because we do not have a Server 2012-R2 yet, the client is running in my local VMWare Workstation.
I would have expected that the client only reports "Microsoft Windows NT Workstation 6.3" like it did for previous versions. I do not have an issue with adding a % within our queries, but am just interested where the Tablet Edition comes from.
Thanks
Alex
Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or 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.
This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or MVPs.
Twitter:
@alexverboon | Blog: Anything About IT

What output do
(Get-WmiObject
Win32_OperatingSystem).Caption
(Get-WmiObjectWin32_OperatingSystem).Name
generate?
Torsten Meringer | http://www.mssccmfaq.de

Similar Messages

  • Difference between Microsoft Windows NT Workstation 6.1 (Tablet Edition) and Microsoft Windows NT Workstation 6.1

    I am trying to pull a report for all Windows 7 machines. But, i could find 2 attributes in view V_r_system that are operating_system_name_and0 and operatingsystem0 where I can get the OS information. Few machines are showing as "Microsoft Windows NT
    Workstation 6.1" on operating_system_name_and0 and few are "Microsoft Windows NT Workstation 6.1 (Tablet Edition)".
    I am so curious to know about "Microsoft Windows NT Workstation 6.1 (Tablet Edition)", so I just compared those machines with V_GS_Computer_system view to know whether these machines are a normal Laptop or Tablet based laptop. But, those are ALL
    NORMAL LAPTOPS ONLY. however, those machines OSes are showing as "Microsoft Windows NT Workstation 6.1 (Tablet Edition)".
    But, the build numbers and OS versions are same as "Microsoft Windows NT Workstation 6.1" machines. So,
    I could not find any difference between "Microsoft Windows NT Workstation 6.1" machines and "Microsoft Windows NT Workstation 6.1 (Tablet Edition)" machines in terms of models number , OS build number.
    Could someone of you please why the operating_system_name_and0 attribute shows as "Microsoft Windows NT Workstation 6.1 (Tablet Edition)" for part of the machines.

    Thanks for your reply.
    How do we check without RDP on those machines? Because, I have around 11,000 machines which are showing as "Microsoft
    Windows NT Workstation 6.1 (Tablet Edition)" out of 40,000 machines. 
    Is there a way to find that touch screen info in SCCM DB or somewhere?

  • IMac Client Reports "Bluing" Of Windows. Where Do I Begin?

    Dear Friends
    I have a client who just bought a 24" iMac. I set up his iMac for him by transferring his files from his iMac G5 to the new machine with Apple's Migration Assistant. I then ran approximately 400MB's worth of updates, including the firmware update, which I successfully applied (at least according to the machine after the subsequent reboots).
    My client, a very experienced and long-time Mac user with a PhD is business administration, reports:
    This new computer is really, really strange. Many things that I
    open (iTunes, Entourage for example), will turn baby blue and
    show the name of the app in grey. I have to click again to do
    anything. Sometimes I'm not fast enough and it turns blue again.
    After I sent the previous e-mail, I was trying to delete some
    other older e-mail. The background picture kept "flashing"
    light and dark. Then when I clicked again on Entourage, it went
    light blue. It took two more clicks before I could highlight
    the e-mails that I wanted to dump.
    However, when editing an image after each change I made, the
    image would turn blue and show it's name. During that time I
    could do nothing. Sometimes I was fast enough to click the blue
    away and do some more with the eraser before it turn blue
    again; sometimes it would come back before I could make another
    change. (The blue is transparent, so I could still see the
    scanned image.)
    The same thing occurred in iTunes when I was creating a file to
    burn for my daughter. Sometimes I was fast enough to move two
    items and sometimes not.
    I can't think of where to begin to help my client. Any suggestions are very, very welcome!
    24" iMac   Mac OS X (10.4.8)  

    I can't offer a solution, but I've seen the situation you're describing. I've had it happen to my 17" core duo iMac several times. It's usually associated with dragging a file between windows. I've wondered if OS X has some kind of gesture recognition built in. I remember reading something about it in an application manual but I don't recall the context.
    Charles Bandla
    17" iMac Intel core duo   Mac OS X (10.4.7)   1 gb ram/Garageband 3/Firewire Solo

  • Microsoft Windows Unquoted Service Path Enumeration.

    I seek for your advice in a security issue and how to mitigate this high risk vulnerability.
    Microsoft Windows Unquoted Service Path Enumeration.
    Microsoft Windows Unquoted Service Path EnumerationMicrosoft Windows Unquoted Service Path Enumeration
    Synopsis
    The remote Windows host has at least one service installed that uses an unquoted service path.
    Description
    The remote Windows host has at least one service installed that uses an unquoted service path, which contains at least one whitespace. A local attacker could
    gain elevated privileges by inserting an executable file in the path of the affected service.

    As long as we are piling on late responses, here is the script one of our talented SCCM engineers wrote to fix affected systems.  The first code snippet is used in SCCM 2007 to fix clients.  Further down are the detection and remediation scripts
    used in SCCM 2012 as part of Desired Configuration Management (DCM).
    Const HKEY_LOCAL_MACHINE = &H80000002
    const REGKEYPATH = "System\CurrentControlSet\Services\"
    Dim arrValues, Results, arrReturn()
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set objListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name IS NOT NULL and PathName LIKE '% %.exe%' and NOT PathName Like '""%'")
    For Each objService in objListOfServices
    Results = ReadRegExpandStr (HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",32)
    ' Results = ReadRegStr(HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",32)
    Results = Chr(34) & Replace(Results,".exe",".exe" & Chr(34),1,1,1)
    Wscript.Echo objService.name & " ; " & Results
    SetRegExpandStr HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",Results,32
    Next
    'Reads a REG_EXPAND_SZ value from the local computer's registry using WMI
    Function ReadRegExpandStr (RootKey, Key, ValueName, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer,strValue
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer = "."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("GetExpandedStringValue").InParameters.SpawnInstance_()
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = ValueName
    Set oOutParams = oReg.ExecMethod_("GetExpandedStringValue", oInParams, , oCtx)
    If IsNull(oOutParams.sValue) Then
    ReadRegExpandStr = "Unknown"
    Else
    Wscript.Echo Cstr(oOutParams.sValue)
    ReadRegExpandStr = Cstr(oOutParams.sValue)
    End If
    End Function
    'Creates a REG_EXPAND_SZ value in the local computer's registry using WMI
    Function SetRegExpandStr (RootKey, Key, ValueName, Value, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer = "."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("SetExpandedStringValue").InParameters.SpawnInstance_()
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = ValueName
    oInParams.sValue = Value
    Set oOutParams = oReg.ExecMethod_("SetExpandedStringValue", oInParams, , oCtx)
    End function
    'Reads a REG_SZ value from the local computer's registry using WMI
    Function ReadRegStr (RootKey, Key, Value, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer="."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("GetStringValue").InParameters
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = Value
    Set oOutParams = oReg.ExecMethod_("GetStringValue", oInParams, , oCtx)
    If IsNull(oOutParams.sValue) Then
    ReadRegStr = "Unknown"
    Else
    Wscript.Echo Cstr(oOutParams.sValue)
    ReadRegStr = Cstr(oOutParams.sValue)
    End If
    End Function
    SCCM 2012 DCM - Detection of unquoted services
    Dim strComputer, objWMIService, objListOfServices
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set objListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name IS NOT NULL and PathName LIKE '% %.exe%' and NOT PathName Like '""%'")
    If objListOfServices.Count = 0 Then
    WScript.Echo "No unquoted service path was found"
    Else
    Wscript.Echo "Found an unquoted Service Path"
    End If
    SCCM 2012 DCM remediation script
    Const HKEY_LOCAL_MACHINE = &H80000002
    const REGKEYPATH = "System\CurrentControlSet\Services\"
    Dim arrValues, Results, arrReturn(), sArgString
    Set objArgs = WScript.Arguments
    If objArgs.count > 0 then
    sArgString = wscript.arguments(0)
    If sArgString = "failed" Then
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set objSystemItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystem")
    For Each objItem in objSystemItems
    strSystemType = objItem.SystemType
    Next
    If strSystemType = "X86-based PC" then
    i = 32
    Else
    i = 64
    End If
    Set objListOfServices = objWMIService.ExecQuery("Select * from Win32_Service Where Name IS NOT NULL and PathName LIKE '% %.exe%' and NOT PathName Like '""%'")
    For Each objService in objListOfServices
    Results = ReadRegExpandStr (HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",i)
    ' Results = ReadRegStr(HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",i)
    Results = Chr(34) & Replace(Results,".exe",".exe" & Chr(34),1,1,1)
    Wscript.Echo objService.name & " ; " & Results & vbcrlf
    ' SetRegExpandStr HKEY_LOCAL_MACHINE,REGKEYPATH & objService.name,"ImagePath",Results,i
    Next
    End If
    End If
    'Reads a REG_EXPAND_SZ value from the local computer's registry using WMI
    Function ReadRegExpandStr (RootKey, Key, ValueName, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer,strValue
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer = "."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("GetExpandedStringValue").InParameters.SpawnInstance_()
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = ValueName
    Set oOutParams = oReg.ExecMethod_("GetExpandedStringValue", oInParams, , oCtx)
    If IsNull(oOutParams.sValue) Then
    ReadRegExpandStr = "Unknown"
    Else
    Wscript.Echo Cstr(oOutParams.sValue)
    ReadRegExpandStr = Cstr(oOutParams.sValue)
    End If
    End Function
    'Creates a REG_EXPAND_SZ value in the local computer's registry using WMI
    Function SetRegExpandStr (RootKey, Key, ValueName, Value, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer = "."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("SetExpandedStringValue").InParameters.SpawnInstance_()
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = ValueName
    oInParams.sValue = Value
    Set oOutParams = oReg.ExecMethod_("SetExpandedStringValue", oInParams, , oCtx)
    End function
    'Reads a REG_SZ value from the local computer's registry using WMI
    Function ReadRegStr (RootKey, Key, Value, RegType)
    Dim oCtx, oLocator, oReg, oInParams, oOutParams,strComputer
    Set oCtx = CreateObject("WbemScripting.SWbemNamedValueSet")
    oCtx.Add "__ProviderArchitecture", RegType
    Set oLocator = CreateObject("Wbemscripting.SWbemLocator")
    strComputer="."
    Set oReg = oLocator.ConnectServer(strComputer, "root\default", "", "", , , , oCtx).Get("StdRegProv")
    Set oInParams = oReg.Methods_("GetStringValue").InParameters
    oInParams.hDefKey = RootKey
    oInParams.sSubKeyName = Key
    oInParams.sValueName = Value
    Set oOutParams = oReg.ExecMethod_("GetStringValue", oInParams, , oCtx)
    If IsNull(oOutParams.sValue) Then
    ReadRegStr = "Unknown"
    Else
    Wscript.Echo Cstr(oOutParams.sValue)
    ReadRegStr = Cstr(oOutParams.sValue)
    End If
    End Function

  • Am i able to download microsoft windows 8.1 onto my iMac OS X 10.7.5 Lion?

    Will there be any problems when downloading right off onthehub? some cites say only windows 7 is compatable with this imac, please help!

    Hi there bwhitneyimac,
    Currently, Windows 8.1 is not supported with Boot Camp. You may find the additional information in the article below helpful.
    Boot Camp 5: Frequently asked questions
    http://support.apple.com/kb/HT5639
    Which versions of Windows work with Boot Camp 5?
    You can use:
    Microsoft Windows 8.0 (64-bit)
    Microsoft Windows 8.0 Pro (64-bit)
    Microsoft Windows 7 Home Premium (64-bit)
    Microsoft Windows 7 Professional (64-bit)
    Microsoft Windows 7 Ultimate (64-bit)
    Windows XP, Windows Vista, and Enterprise versions of Windows 7 and Windows 8 are not supported.
    Windows 8.1 is not supported with Boot Camp 5.
    -Griff W. 

  • REMOTE DESKTOP SERVICES CLIENT ACCESS LICENSES FOR MICROSOFT WINDOWS SERVER 2012 STANDARD AND DATACENTER

    I am using a window 7 professional  service pack 1 and I purchase REMOTE DESKTOP SERVICES CLIENT ACCESS LICENSES FOR MICROSOFT WINDOWS SERVER 2012 STANDARD AND DATACENTER. but  the seller did not send me any installation CD or instruction
    on how to use it.
     Please how can I use it on my window 7 professional  service pack 1.
    Thank you.

    Though Bill is absolutely correct for most CALs, Remote Desktop Services does have its own special licensing server.  I haven't installed one on 2012, yet, but here is a step-by-step guide for 2008. 
    http://technet.microsoft.com/en-us/library/dd983943(v=ws.10).aspx
    Here is a lab guide for 2012 -
    http://technet.microsoft.com/en-us/library/jj134160.aspx
    But, the explanation of your environment begs the question - what are you trying to do?  You say you have a desktop OS and you are talking about Windows Server products.  In that light, your question does not make a lot of sense.
    . : | : . : | : . tim

  • Microsoft Intune Client Software Installation in Windows Server

    Intune Client Softwrae is being installed in client PCs, but can anyone tell me that Microsoft Intune's Client Software can be installed in any ver. of Windows Server? If not then how to install Intune Client Software? 

    The Microsoft Intone agent can not be installed on any version of Windows server (see also:
    http://technet.microsoft.com/nl-nl/library/dn646950.aspx#BKMK_DeviceReqs). The only way to manage your servers is to integrated with ConfigMgr and use the ConfigMgr client.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Unable to login to Report Service on Windows 2008 R2 server

    I have reporting services installed on a Windows 2008 R2 server, When I make and RDP connection to the server and go to http://servername/Reports everything works fine. When I try to connect from another client to the web service, it asks for username and
    password. it fails 3 times and the shows a blank page.
    When I see the Event Viewer in the server (Windows Logs --> Security, I can see an Audit Failure:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          9/4/2014 11:46:25 AM
    Event ID:      4625
    Task Category: Logon
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      MI-SWACO-DB.houston.livequest.net
    Description:
    An account failed to log on.
    Subject:
        Security ID:        NULL SID
        Account Name:        -
        Account Domain:        -
        Logon ID:        0x0
    Logon Type:            3
    Account For Which Logon Failed:
        Security ID:        NULL SID
        Account Name:        Administrator
        Account Domain:        HOUSTONLQ
    Failure Information:
        Failure Reason:        An Error occured during Logon.
        Status:            0xc000035b
        Sub Status:        0x0
    Process Information:
        Caller Process ID:    0x0
        Caller Process Name:    -
    Network Information:
        Workstation Name:    MI-SWACO3
        Source Network Address:    -
        Source Port:        -
    Detailed Authentication Information:
        Logon Process:        
        Authentication Package:    NTLM
        Transited Services:    -
        Package Name (NTLM only):    -
        Key Length:        0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
        - Transited services indicate which intermediate services have participated in this logon request.
        - Package name indicates which sub-protocol was used among the NTLM protocols.
        - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
        <EventID>4625</EventID>
        <Version>0</Version>
        <Level>0</Level>
        <Task>12544</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8010000000000000</Keywords>
        <TimeCreated SystemTime="2014-09-04T16:46:25.247229500Z" />
        <EventRecordID>8917</EventRecordID>
        <Correlation />
        <Execution ProcessID="504" ThreadID="1344" />
        <Channel>Security</Channel>
        <Computer>MI-SWACO-DB.houston.livequest.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="SubjectUserSid">S-1-0-0</Data>
        <Data Name="SubjectUserName">-</Data>
        <Data Name="SubjectDomainName">-</Data>
        <Data Name="SubjectLogonId">0x0</Data>
        <Data Name="TargetUserSid">S-1-0-0</Data>
        <Data Name="TargetUserName">Administrator</Data>
        <Data Name="TargetDomainName">HOUSTONLQ</Data>
        <Data Name="Status">0xc000035b</Data>
        <Data Name="FailureReason">%%2304</Data>
        <Data Name="SubStatus">0x0</Data>
        <Data Name="LogonType">3</Data>
        <Data Name="LogonProcessName">
        </Data>
        <Data Name="AuthenticationPackageName">NTLM</Data>
        <Data Name="WorkstationName">MI-SWACO3</Data>
        <Data Name="TransmittedServices">-</Data>
        <Data Name="LmPackageName">-</Data>
        <Data Name="KeyLength">0</Data>
        <Data Name="ProcessId">0x0</Data>
        <Data Name="ProcessName">-</Data>
        <Data Name="IpAddress">-</Data>
        <Data Name="IpPort">-</Data>
      </EventData>
    </Event>
    The firewall is OFF in both client and server.
    I saw a similar question and the answer is related to firewall which is not may case.

    Hi Mario,
    According to your description, when you try to access the Report Manager in another client, a login dialog prompt. After typing a valid username and password 3 times, a blank page displays.
    Generally, the issue is always caused by the Report Server is configured to use Kerberos authentication, while the Service Principal Name(SPN) is not configured correctly. To fix this issue, please refer to the following methods:
    Register an SPN for the Report Server service under the domain user account.
    Change the service account to run under a built-in account such as Network Service.
    Remove RSWindowsNegotiate and ensure RSWindowsNTLM is specified in the rsreportserver.config file.
    Besides, the issue can also be caused by the Internet Explorer (IE) didn't pass the user's credential to the Report Server automatically or the IE is not Windows Integrated enabled. For more detail steps about how to address this issue, please refer to the
    following steps:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/184c4f6c-b292-4f9a-beca-80b70f4392fe/report-manager-prompts-3-or-4-times-for-usernamepassword-before-letting-users-in?forum=sqlreportingservices
    Reference:
    Resolving Kerberos Authentication Errors When Connecting to a Report Server
    Solving the Reporting Services Login issue in the February CTP of SQL Server 2008
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Crystal Report 2008 on Windows Server 2008 64bit

    hi,
    I tried to run a Crystal Reports Web Application on a Windows Server 2008 64bit but I got this error:
    "Bei der Erzeugung des Reports ist ein Fehler aufgetreten.
    Der Typeninitialisierer für "CrystalDecisions.CrystalReports.Engine.ReportDocument" hat eine Ausnahme verursacht.
    CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Fehler beim Versuch, die Crystal Reports-Laufzeit zu laden.
    Entweder reichen die Berechtigungen des Crystal Reports-Registrierungsschlüssels nicht aus, oder die Crystal Reports-Laufzeit wurde nicht ordnungsgemäß installiert.
    Installieren Sie die geeignete verteilbare Crystal Reports-Datei (CRRedist*.msi), die die erforderliche Version der Crystal Reports-Laufzeit (x86, x64 oder Itanium) enthält. Weitere Informationen erhalten Sie unter folgender Adresse: http://www.germany.businessobjects.com/support/default.asp.
    "Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: An error has occurred while attempting to load the Crystal Reports runtime.
    Either the Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly.
    Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information."
    The System:
    - Windows Server 2008 Standard 64bit SP2
    - Microsoft .NET Framework 3.5 SP1
    - Oracle Client 10gR2 64bit
    - I tried Crystal Report 2008 Runtime, Crystal Report 2008 Runtime SP1, Crystal Report 2008 Runtime SP2, Crystal Report 2008 Runtime SP3.
    - Crystal Report Basic Runtime for Visual Studio 2008 (x64)
    On a 32bit-system or 32bit-mode (and 32bit Oracle Client) everything is working fine. But I have to use the 64bit Oracle Client, therefore, Crystal Report have to work in 64bit-mode.
    Is it possible and what is to do to get it working, thanks,
    Martin

    It does work on 64 bit OS - as a 32 bit application. CR 2008 is 32 bit only.
    See the article [Crystal Reports support of 64 bit Operating Systems|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e] for more info.
    Ludek

  • Microsoft Windows Network: The local device name is already in use.

    I posted in : http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/disconnected-network-drive-error-as-follows-an/9a877c38-5e86-4c34-84c2-427a965577c6?page=2
    Error:
    "An error occurred while reconnecting drive letter to \\network server\share folder.
    Microsoft Windows Network: The local device name is already in use.
    This connection has not been restored."
    1) A workstation is running Windows 7
    2) The user has a drive letter mapped to a UNC
    3) The connection is interrupted at some point and then restored
    4) Upon attempting to access the mapped network drive, the user gets the error about the letter being
    already in use.
    Extremely disappointed that some of the posts marked as answers were obviously not, shows how poor the moderators here are.
    My latest results clearly point to a Windows 7 client problem:
    I received the error.
    Had run nslookup so had a prompt open.
    ran dir z:    worked. went to Windows Explorer, same error.
    ran dir z:\sharename    worked. went to Windows Explorer, same error.
    copy con z: test.txt then type test.txt; could create and retrieve file. Went and clicked on mapped drive in Windows explorer and received same error.
    Obviously(?) not a Server or Networking problem. Ran Malwarebytes from bootable CD (client doesn't believe in AV). Didn't happen with USB flash drive.
    Any other ideas?
    I already have tried:
    support.microsoft.com/kb/317021
    http://support.microsoft.com/kb/303339
    ftp://ftp.microsoft.com/misc1/BUSSYS/WINNT/KB/Q194/8/29.TXT
    http://support.microsoft.com/kb/273151 Exchange issue
    http://support.microsoft.com/kb/2663418   hotfix for win7
    http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/78276f1d-f7f9-416b-b903-
    b9a18ecba67b/
    http://support.microsoft.com/kb/297684
    Ran  MicrosoftFixit50494.msi
    net use z: \\SERVER\ShareFiles /persistent:yes
    http://support.microsoft.com/kb/2663418
    http://support.microsoft.com/kb/297684#LetMeFixItMyselfAlways
    http://support.microsoft.com/gp/gp_fixit_windows/en-us
    http://support.microsoft.com/mats/windows_battery_power_settings
    http://support.microsoft.com/kb/979470/en-us ???
    http://support.microsoft.com/kb/947235/en-us
    http://msdn.microsoft.com/en-us/library/cc232765.aspx
    http://support.microsoft.com/kb/942817
    Q939820? server 2003 sp3 Fix226580  341940_ENU_i386_zip.exe
    http://support.microsoft.com/kb/983620
    http://support.microsoft.com/kb/297684
    net config server /autodisconnect:-1
    KB Article Number(s): 2663418 Hotfix
    http://support.microsoft.com/kb/983620
    http://answers.microsoft.com/en-us/feed/t/9a877c38-5e86-4c34-84c2-427a965577c6
    http://answers.microsoft.com/en-us/feed/t/9a877c38-5e86-4c34-84c2-427a965577c6
    net use z: \\SERVER\1_CADFiles /persistent:yes SBS2011 Server with current service packs
    Win7 Pro users with current Windows Update status
    http://support.microsoft.com/kb/2663418
    http://support.microsoft.com/kb/297684#LetMeFixItMyselfAlways
    http://support.microsoft.com/gp/gp_fixit_windows/en-us
    http://support.microsoft.com/mats/windows_battery_power_settings
    http://support.microsoft.com/kb/979470/en-us ???
    http://support.microsoft.com/kb/947235/en-us
    http://msdn.microsoft.com/en-us/library/cc232765.aspx
    http://support.microsoft.com/kb/942817
    netsh winsock reset catalog
    netsh int ip reset reset.log
    Q811259
    Q299357
    Q937624
    secpol.msc >> Lanman authentication level  "send LM and NTLM"
    net config server /autodisconnect:-1
    changed server video to "standard vga"
    disabled power save for NIC
    Cannot disable Intell Raid software
    http://technet.microsoft.com/en-us/library/cc780360%28v=WS.10%29.aspx   restart
    http://technet.microsoft.com/en-us/library/bb726989.aspx browse list
    Q138365
    net config server /autodisconnect:-1
    two additional registry keys are added:
    anndelta: REG_DWORD: 0xbb8
    announce: REG_DWORD: 0xf0
    netsh winsock reset
    netsh interface ipv4 reset
    netsh interface ipv6 reset
    ipconfig /flushdns  
    shutdown /r
    sfc /scannow
    http://support.microsoft.com/kb/929833
     http://social.answers.microsoft.com/Forums/en-US/w7network/thread/306dd446-7630-4d5b-8aa0-
    40fb839b293a     dns issue
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/i-have-this-problem-on-three-
    win7-x64-systems-two/d44ed544-65f5-43a7-9e17-d2d10085c765?page=2
    Leftover Homegroup components or Firewall?
    disable DNS Client = dnscache
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/service-control-manager-reports-
    that-a-timeout/e2e76ae5-ed09-4685-af86-5f8c2cd120bf     Norton Internet Security uninstall issues
    http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/windows-7-no-dns-or-no-network
    -after-resume-wake/c1253ab0-4793-449e-8975-a900ce7dec4f
    NSLOOKUP
    KB Article Number(s): 983620 Hotfix

    This is usually because the drive letter assigned to the network share is taken by something else. Maybe, by a removable drive.
    Moderators and other answerers do their best to help specific cases, but everyone has their own situation.  Apply common sense to the replies you find in the forums.
    When you typed dir z:  - is Z: the drive letter you wanted for this share, or it was automatically assigned?
    -- pa
    Alternatively you could try using common sense when you post, as well as taking the time to read the entire issue post so that you can avoid showing both your ignorance and arrogance (arrogance without any competency to back it I might add).
    Suggesting that it might be "another drive" that took over the mapping shows your lack of reading comprehension and is unhelpful.   Please take the time to, once again, read first.
    Lastly moderators here generally show little technical skill beyond entering search words into a knowledge-base of articles and then applying the results incorrectly further exacerbating the situation for the customer.

  • VERY URGENT: Certification of Reports 6i for Windows XP

    Hello !!!
    We have a cust. which is delivering software for small comunities in
    Germany. They are handling about 4500 Users and they have 1 Mio. $
    licenses in DB and reports.
    the problem is: the customer can't upgrade to
    reports 9i, because reports is embedded in a client/server application.
    They would need some more time to do the upgrade.
    Having reports on the web would bring some authentication problems.
    The user will authenticate in the client/server application. But the user
    shouldn't know the login to the database for the reports.
    Portal and SSO Server are no acceptable solutions for the customer,
    because this would require an additional oracle database. They are selling
    their application to their customer who have databasese like Informix, DB/2
    or SQL Server and don't want an additional database. So they can't go this
    way. Having a Kay-map File (cgicmd.dat) ist also not acceptable for the
    customer, because the username/password would appear there in clear text and
    they already decided, that they won't accept this. OS permissions are
    no solution, because most of their customers have an insecure Microsoft
    Windows environment, even for the server.
    So they are in a situation, that they can't upgrade immediately to
    Web-Reports and need some more time.
    Unfortunately many of their customers
    come with XP computers and they would have to say that they have to
    downgrade to Windows 2000 or loose this customer.
    There have been some rumours about patch 11 for the certification. This
    was rejected. Then Patch 12. Anotherone said it willl be Patch 13.
    Another rumour stated that development isn't planing this certification anymore.
    These statements are only made for Forms6i. Does they apply to reports6i
    also ???
    We urgently need an official statement for our customers.
    If the certification is only in Patch 13 in December we will realize some
    million $ looses. This special customer won't accept this very long delay.
    Many Thanks ind advance
    Rainer

    Certification is on its way.
    Frank

  • Event ID 10016 - DCOM Error | Source - Microsoft-Windows-DistributedCOM | Level: Error

    Hi there... I am getting the above mentioned error with the
    Description: dows-DistributedCOM cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    Full message is -
    Log Name:      System
    Source:        Microsoft-Windows-DistributedCOM
    Date:          5/15/2012 1:18:44 PM
    Event ID:      10016
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          NT AUTHORITY\IUSR
    Computer:      Server.domain.com
    Description:
    The description for Event ID 10016 from source Microsoft-Windows-DistributedCOM cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on
    the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    application-specific
    Local
    Activation
    {2D527A8C-A4B6-4E74-A63F-E867360D401C}
    {B13EFBAE-7504-4938-9ED7-8E8B53E51221}
    NT AUTHORITY
    IUSR
    S-1-5-17
    LocalHost (Using LRPC)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="49152">10016</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-05-15T19:18:44.000000000Z" />
        <EventRecordID>43121</EventRecordID>
        <Correlation />
        <Execution ProcessID="0" ThreadID="0" />
        <Channel>System</Channel>
        <Computer>Server.Domain.com</Computer>
        <Security UserID="S-1-5-17" />
      </System>
      <EventData>
        <Data Name="param1">application-specific</Data>
        <Data Name="param2">Local</Data>
        <Data Name="param3">Activation</Data>
        <Data Name="param4">{2D527A8C-A4B6-4E74-A63F-E867360D401C}</Data>
        <Data Name="param5">{B13EFBAE-7504-4938-9ED7-8E8B53E51221}</Data>
        <Data Name="param6">NT AUTHORITY</Data>
        <Data Name="param7">IUSR</Data>
        <Data Name="param8">S-1-5-17</Data>
        <Data Name="param9">LocalHost (Using LRPC)</Data>
      </EventData>
    </Event>
    Please let me know any solutions to fix....
    Steps, I did try from one of the blogs -
    Open Component Services. Got oStart --> Control Panel --> Administrative Tools --> Components Services. Expand the Component Services branch then expand Computers, My Computer and DCOM Config. Right-click on "sms agent host" (my case) and click
    Properties. Click on the Security tab and under “Launch and Activation Permissions” select "edit" and add user Local Service (Local lunch). Click OK, close the Component Services window.
    In the Launch Permission dialog box, make sure that the Everyone group has Remote Launch and Remote Activation permissions.
    In the Launch Permission dialog box, make sure that the SMS Reporting Users local group has following permissions:
    Local Launch / Remote Launch / Local Activation / Remote Activation
    Also added Remote Launch / Remote Activation permission for Network Service (for the SMS_Reporting_Point)
    Added Admin Group to the "ConfigMgr Remote Control Users"
    VT

    In addition, In the security policy the ‘Local Service’ need to be configured for the following Policies
    - Generate security audits
    - Create global objects
    - Replace a process level token
    - Adjust memory quotas for a process
    - Impersonate a client after authentication
    - Log on as a service
    - Bypass traverse checking
    Hope this helps.
    Regards,
    Yan Li
    hi,
    i m having similiar error but with another APPID 
    i did what u said in 1st part but i couldnt get what u mean in additional settings ? i couldnt do that. 
    Error details :
    Log Name:      System
    Source:        Microsoft-Windows-DistributedCOM
    Date:          7/2/2013 4:03:20 PM
    Event ID:      10016
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          LOCAL SERVICE
    Computer:      THINK
    Description:
    The machine-default permission settings do not grant Local Activation permission for the COM Server application with CLSID 
    {7160A13D-73DA-4CEA-95B9-37356478588A}
     and APPID 
    {7160A13D-73DA-4CEA-95B9-37356478588A}
     to the user NT AUTHORITY\LOCAL SERVICE SID (S-1-5-19) from address LocalHost (Using LRPC) running in the application container Unavailable SID (Unavailable). This security permission can be modified using the Component Services administrative tool.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="0">10016</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2013-02-07T14:03:20.356793400Z" />
        <EventRecordID>1465</EventRecordID>
        <Correlation />
        <Execution ProcessID="868" ThreadID="2832" />
        <Channel>System</Channel>
        <Computer>THINK</Computer>
        <Security UserID="S-1-5-19" />
      </System>
      <EventData>
        <Data Name="param1">machine-default</Data>
        <Data Name="param2">Local</Data>
        <Data Name="param3">Activation</Data>
        <Data Name="param4">{7160A13D-73DA-4CEA-95B9-37356478588A}</Data>
        <Data Name="param5">{7160A13D-73DA-4CEA-95B9-37356478588A}</Data>
        <Data Name="param6">NT AUTHORITY</Data>
        <Data Name="param7">LOCAL SERVICE</Data>
        <Data Name="param8">S-1-5-19</Data>
        <Data Name="param9">LocalHost (Using LRPC)</Data>
        <Data Name="param10">Unavailable</Data>
        <Data Name="param11">Unavailable</Data>
      </EventData>
    </Event>

  • Windows 7 SP1 client shows status of "Not Applicable" for every single update

    Windows 7 SP1 client
    Every update, including all Critical Updates for Windows 7, show a status of "Not Applicable" when running a "Computer Detailed Status Report"
    The computer is current in updating its status with the WSUS server.
    I am hoping that you can suggest reasons why this would be.
    Thanks!
    mk

    It is only the one computer that has all of its updates listed as 'Not Applicable'
    Some of these are the same updates that other computers show as 'Installed'
    Any other ideas?  
    Yep!
    Every update, including all Critical Updates for Windows 7, show a status of "Not Applicable" when running a "Computer Detailed Status Report"
    The computer is current in updating its status with the WSUS server.
    One of those two statements is not true.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • 4th try: Certification of Reports 6i for Windows XP

    Hello !!!
    We have a cust. which is delivering software for small comunities in
    Germany. They are handling about 4500 Users and they have 1 Mio. $
    licenses in DB and reports.
    the problem is: the customer can't upgrade to
    reports 9i, because reports is embedded in a client/server application.
    They would need some more time to do the upgrade.
    Having reports on the web would bring some authentication problems.
    The user will authenticate in the client/server application. But the user
    shouldn't know the login to the database for the reports.
    Portal and SSO Server are no acceptable solutions for the customer,
    because this would require an additional oracle database. They are selling
    their application to their customer who have databasese like Informix, DB/2
    or SQL Server and don't want an additional database. So they can't go this
    way. Having a Kay-map File (cgicmd.dat) ist also not acceptable for the
    customer, because the username/password would appear there in clear text and
    they already decided, that they won't accept this. OS permissions are
    no solution, because most of their customers have an insecure Microsoft
    Windows environment, even for the server.
    So they are in a situation, that they can't upgrade immediately to
    Web-Reports and need some more time.
    Unfortunately many of their customers
    come with XP computers and they would have to say that they have to
    downgrade to Windows 2000 or loose this customer.
    There have been some rumours about patch 11 for the certification. This
    was rejected. Then Patch 12. Anotherone said it willl be Patch 13.
    Another rumour stated that development isn't planing this certification anymore.
    These statements are only made for Forms6i. Does they apply to reports6i
    also ???
    We urgently need an official statement for our customers.
    If the certification is only in Patch 13 in December we will realize some
    million $ looses. This special customer won't accept this very long delay.
    Many Thanks ind advance
    Rainer

    Frank

  • 3rd try: Certification of Reports 6i for Windows XP

    Hello !!!
    We have a cust. which is delivering software for small comunities in
    Germany. They are handling about 4500 Users and they have 1 Mio. $
    licenses in DB and reports.
    the problem is: the customer can't upgrade to
    reports 9i, because reports is embedded in a client/server application.
    They would need some more time to do the upgrade.
    Having reports on the web would bring some authentication problems.
    The user will authenticate in the client/server application. But the user
    shouldn't know the login to the database for the reports.
    Portal and SSO Server are no acceptable solutions for the customer,
    because this would require an additional oracle database. They are selling
    their application to their customer who have databasese like Informix, DB/2
    or SQL Server and don't want an additional database. So they can't go this
    way. Having a Kay-map File (cgicmd.dat) ist also not acceptable for the
    customer, because the username/password would appear there in clear text and
    they already decided, that they won't accept this. OS permissions are
    no solution, because most of their customers have an insecure Microsoft
    Windows environment, even for the server.
    So they are in a situation, that they can't upgrade immediately to
    Web-Reports and need some more time.
    Unfortunately many of their customers
    come with XP computers and they would have to say that they have to
    downgrade to Windows 2000 or loose this customer.
    There have been some rumours about patch 11 for the certification. This
    was rejected. Then Patch 12. Anotherone said it willl be Patch 13.
    Another rumour stated that development isn't planing this certification anymore.
    These statements are only made for Forms6i. Does they apply to reports6i
    also ???
    We urgently need an official statement for our customers.
    If the certification is only in Patch 13 in December we will realize some
    million $ looses. This special customer won't accept this very long delay.
    Many Thanks ind advance
    Rainer

    Frank

Maybe you are looking for

  • BSP  YHAP_DOCUMENT-working in BSP but not through portals

    Hi! I am using the BSP HAP_DOCUMENT to get column access for  columns in the appraisal document for 'further participant' role. for this i changed the mode in ydocuments_where_participated.htm to 'X' and also used the BADI HRHAP00_COL_ACCESS. in this

  • Synching with Videos App does not work correctly

    Got a couple of problems. I'm trying to get some mp4 movies onto the Videos App's library. There is a similar problem with synching the iTunes University content. I added the mp4 movies to my iTunes library, synched them eith my iPad. They show up in

  • Cheque incorrectly stopped in FI, even though it was cashed.

    Dear Gurus Please can you help to see how we can do this - I am not sure of this scenario - It basically looks like a cheque was incorrectly stopped/cancelled the by us, even though the person actually cashed this cheque back in 2009. This was due to

  • Small Black Vertical Lines follow my mouse pointer AND surround all ICONS

    Small Black Vertical Lines follow my mouse pointer AND surround all ICONS on my desktop. I just turned on my computer and it showed like this. I already tested my monitor and it's not the monitor. See a picture of my problem here on my me gallery: ht

  • Can't download iMovie and iPhoto to iphone5s

    I can't download iMovie and iPhoto to my iphone5s. Every time I click install and type in my password, the iMovie just dont begin to download. I don't know why!