Use gpo to determine computername, request certificate and import certificate to computer powershell

Hey everyone,
For deployment of winrm i need to deploy certificates in our environment.
Now every certificate has to have a different name (computername)
Is there a way to automate this?
I would like to create a script that checks the computername, requests and imports the personalised certificate.
Kind regards,
Borrie

Jrv,
I don't think that's correct, as you can see in the link underneath for each computer or server you need to create a certificate and import in:
http://blogs.technet.com/b/meamcs/archive/2012/02/25/how-to-force-winrm-to-listen-interfaces-over-https.aspx
That's why i would like to create a script to automate this task.
The script should check the computername, check if the cert already exists, if not request and import it with the computername as parameter.
Borrie
* edit, the procedure in the link describes using the domain name in stead of computername but I really need the computername, after importing the cert i also need it's thumbnail for use with configuring winrm and soon also another application.

Similar Messages

  • My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for? Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?

    My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for?
    Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?
    I do not have any VPN enabled?

    Do you happen to have an Android?  If so and depending on what version there is a great data usage analyse tool built-in.  See if you can go to Settings -> Data Usage  from there you can pick a current or previous billing cycle and then use the vertical sliders to select a date range and it will filter the usage data per app to show you exactly what app(s) were using data during that time frame.

  • Does Firefox reset all the root certificates and root certificate settings whenever an upgrade is installed?

    Does Firefox reset all the root certificates and root certificate settings whenever an upgrade is installed?

    Root certificates are stored in the file nssckbi.dll and if you've disabled build-in root certificates then it is possible that they get re-enabled. There is however no reason to disable any of the build-in root certificates.
    Tools > Options > Advanced > Encryption: Certificates > View Certificates : Authorities

  • How to export and import on another computer whole database connection

    Hi
    how to export and import on another computer whole database connection with all contents ?
    step by step

    From the "source" computer do this:
    1) Open SQLDeveloper.
    2) Right click on the main connections node and choose export connections.
    3) Select the connections you want exported and choose a file name and location to save them.
    4) Save the file by clicking OK then copy it to the destination PC.
    On the "destination" PC assuming you have already installed SQLDeveloper do this:
    1) Open SQLDeveloper.
    2) Right click on the main connections node and choose import connections.
    3) Browse to the connections file you copied earlier and select the connection you saved.
    4) Complete the import by clicking OK and you are done.
    Mind that this is sufficient only if you have only basic connections, if you have TNS connections you will also need to manually copy the Tnsnames file from the "source" PC to the "destination" PC and set the
    Tools -> Preferences -> Database -> Advanced Tnsnames directory
    to the directory where you copied the Tnsnames file.

  • How to download certificate and import it

    I need to import a CA certificate of a not well-known CA. I have access to a site that uses a certificate signed by this CA. Is it possible to download/save this certificate and extract CA information/public key that can be added to my cacers? Please explain how..

    Here is an article talking about fetching certificates from an SSL enabled server and store it into your own keystore.
    http://blogs.sun.com/andreas/resource/InstallCert.java

  • Editing after exporting and importing onto different computer?

    Can you edit an iMovie ('09) after you export it and import it onto another computer?  It doesn't appear as if I can edit the themes and transitions and other features.
    Thanks.

    Yes, I did finally ascertain that workbooks are not included in the type of export I was trying. Thought I could do the quick and simple via GUI and not the command line. Because I did not have many reports to move, I simply saved them to the local machine and moved them to the designated server.
    I will try the command line you are referring to.
    Thanks for the confirmation.

  • How do I use For loop to check each node and import them to a new document?

    In my function I would like to use a For loop to get all the statutes (xml) inside the object
    objXmlBcaResponseDoc. In my case there are 2 statutes. I would like the output to look like the one I have posted here below. I am not sure how to do the For loop. The commented For loop is from another function but it is not working inside
    this function.
    The output is added into the **objXmlResponseMessageDoc** object and should look like this with 2 statutes (ns1:Statute) and a totalCount=2
    <BasicSearchQueryResponse xmlns="http://crimnet.state.mn.us/mnjustice/statute/service/4.0">
    <StatutesXml>
    <Statutes runType="Request" runDateTime="2015-03-17T10:23:04" totalCount="2">
    <ns1:Statute xmlns:ns1="http://crimnet.state.mn.us/mnjustice/statute/messages/4.0">
    <StatuteId xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">8471</StatuteId>
    <Chapter xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">60</Chapter>
    <Section xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">55</Section>
    <Subdivision xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>
    </ns1:Statute>
    <ns1:Statute>
    <StatuteId xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">9722</StatuteId>
    <Chapter xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">90</Chapter>
    <Section xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">25</Section>
    <Subdivision xsi:nil="true" xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>
    </ns1:Statute>
    </Statutes>
    </StatutesXml>
    </BasicSearchQueryResponse>
    My xml doc is found inside objXmlBcaResponseDoc Here is xml inside
    objXmlBcaResponseDoc object
    <BasicSearchQueryResponse xmlns="http://crimnet.state.mn.us/mnjustice/statute/service/4.0">
    <ns1:Statutes xmlns:ns1="http://crimnet.state.mn.us/mnjustice/statute/messages/4.0">
    <ns1:Statute>
    <StatuteId xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">8471</StatuteId>
    <Chapter xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">60</Chapter>
    <Section xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">55</Section>
    <Subdivision xsi:nil="true" xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>
    </ns1:Statute>
    <ns1:Statute>
    <StatuteId xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">9722</StatuteId>
    <Chapter xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">90</Chapter>
    <Section xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0">25</Section>
    <Subdivision xsi:nil="true" xmlns="http://crimnet.state.mn.us/mnjustice/statute/4.0"/>
    </ns1:Statute>
    </BasicSearchQueryResponse>
    Here is my function
    Function GetStatutesByChapter(ByVal aobjXmlGetStatuteRequestNode As XmlNode, ByVal aobjXMLNameSpaceManager As XmlNamespaceManager, ByVal aobjBroker As ServiceCatalog.Library.v4.Broker) As XmlDocument
    Dim objXmlRequestMessageDoc As XmlDocument
    Dim objXmlResponseMessageDoc As XmlDocument
    Dim intCount As Integer
    aobjBroker.PostMessageWarehouseInformationalMessage("Chapter found.", 1)
    objXmlResponseMessageDoc = New XmlDocument
    'Add the first element into the document GetStatuteByChapter with its namespace
    objXmlResponseMessageDoc.AppendChild(objXmlResponseMessageDoc.CreateElement("BasicSearchQueryResponse", "http://crimnet.state.mn.us/mnjustice/statute/service/4.0"))
    'Build the initial response document
    objXmlResponseMessageDoc = New XmlDocument
    'Add the first element into the document GetStatutesResponse with its namespace
    objXmlResponseMessageDoc.AppendChild(objXmlResponseMessageDoc.CreateElement("GetStatutesResponse", "http://www.courts.state.mn.us/StatuteService/1.0"))
    'Add a child node to the GetStatutesResponse node
    objXmlResponseMessageDoc.SelectSingleNode("ss:GetStatutesResponse", aobjXMLNameSpaceManager).AppendChild(objXmlResponseMessageDoc.CreateElement("StatutesXml", "http://www.courts.state.mn.us/StatuteService/1.0"))
    objXmlResponseMessageDoc.SelectSingleNode("ss:GetStatutesResponse/ss:StatutesXml", aobjXMLNameSpaceManager).AppendChild(objXmlResponseMessageDoc.CreateElement("Statutes", "http://www.courts.state.mn.us/StatuteService/1.0"))
    'Convert the node Statutes into an element and set the runType attribute (runType="Request") by adding it's value Request
    CType(objXmlResponseMessageDoc.SelectSingleNode("ss:GetStatutesResponse/ss:StatutesXml/ss:Statutes", aobjXMLNameSpaceManager), System.Xml.XmlElement).SetAttribute("runType", "Request")
    'Convert the node Statutes into an element and set the attribute (runDateTime="2015-03-05T10:29:40") by adding it
    CType(objXmlResponseMessageDoc.SelectSingleNode("ss:GetStatutesResponse/ss:StatutesXml/ss:Statutes", aobjXMLNameSpaceManager), System.Xml.XmlElement).SetAttribute("runDateTime", Format(Now, "yyyy-MM-ddTHH:mm:ss"))
    'Create the BCA request message
    objXmlRequestMessageDoc = New XmlDocument
    objXmlRequestMessageDoc.AppendChild(objXmlRequestMessageDoc.CreateElement("ns:BasicSearchQueryRequest", aobjXMLNameSpaceManager.LookupNamespace("ns")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns1:BasicSearchCriteria", aobjXMLNameSpaceManager.LookupNamespace("ns1")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Chapter", aobjXMLNameSpaceManager.LookupNamespace("st")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Section", aobjXMLNameSpaceManager.LookupNamespace("st")))
    objXmlRequestMessageDoc.SelectSingleNode("ns:BasicSearchQueryRequest/ns1:BasicSearchCriteria", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns2:Subdivision", aobjXMLNameSpaceManager.LookupNamespace("st")))
    'Uncomment last working section below
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Chapter", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Chapter", aobjXMLNameSpaceManager).InnerText
    'check if there is a section and or subdivision if it is there then set the value
    If Not (aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager) Is Nothing) Then
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Section", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Section", aobjXMLNameSpaceManager).InnerText
    End If
    If Not (aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Subdivision", aobjXMLNameSpaceManager) Is Nothing) Then
    objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns1:BasicSearchCriteria/st:Subdivision", aobjXMLNameSpaceManager).InnerText = aobjXmlGetStatuteRequestNode.SelectSingleNode("ss:Statute/ss:Subdivision", aobjXMLNameSpaceManager).InnerText
    End If
    'check if there is a section and or subdivision if it is there then set the value
    aobjBroker.PostMessageWarehouseSnapshot(objXmlRequestMessageDoc.OuterXml, "Request Message", 1)
    'Call the BCA service
    intCount = 0
    'This is where I want to use a For loop to check for the statutes found using the Chapter
    'Loop through each Id
    'For Each objXmlStatuteIdNode In aobjXmlGetStatuteRequestNode.SelectNodes("ss:Statute/ss:StatuteId/ss:Id[string-length(.)>0]", aobjXMLNameSpaceManager)
    'Create the BCA request message
    'objXmlRequestMessageDoc = New XmlDocument
    'objXmlRequestMessageDoc.AppendChild(objXmlRequestMessageDoc.CreateElement("ns:SingleStatuteRequest", aobjXMLNameSpaceManager.LookupNamespace("ns")))
    'objXmlRequestMessageDoc.SelectSingleNode("ns:SingleStatuteRequest", aobjXMLNameSpaceManager).AppendChild(objXmlRequestMessageDoc.CreateElement("ns:statuteId", aobjXMLNameSpaceManager.LookupNamespace("ns")))
    'objXmlRequestMessageDoc.DocumentElement.SelectSingleNode("ns:statuteId", aobjXMLNameSpaceManager).InnerText = objXmlStatuteIdNode.InnerText aobjBroker.PostMessageWarehouseSnapshot(objXmlRequestMessageDoc.OuterXml, "Request Message", 1)
    'intCount = intCount + 1
    'objXmlBcaResponseDoc = New XmlDocument
    'File name is BCASearchQueryResponse.xml
    'objXmlBcaResponseDoc.Load("\\j00000swebint\mscapps\deve\appfiles\temp\BCASearchQueryResponse.xml")
    'objXmlResponseMessageDoc.DocumentElement.SelectSingleNode("ss:StatutesXml/ss:Statutes", aobjXMLNameSpaceManager).AppendChild(objXmlResponseMessageDoc.ImportNode(objXmlBcaResponseDoc.DocumentElement.SelectSingleNode("ns1:Statute", aobjXMLNameSpaceManager), True))
    'Next
    'Count how many Statute nodes found
    CType(objXmlResponseMessageDoc.SelectSingleNode("ss:BasicSearchQueryResponse/ss:StatutesXml/ss:Statutes", aobjXMLNameSpaceManager), System.Xml.XmlElement).SetAttribute("totalCount", CStr(intCount))
    Return objXmlResponseMessageDoc
    End Function

    What is XPath and what does it do that you're impressed with?
    Yes, I see your link, but give me the abbreviated elevator speech on what it is please. It has me curious.
    http://searchsoa.techtarget.com/definition/XPath
    http://www.techrepublic.com/article/easily-navigate-xml-with-vbnet-and-xpath/
    http://www.techrepublic.com/article/using-xpath-string-functions-in-xslt-templates/
    The way that all this is being used by me now on a project is the HTML controls on the screen are built by XML not only about what the controls are and their attributes,   but the data from from the database is XML too with both going through transfermations
    vis XSLT as the HTML controls are built dynamically by XML data for the controls and the XML database data with decision being made in the transfermation on the fly.
    There are many usages with Xpath not just this one I am talking about with Xpath. You can do the same kind of thing with XAML and WPF forms as they are dynamically built. But it goes well beyond what I am talking about and the usage of Xpath. Xpath 3.0
    is the latest version. 
    http://www.balisage.net/Proceedings/vol10/html/Novatchev01/BalisageVol10-Novatchev01.html
    Thanks - I'll look into that at some point.
    Still lost in code, just at a little higher level.

  • Oracle wallet user certificate and Appache certificate

    We have Appache 2.0 application using certificate.
    We have generated certificate request from the Oracle Wallet application.
    Will the newly created certificate be still good for the Appache 2.0 (not Oracle Appache)?
    TIA

    Apparently, if you configure the wallet to have auto login enabled you do not need the password, I have not tried this myself yet though

  • Transfer palm data from PC to Mac without using the M100 - only exporting the data and importing?

    I had an old Palm M100 that I haven't used in a while but I love the palm desktop app - my PC currently runs 4.1.4
    I have a mac powerbook and I loaded 4.2.1
    When I export my calendar and address book data in the .aba and  .dba format from my PC - the Mac palm desktop app doesn't seem to recognize those file formats.
    Are those not standard formats between the two platforms?  It also looks like the Mac desktop app doesn't even recognize importing data from another Palm format?  It just shows the other program formats.
    Also, when importing as CSV or tab-delimeted those are extremely messed up also.
    Any "easy" way to get the data off of my PC and onto my Mac without using the Palm M100 itself?
    Thanks,
    Dave 
    Post relates to: Palm m100

    The suggestion is not accurate, at least with respect to calendar information. I'm in nearly the same situation, and just tried it. (Saving .dba file out of Windows Palm Desktop 4.1.0, importing into Mac Palm Desktop 4.2.1revD.)
    First, the Mac program will not recognize the .dba as an importable format if one selects All Readable Documents.
    Second, if one selects All Documents instead, you get the following error message:
    The file could not be imported.
    In order to import data from Windows Palm Desktop software, export the file in one of these formats: comma (.csv) or tab (.tab) delimited, vCard, or vCal.
    The problem with this is that Windows Palm Desktop 4.1.0 offers only two options for exporting Date Book information:
    1) the whole datebook as a .dba file.
    2) individual calendar items as a vCal.
    So far as I can see, there's no way to Select All so as to export all as a vCal, and no pre-set option to do so.
    Post relates to: Palm m125
    Post relates to: Palm m125

  • Feature Request: Export and Import all or part of vCenter configuration from the GUI

    One of the challenges we face is how to recover a large vCenter to a different VM, without having to restore any databases or use vCenter VMs and databases on replicated storage. We currently have a PowerCLI based process for exporting vCenter configurations - vCenter settings, roles/privs, alarm definitions, datacenters/clusters/hosts - to an XML file, which can then be used to import that vCenter configuration into a recovery vCenter. Three part process - export the vCenter configuration, import the settings and structure (datacenters, clusters, alarms), then import the hosts. This last step pulls in the hosts once by one from the original vCenter, complete with their running VMs and once all hosts in a cluster are imported creates the required Resource Pools and moves the VMs in to them. A subsequent script moves all the VMs into appropriate blue folders based on their CMDB classification/OS.
    The above process is OK, but has a number of faults:
    It's all or nothing for a migration, unless there is some serious editing of the XML dump to extract, for example, a specific datacenter or cluster, which could if incorrectly done result in configuration issues, hosts not being imported, etc.
    It can't (at least not in vc4.x) migrate dvSwitches. If we have those in a datacenter, we're going to have to reconfigure the hosts and VMs back onto conventional vSwitches
    We'd really like to see a native tool built in to vSphere Client or the Web Client that will allow all or part of a vCenter configuration to be exported to an XML or other flat file and then imported into another vCenter in one easy step, taking running VMs, dvSwitches - the lot. In the same way you can export host and vCenter logs with a few clicks, it should be possible to do something similar for vCenter configurations. This would be useful for a number of things - vCenter recovery, vCenter upgrade, individual datacenter or cluster migration.

    I got the answer: http://forum.java.sun.com/thread.jspa?threadID=577129

  • Difference between "trusted" certificate and "valid" certificate?

    I have added a new system root certificate, but I am having problems with it. In Tiger, I would add certificates to the x509 Anchors keychain. Then, when I would select them in Keychain Access, underneath the expiration date I would see a little green dot with a white check-mark in the middle, next to the words "This certificate is valid."
    I understand that, in Leopard, new system root certificates are supposed to go in the System keychain. But, no matter whether I put my new certificate in the System keychain or the X509 Anchors keychain, I cannot cause it to look like it did before, with the message about its being "valid."
    Instead, when I select it in Keychain Access, underneath the expiration date, I see a little blue dot with a white cross in the middle, next to the words "This certificate is trusted for all users."
    What is the difference? And how can I cause a new certificate to be marked as "trusted" (with the green dot and check-mark, like before)?
    I've googled and searched the forums, and experimented, without success. Can anyone help me? Thanks for reading!

    Did you search the Internet on 'midp trusted untrusted'? The first link from Google points to http://www.j2medev.com/api/midp/javax/microedition/midlet/doc-files/Authorization.html
    Maik

  • Incremental back ups to external hard drive and importing to new computer

    I need some clarification on precisely how to back up additional pictures on a PC to an external hard drive to keep all the pictures in the same catalog and folder structure.I have exported my existing catalog (exporting the negative files and including the previews) to an EHD to a folder I have created called My lightroom Photos.Within this folder there are three sub-folders:(1)My Lightroom Photos previews.irdata, (2) My Lightroom Photos.lrcat LRCAT file and (3) Pictures (which contain copies of all the subject folders I have created on import-the original pictures being retained on the computer hard drive). When LR opens you have the option of backing up the alterations to pictures in an EHD (but not the pictures themselves).So if some alterations in the develop module are made,these are backed up as a fourth sub- folder on the EHD with the date recorded.However,if certain pictures are added to Lightroom following the earlier catalog export, how can these pictures together with the alterations be added to that same exported catalog with pictures added to various established folder names -eg France, Italy etc? LR is currently set to back up to the parent folder-My Lightroom Photos.
    Secondly, I believe that to import the catalog into LR on a second computer,all that is necessary is direct LR to open the last dated LRCAT file from My Lightroom Photos folder on the EHD.However,my last backed up "fourth" LR folder only imported two grayed out images with no previews visible.
    Any advice would be appreciated.

    I assume that what you really need is some form of keeping the photograph folders on your internal hard drive in sync with the folders on your external hard drive (the catalog itself can be backed up from within Lightroom). This downloadable little utility works for me when I want to keep my spreadsheets, letters, iTunes files ...etc... backed up;
    http://www.goodsync.com/download/update
    It's nothing to do with Lightroom. You first set up simple jobs within the utility, telling it which folders on your internal drive should be backed up to which folders on your external drive. It will then run, and copy to the ehd any items in the source folder that have changed since the last sync. Then, if your internal hard drive fails, you can copy these folders and catalogs from your ehd to the replacement hd, using the original folder structure.
    In Lightroom, the catalog is the main organisational tool, rather than the folder. I let LR decide on it's own folder structure, because I never refer to my RAW files outside of LR. Hope this helps.

  • Moving projects and imported media from computer to EHD

    Hello all
    I have just recently finished a project in  FCPX and all the media is stored on my Macs hard drive. I am wanting to move this project to my EHD, so its not taking up so much space on my computers HD. But in doing so i also want to be able to go back and edit the project at anytime. Can anyone help me out on how to move everything over. I tried to copy the project folder itself but says that the file volume is to small to copy over.
    Thanks

    Tom,
    When I duplicate the project to a properly formatted EHD as you have suggested, fcpx accurately creates duplicate event and project files on the EHD, however it also creates an exact duplicate event in the event library i.e. with the identical name and contents as ther original - 2 exact event files.  Is this normal?

  • Uploading of signed certificate Server certificate and Intermediate certifi

    Hello,
    We are implementing SSL for the first time on NW AS JAVA 7.0. I have received signed certificate from the CA.
    It contains Web server certificate and Intermediate certificate.
    I guess we import the Webserver CSR response. I not sure on what is the intermediate certificate and they say it is mandatory.
    Can you please guide.
    Thanks.
    Siddhartha

    Sorry Here,
    Hope I understand this correctly.
    The Comodo Positive SSL is a Web certificate. Although I ask OD to use it, it didn't.
    Then Profile Manager expects a "code signing" certificate which is why all it saw was Open Directory's one.
    Francois

  • Portal and BW certificate must be different

    Hi,
    We've installed BI with BI Java and Portal as Addin on same System.
    We've configured the BI & Portal integration via NWA and everything is ok. But after when tested we got " The system is unable to interpret the SSO ticket received " errors during Bex Launcher.
    When we checked the configuration via RSPOR_SETUP Repost on ABAP Stack, everything except the following seems ok.
    Status 10: Import Portal Certificate into BI            <b>Portal and BW certificate must be different</b>
    Status 12: Maintain User Assignment in Portal           <b>System failure during call of function module RSWR_RFC_SERVICE_TEST</b>
    I think the problem is when we imported the Portal Certificate into BI, as they reside on same system error occurs at step 10.
    This is the production system. On Development System, Portal+BI Java are on another server than BI and this problem was not occured.
    Does anyone experienced this issue?

    Hi,
    Of cours I've solevd the issue via sap note "917950 SAP NetWeaver 2004s: Setting Up BEx Web"
    Here is the section you've to consider ;
    Add-In Installation and importing Certificates with identical system ID (SID)
    In case of Add-In installation, the system ID (SID) of
    AS-ABAP and AS-Java is identical. This causes problems
    during import and certificates, if you are using the
    Template Installer. Because the ABAP system does not allow
    to import a certificate with identical Distinguished Names (DN) (e.g. identical common names (CN), subject names, ...). Also the standard client of the J2EE must be different from the standard client of the ABAP system.
    If the common names are identical, the report RSPOR_SETUP
    displays the error message "Portal and BW certificate must be different" (English).
    If the client of the Portal certificate is existing in the
    ABAP system, the error message "Add-In Installation: check logon.ticket_client (see note 994785)" is diplayed.
    This issue could be solved by creating a new Portal
    certificate with a different Distinguished Name (DN). The
    steps to create a new Portal certificate are described in
    the report RSPOR_SETUP documentation of step "Export Portal Certificate to the Portal" (step 9):
         1. Delete J2EE certificate (SAPLogonTicketKeypair
    and SAPLogonTicketKeypair-cert) in Visual Administrator under Services Keystorage
         2. Create new J2EE certificate (SAPLogonTicketKeypair with other Distinguished Name) in
    Visual Administrator under Services Keystorage (as
    described in documentation of step 9 "Export Portal
    certificate in Portal", report RSPOR_SETUP)
         3. Delete J2EE certificate in certificate list
    and access control list (ACL) with transaction STRUSTSSO2
         4. Import new J2EE certificate to certificate
    list in transaction STRUSTSSO2
         5. Add new J2EE certificate to access control
    list (ACL) in transaction STRUSTSSO2
    See report RSPOR_SETUP documentation of step "Configure User Management in Portal" (step 8) or note 994785 how to
    change the standard client of the J2EE.
    Message was edited by:
            HUSEYIN BILGEN

Maybe you are looking for

  • Some Photo Pages not showing no  matter the browser

    I'm using iWeb '08 and have 2 separate sites. I noticed last night that, only on one of the sites, the photo pages are not showing the photos. Yet, on the other site, the photo pages are fine. It's really weird. Anybody have any thoughts? BTW, I trie

  • [Solved] Systemd user service and timer dbus error

    I have installed arch recently and added a few of my own services, for example the acpi_call commands and such. Now I want to create a systemd service that runs every 5 minutes and execute a script. I searched a lot and I found that I must use timers

  • What generation is my iPod mini?

    I'm looking at buying some EarJams to use while on airplane. But it says they don't work with earbuds that came with first and second generation iPods. I just bought my mini about a month ago. In the "about" category it says it's a version 1.4. If th

  • Reader insists on printing 2 pages per sheet

    Reader 11.0.10 I cannot set it to print 1 page per sheet. Other programs are happy with one, or multiple pages per sheet. But not Adobe Reader. Printer is Fuji Xerox CM205FW. Thanks in advance Peter

  • Right-Click/Contextual Menu Hang

    Hi, for maybe a week now, Logic Pro 8 has been hanging every time I've right-clicked for about 30 seconds (every single time). I constantly check Console for any error messages, but nothing comes up, and I have no clue as to what the problem might be