How to export Registry values for Office 2010 in HKLM.

Hello,
I am trying to export all the Registry keys for Office 2010 in HKLM. All the Office 2010 based registry values in HKLM will be exported and need to be resotred after installing Office 365. So I need to export all the HKLM based Office keys before installing
Office 365 so later it can be restored.
Thanks
Ekta Verma

Then change the group policy, that's the solution to your problem.  You've made the investment in Office 365 - forcing Office 2010 to launch is wasting that investment.
But what you are proposing won't work anyway, you would need to capture all of the keys and values in 
HKCR\.doc, HKCR\.docx, etc, etc, etc for all of the file types.
Collecting all the registry values, crafting a script to put them all back, and managing that effort is a waste of time when the group policy could be changed in a matter of minutes.  If someone argues against changing the group policy then tell them
to tell the guy who approved the purchase of Office 365 that he wasted the company's money.
If, on the other hand, you don't want users to launch Office 2010 yet, that's another story and I could go on and on debating both sides of the argument.  Instead of spending the time mucking around the registry, try to repair Office 2010 instead:
msiexec /f <product code> /q
you can get the product code from HKLM\Software\Microsoft\Windows\CurrentVersion and just search for microsoft office from there.  The key name it's in will be the same as the product code, which would also appear in the Uninstall registry value.
I hope this post has helped!

Similar Messages

  • How to assign a value for Unit of measure (like PC, KG...) in ABAP program?

    Hi,
        How to assign a value for Unit of measure (like PC, KG...) in ABAP program?
        I want to assign PC in a field to execute the program, like wa-ENTRY_UOM = 'pc'.
        But the system returen a message that "Unit of measure  is not convertible to stockkeeping unit PC"
        Could anyone tell me how to assign the value??
        Thanks!

    hi,
    first convert the quantity in the same unit  ( like in you case ST to PC )  by using FM :    MD_CONVERT_MATERIAL_UNIT
    CALL FUNCTION 'MD_CONVERT_MATERIAL_UNIT'
        EXPORTING
          i_matnr                    = matnr
          i_in_me                    = entry_uom
          i_out_me                   = out_uom
          i_menge                    = quantity
       IMPORTING
         E_MENGE                     = fp_l_v_quant
       EXCEPTIONS
         ERROR_IN_APPLICATION       = 1
         ERROR                      = 2
         OTHERS                     = 3.
      IF sy-subrc <> 0.
              give error message here
       ENDIF.
    bcoz in ur program somewhere the quantities etc are compared and there units may be different... so that is why it is showing such error.  so just convert convert the quantity in the same unit  .
    regards
    rahul
    Edited by: RAHUL SHARMA on Jun 17, 2009 9:31 AM

  • How to set default values for boolean columns

    I'm trying to deploy some content types and columns into a site with a feature. All it's ok, except that I'm trying to set a default value for boolean columns with no success.
    I've tried to set default value at column level:
    <Field ID="{EFE23A1D-494E-45cf-832E-45E41B17F0CF}" Name="ScopeSpanish" DisplayName="Se publican noticias en español"
    Type="Boolean" Hidden="FALSE" Group="Columnas ShaCon" >
    <Default>TRUE</Default>
    </Field>
    and at content type level:
    <FieldRef ID="{EFE23A1D-494E-45cf-832E-45E41B17F0CF}" Name="ScopeSpanish" DefaultValue="TRUE" Required="TRUE" />
    But in any case, when i create a new item with this content type, default value is applied.
    Can anyone tell how to set default values for boolean columns?
    Thanks in advance,
    Regards,
    Sergio

    In the field definition you can set
    <Default>1</Default>
    or
    <Default>0</Default>
    How to set the default value Null?

  • A^b = n ,How to get the value for a ?

    a^b = n ===> n = Math.pow(a,b)
    How to get the value for a ?
    dose Java have API to get the value for a ?
    Thanks for help~~~

    a^b = n
    =>
    a = n^(1/b)
    So,
    a = Math.pow(n,1.0/b)

  • How to define a Value for an Attribute of an Class

    Hi,
    How to define a Value for an Attribute of a Class ...
    ( I need to change the value of an Attribute of a class in standard program ....
    Ex...
       cl_hrce_masterswitches=>infotype_framework_is_active
    Here infotype_framework_is_active is the attribute .. its value in standard program is 'X'... Now i need to change it as '  '.
    How to define it and set value as ' '.

    Hello Surendar
    The static attribute INFOTYPE_FRAMEWORK_IS_ACTIVE is read-only and there is not SETTER method to manipulate its value.
    However, the attribute is filled in the CLASS_CONSTRUCTOR:
    METHOD class_constructor.
        IF ce_is_active                 = true OR
           global_payroll_is_active     = true OR
           mngmt_global_empls_is_active = true.
          infotype_framework_is_active = true.
          perid_infotype_is_active     = true.
        ELSE.
          infotype_framework_is_active = false.
          perid_infotype_is_active     = false.
        ENDIF.
    ENDMETHOD.
    Thus, you need to analyze how attribute CE_IS_ACTIVE, GLOBAL_PAYROLL_IS_ACTIVE and MNGMT_GLOBAL_EMPLS_IS_ACTIVE are filled in the CLASS_CONSTRUCTOR.
    For sure you will find customizing settings that are responsible for this.
    Regards
      Uwe

  • How to insert / Update value for PFAKT in BP Relationship

    Hi Friends / Experts,
    How to insert the value for PFAKT ( Function value ) in BP Relationship in BP tcode , in SAP CRM.
    I have tried it but it BAPI_BUPR_CONTP_CREATE. But I need it with BAPI_BUPR_RELATIONSHIP_CREATE Function Module.
    Please help me out.
    Any Enhancement points in BAPI_BUPR_RELATIONSHIP_CREATE or any user exists. Please let me know.
    Regards,
    KMF.

    you can also acheive this using MERGE( available in sql 2008 and above).
    also, you are referring to DTS. DTS is legacy solution now..are you using sql 2000,  you can use ssis, if you want and it available in sql 2005. as said, there are multiple ways you can do this.. it find the below one a easy solution, since your are
    talking about only one table.. 
    try this example..
    create table test1(sno int primary key,sname varchar(20),scity varchar(20))
    go
    create table test2(sno int primary key,sname varchar(20),scity varchar(20))
    go
    insert into test1
    values(1,'stan','atlanta'),(2,'william','newyork')
    go
    insert into test2
    values(1,'robin','orlando')
    go
    --set this in you sql job and let it run for every half an hour
    MERGE test2 t2
    USING test1 t1
    ON t2.sno = t1.sno
    WHEN MATCHED THEN
    UPDATE
    SET t2.sname = t1.sname,t2.scity=t1.scity
    WHEN NOT MATCHED by target THEN
    Insert(sno,sname,scity)
    values (sno,sname,scity);
    go
    --check this table and clean up
    select * from test2
    go
    drop table test1
    go
    drop table test2
    Hope it Helps!!

  • Cannot download cumulative update for Office 2010 December 2014

    I tried to download the cumulative update for Office 2010 (December 2014) at the following link:
    https://technet.microsoft.com/library/dn789213(v=office.14)
    When you click the link (http://support.microsoft.com/kb/KB3020815) you get to an "oops" page. 
    Oops!
    The page you are looking for may have a new location, or is no longer available.
    Does anyone have a link that works for that update?
    Thanks,
    --Jeffrey

    Hi Protholl,
    I visited the link you provided:http://support.microsoft.com/kb/KB3020815 , got the same result "Oops! The page you are looking for may have a new location, or is no longer available."
    Please visit this link instead:
    http://support.microsoft.com/kb/3020815
    You should open the page with no issue then.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to calculate acquisition value for specified day

    Hi,
    in my z program I have a problem how to calculate acquisition value for my asset for specified day.
    Example:
    I have asset created 8.7.2008 with TTYPE 104 (External asset acquisition) with value 5950.
    30.11.2008 there is another TTYPE 272 (Retirement of current-yr acquis., w/o revenue) with value 950.
    So BEFORE 30.11.2008 acquisition value is 5950. After is 5000. Is there any function module (or something else) in SAP system where I can send asset number and date a it return to me acquisition value for that day?
    Many thanks for any answer!

    Hi,
    your suggestion means that I have to compute acquisition value by myself (sum all TTYPE 1** - sum all TTYPE 2**). So SAP does't provide such functionality (LDB ADA have it, because it can compute acquisitiob value for specific day)?
    Mant thanks for answer

  • How to select XML value for a namespace when multiple namespaces

    Hi,
    I'm a beginner with this, but I'm doing well with your help from this forum in a recent post selecting out all the detail from my xml
    out into my oracle relational tables. Stumped, though, on how to select a value for xml tag value referenced by a defined namespace.
    Version, XML, what I want to select, and attempted sql is below. Thanks in advance!
    select * from V$VERSION
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    drop table TRANSCRIPT;
    create table TRANSCRIPT (
    CONTENT xmltype
    <?xml version="1.0" encoding="UTF-8"?>
    <arb:AcademicRecordBatch xmlns:arb="urn:org:pesc:message:AcademicRecordBatch:v1.0.0">
      <hst:HighSchoolTranscript xmlns:hst="urn:org:pesc:message:HighSchoolTranscript:v1.0.0" xmlns:ct="http://ct.transcriptcenter.com">
       <TransmissionData>
          <DocumentID>2013-01-02T09:06:15|D123456789</DocumentID>
       </TransmissionData>
       <Student>
                <Person>
                    <Name>
                        <FirstName>John</FirstName>
                        <LastName>Doe</LastName>                   
                    </Name>
                </Person>
                <AcademicRecord> 
                    <AcademicSession>
                        <Course>
                            <CourseTitle>KEYBOARD 101</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010456</NCESCode>
                                 <CourseRigor>1</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>
                        </Course>
                        <Course>
                            <CourseTitle>SCIENCE 101</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010457</NCESCode>
                                 <CourseRigor>2</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>                       
                        </Course>
                    </AcademicSession>
                    <AcademicSession>
                        <Course>
                            <CourseTitle>MATH 201</CourseTitle>
                            <UserDefinedExtensions>
                              <ct:TranscriptExtensions>
                                 <NCESCode>01001E010458</NCESCode>
                                 <CourseRigor>2</CourseRigor>
                              </ct:TranscriptExtensions>
                          </UserDefinedExtensions>                                 
                        </Course>
                    </AcademicSession>
             </AcademicRecord>
       </Student>
      </hst:HighSchoolTranscript>
    </arb:AcademicRecordBatch>I want to be able to select the NESCODE associated to each coursetitle (01001E010456, 01001E010457, 01001E010458), with NESCode defined by namespace, but getting out NULL.
    DOCUMENTID     LASTNAME     COURSETITLE     NCESCODE
    2013-01-02T09:06:15|D123456789     Doe     KEYBOARD 101     
    2013-01-02T09:06:15|D123456789     Doe     SCIENCE 101     
    2013-01-02T09:06:15|D123456789     Doe     MATH 201     
    My SQL is below. You'll see where I commented out a couple failed alternatives too. Thanks again in advance for any guidance.
       select x0.DocumentID
             ,x1.LastName
             , x3.CourseTitle
             ,x3.NCESCode
      from TRANSCRIPT t
         , xmltable(                                                                                   
             xmlnamespaces(
               'urn:org:pesc:message:AcademicRecordBatch:v1.0.0' as "ns0"
             , 'urn:org:pesc:message:HighSchoolTranscript:v1.0.0' as "ns1"
            --, 'http://ct.transcriptcenter.com'                               as "ns1b" 
          , '/ns0:AcademicRecordBatch/ns1:HighSchoolTranscript' 
            passing t.content
            columns DocumentID       varchar2(40) path 'TransmissionData/DocumentID'
                       , Student xmltype      path 'Student'     
          ) x0
       , xmltable(
            '/Student'
            passing x0.Student
            columns LastName varchar2(20) path 'Person/Name/LastName'                       
                        ,AcademicRecord   xmltype      path 'AcademicRecord' 
          ) x1          
       , xmltable(
            '/AcademicRecord/AcademicSession' 
            passing x1.AcademicRecord
            columns GradeLevel varchar2(20) path 'StudentLevel/StudentLevelCode'
                  , Courses      xmltype      path 'Course'
          ) x2
              , xmltable(
              xmlnamespaces('http://ct.transcriptcenter.com'  as "ns2b")
              , '/Course'
            passing x2.Courses
            columns CourseTitle varchar2(40) path 'CourseTitle'
                         ,NCESCode  varchar2(20) path 'UserDefinedExtensions/ns2b:ct/NCESCode'
                         --,NCESCode  varchar2(20) path 'UserDefinedExtensions/ns2b:ct/TranscriptExtensions/NCESCode'                     
          ) x3
               

    <<I'm assuming there is more to your XML than you showed, since
    StudentLevel/StudentLevelCode
    is not in the XML, but is in your query. >>
    Yes, to simplify, I left out some of the additional XML data, which is typically present, sorry for any confusion. I should have removed those references to that data in my example which was failing to retrieve the NCESCode data which was denoted by that namespace.
    Thank you very much! Your correction worked. I was not understanding until your correction how to properly reference in the XPATH for that namespace value. I'm a newbie at this, and this is my second post. But I've been able to populate quite a few relational tables and that was the first of several namespace tags I will have to deal with next, and with that help, I should be good with that syntax now.
    Thanks again for your help on this.

  • How to  Export/Import "report for the query" to another company

    Hello,
    I do this:
    1.create query in SQL analizer
    2.copy paste into SBO query generator and save
    3.create report for the query
    Then, How to Export/Import "report for the query" to another company ?
    Thanks for your HELP.

    Look for SAP Note number 600813
    That's the note Adele means, I guess.
    <b>Edit (@13:18)</b>
    The direct link:
    https://websmp101.sap-ag.de/~sapidb/012006153200000183292003E.ITF
    ---- Replace *SOURCE* with the source database name.
    ---- Replace *DEST* with the destination database name.
    insert into [*DEST*].[dbo].[RDOC]
    select [*SOURCE*].[dbo].[RDOC].*
    from
    [*SOURCE*].[dbo].[RDOC],[*DEST*].[dbo].[cinf],[*SOURCE*].[dbo].[cinf]
    where [*DEST*].[dbo].[cinf].[lawsset]=[*SOURCE*].[dbo].[cinf].[lawsset]and [*DEST*].[dbo].[cinf].[version]=[*SOURCE*].[dbo].[cinf].[version] and [*SOURCE*].[dbo].[RDOC].[Doccode]NOT IN (SELECT Doccode from [*DEST*].[dbo].[RDOC])
    insert into [*DEST*].[dbo].[RITM]
    select [*SOURCE*].[dbo].[RITM].*
    from [*SOURCE*].[dbo].[RITM],[*DEST*].[dbo].[cinf],[*SOURCE*].[dbo].[cinf] where [*SOURCE*].[dbo].[RITM].[Doccode] NOT IN (select Doccode from [*DEST*].[dbo].[RITM])AND [*SOURCE*].[dbo].[RITM].[Doccode]IN (SELECT Doccode from [*DEST*].[dbo].[RDOC])
    Hope it helps...
    Grtz, Rowdy

  • How to set defalut values for html:radio

    Hi all,
    can you please tell me how to set defalut values for radio buttons (html:radio) in struts?

    You may have more luck if you ask this Struts specific question in a forum devoted to Struts at their own homepage over there at apache.org. It may also help a lot to read its documentation and tutorials. I would really be surprised if they didn't even document such a trivial thing.

  • KMS Host for Office 2010

    AOA
    I deploying windows server 2008 r2 KMS Host successfully. Now, trying to use same machine as KMS Host for Office 2010 Professional Plus. I have adopted for activation through phone. Confirmation ID from Microsoft got it. Error encountered while installing Microsoft
    Office 2010 KMS Host License Pack:
    "Error Code: 0x2a 0xC004F015, The software licensing service reported that license is not installed"
    Tried every page GOOGLE asked but in vain, 
    Really stuck up and help required.
    Thanks in advance.

    Dear, I obtained new product key, confirmation key from MS but still no success. really at stake and guys at Microsoft are also not replying positively.
    Following error is stucking my eyes and mind
    C:\Windows\system32>cscript.exe slmgr.vbs /atp xxx-xxx-x-xx-x-x-x-(Confirmation
     ID provided by Microsoft) bfe7a195-4f8f-4f0b-a622-cf13c7d16864
    it gives following output
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    On a computer running Microsoft Windows non-core edition, run 'slui.exe 0x2a 0xC004F04D' to display the error text.
    Error: 0xC004F04D
    when run this command
    C:\Windows\system32>slui.exe
    0x2a 0xC004F04d
    Output
    is
    The
    software licensing service determined that the installation (IID) or the confirmation ID (CID) is invalid
    Thanks in advance.

  • KB2837583 CU for Office 2010 Professional Plus breaks multiple line fields document information panel

    When we install CU KB2837583 for Office 2010 Professional Plus I get an error on the document information panel in Word while saving the document to SharePoint 2010.
    The error shows a red border around the multiple lines field "Adres" saying that the field contains errors.
    We had this issue before with CU
    KB2760758, this was a bug and Microsoft has fixed this with Service Pack 2. Now we have the same issue again with this cumulative update.
    Microsoft knows this bug and
    is working on a solution?

    Hi,
    As the error message, please try the workaround:
    Uninstall the KB2826026 update patch.
    Quote from:
    http://social.technet.microsoft.com/Forums/en-US/b867398d-93fb-4015-82ee-e00f75a671d4/sharepoint-ms-word-document-only-specific-pattern-allowed-only-data-in-the-following-pattern-is?forum=officeitproprevious
    Regards,
    George Zhao
    TechNet Community Support

  • Win7 - Using KMS Server for Office 2010 - How can you query that it's actually using KMS?

    Hi All,
    Our Desktop Support alerted me to an issue in which a client received a pop-up notification about activating Office within 30 days.
    I started to dig into our KMS Service, having inherited it from a prior, now gone for greener pastures colleague of mine.
    I see the Office 2010 key on the KMS Server and there is a corresponding DNS SRV record for the Server.
    Here is that information:
    Name: Microsoft Office 2010, KMSHost edition
    Description: Microsoft Office 2010 KMS, VOLUME_KMS channel
    Activation ID: bfe7a195-4f8f-4f0b-a622-cf13c7d16864
    Application ID: 59a52881-a989-479d-af46-f275c6370663
    Extended PID: 55041-00096-199-345382-03-1033-7601.0000-1222013
    Installation ID: 021315815071370255435840389124010276914515863061481930
    Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88342
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88343
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88345
    Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88344
    Partial Product Key: xxxxx
    License Status: Licensed
    Remaining Windows rearm count: 4
    Trusted time: 2/18/2014 10:34:28 AM
    Key Management Service is enabled on this machine
        Current count: 10
        Listening on Port: 1688
        DNS publishing enabled
        KMS priority: Normal
    Key Management Service cumulative requests received from clients
        Total requests received: 26175
        Failed requests received: 0
        Requests with License Status Unlicensed: 0
        Requests with License Status Licensed: 24443
        Requests with License Status Initial grace period: 1712
        Requests with License Status License expired or Hardware out of tolerance: 12
        Requests with License Status Non-genuine grace period: 0
        Requests with License Status Notification: 8
    Thing is, I try querying for the KMS status on the Win7 machine and there is no entry anywhere that corresponds to Office 2010:
    c:\Windows\System32>cscript slmgr.vbs -dli bfe7a195-4f8f-4f0b-a622-cf13c7d16864
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    Error: product key not found.
    Where can I make certain that Win7's Office 2010 is in fact using KMS for licensing?  Is it in the registry?
    Thank you very much for your time,
    Mr Mister

    Hi,
    We might consider to use Volume Activation Management Tool to check the Activation Information:
    Reporting Activation Information Using Volume Activation Management Tool 2.0
    Or we could take a look into the application log for event ID 12288, 12289 as well as 12290. (the 12288 and 12289 should be in pairs: client query-kms response)
    More information, please take a look at the below articles:
    How to determine whether the KMS server is working
    Windows Event Log
    Hope this may help
    Best regards
    Michael
    Michael Shao
    TechNet Community Support

  • How to create registry Links for applications

    Hello NG
    I want to work with Zenworks application virtualization. Now my question is
    following.
    When i set up an application as Office 2010 the exe file for ex. Word or
    Excelwill be created. Now i need a registry value, that when I doubleclick
    to a docx or xlsx file, the appropriate software does start
    How can I do this?
    Thanks in advance for your help
    Ramon

    there are a few ways... zav can create an msi installer for you that will setup associations and copy the virt exe to any location you want (just like any other msi application installer, just with one file:). I prefer this method, but there is also another exe tool that will register those file associations, they recently changed the name but its well documented. I suggested downloading the pdf from novell, its pretty short and informative.

Maybe you are looking for

  • Recognizing an iPod with Windows Vista

    I have a new computer that came with Windows Vista. I have not been able to get iTunes to operate correctly for Windows Vista to recognize the USB connection to my iPod. Anyone have a patch or downloadable software suggestion to resolve this?

  • Mac not recognizing AP Express after AP Extreme password change...

    I have an Airport Extreme Base Station and a Airport Express as an extender. I went on Airport Utility and changed my wireless password. Since then my macbook pro is unable to recognize my Airport Express and the yellow light is flashing on the unit

  • Downloading Acrobat X Pro

    I have tried to download the trial version of Acrobat X Pro for two days, but the download link does not seem to be working. I click on it and nothing happens at all. Can anyone help, please? I am running Windows 7, 64-bit, and I have Internet Explor

  • Mac Mini Server Interference

    I just purchased a new 2012 model Mac Mini Server.  When it is powered on, my office mate's desktop PC's wireless mouse and keyboard experiences significant lags.  When I power down the Mini, the lags go away.  I have attempted to turn off Bluetooth

  • Adding on music for iphone with a new computer

    I'm sorry for this for being a noob question, but my old computer with itunes which synced with my iphone has died - so is there ANY way I can edit all song information without having to reformat/resync with a new computer? many thanks