How to Change/Delete Spurious "Copywrite" tag attached to VS Ouput

I am using VS 2013 Express with Win8.1 on HP Envy700-329, purchased 2014/12/29 as downloaded & installed 2014/12/30.
As I began to gather work product for distribution, I noticed that some of the files created within VS [.exe] have the Copyright Tag "Copyright @ Hewlett-Packard Company...".
To me, HP is the last in line after myself, >nothing< and Microsoft.   Actually, MS might look best, but - really?
Yes, I can go through each and every .exe file, open the properties page and make the change.   However, my preference would be to remove, in 1 step,  the root cause which I suspect is a data set within Windows that identifies HP as the
absolute ruler of my computer.
In addition, HP shows up as "Company" in the properties of any ".DOCX" files that I create for help and information purposes.
Therefore, I am looking for guidance in identifying the probable software item that stores the HP identifier and how to remove the tag, or replace it with a more appropriate tag.
Thanks to all who took the time to read this far......    
Vinelander

Hi Vinelander,
>>I can go through each and every .exe file, open the properties page and make the change.   However, my preference would be to remove.
According to your description, could you please tell me where you open the properties page and make the change.
Generally, I know that the copyright is used to specifies a notice for the assembly manifest.
https://msdn.microsoft.com/en-us/library/1h52t681.aspx?f=255&MSPPError=-2147217396
And we can right-click the .exe project from the Solution Explorer Windows in the VS IDE->Select the Properties->Application->Assembly Information...
And then we could make a change for this Copyright Tag or Company tab like the following screen shot.
As you said that about how to remove the Copyright Tag option, I know that it is not possible to remove this Copyright Tag option from the VS IDE by default.
If I misunderstanding your issue, please tell me.
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How do I delete a character tag so it does not continue to show up in my designer.

    Hello.
    I have deleted a character tag from the catalog but it keeps showing up in the designer and stays associated with any new paragraph tag I try to create. How can I set the character designer to blank?
    Thanks

    >System Preferences>Mission Control>Show Desktop...should be F11:
    If not, change it.

  • 6233 how do i delete voice dialling tags?

    Hi everyone
    I have just purchased a nokia 6233. I have found that it has automatically added a voice tag to each of my contacts. I can remove them from other functions like profiles but I cannont work out how to remove them from contacts.
    does anyone know how to remove them from contacts?
    Ta
    Poppit

    As far as i know with the 6233 which i own you cannot delete the voice tag on your contacts as the phone picks it up when you enter that contact if you want a different activation i would suggest changing the names (and remember who they are) and that would solve that problem but i don't think you can delete the tag as so much as change it.
    Phones owned: 7
    Nokia: 6
    Models:
    3310,3200,6610i,6060,6233,6120c
    Current: 6120c and loving it.

  • How to change the default element tag using dbms_xmlgen

    here is my code that generate output for purchase order data. I followed the syntax shown in xml db developer guide.
    I am getting the results but element tags are CAPS letters( As the coloumn names in the type defenitions are stored in CAPS in Oracle). but I need to show in small letters as per my requirement.
    can anyone help me how to change the default tag names for elements.
    ==================================HERE IS THE CODE==================
    DECLARE
    qryCtx DBMS_XMLGEN.ctxHandle;
    result CLOB;
    BEGIN
    qryCtx := DBMS_XMLGEN.newContext
    ('SELECT PODL_H_T
    ( CLOSEDDATETIME ,
    COMPANY ,
    CAST(MULTISET
    (SELECT LINENUMBER ,
    COMPANY ,
    PURCHASEORDERID ,
    ITEM ,
    QUANTITYUM ,
    TOTALQUANTITY
    FROM cpo_wms_podl_LINES
    WHERE PURCHASEORDERID = PH.PURCHASEORDERID) as PurchaseOrderDetailList
    FROM cpo_wms_podl_HEADERS PH ');
    -- now get the result
    DBMS_XMLGEN.setRowSetTag(qryCtx, 'Receipts' );
    DBMS_XMLGEN.setRowTag(qryCtx, 'PurchaseOrder' );
    result := DBMS_XMLGEN.getXML(qryCtx);
    INSERT INTO temp_clob_tab VALUES (result);
    DBMS_XMLGEN.closeContext(qryCtx);
    END;
    -- select * from temp_clob_tab
    ===========create type script=====================
    cpo_wms_podl_HEADERS
    CREATE or replace TYPE PurchaseOrderDetail AS OBJECT(
    LINENUMBER VARCHAR2(400 BYTE),
    COMPANY VARCHAR2(400 BYTE),
    PURCHASEORDERID VARCHAR2(400 BYTE),
    ITEM VARCHAR2(400 BYTE),
    QUANTITYUM VARCHAR2(400 BYTE),
    TOTALQUANTITY NUMBER
    create type PurchaseOrderDetailList as table of PurchaseOrderDetail
    create table temp_clob_tab(result CLOB)
    create type podl_HEADERS_list_t as table of podl_HEADERS_t
    CREATE or replace TYPE PODL_H_T AS OBJECT
    CLOSEDDATETIME DATE,
    COMPANY VARCHAR2(400 BYTE),
    CREATEDDATETIME DATE,
    PURCHASEORDERID VARCHAR2(400 BYTE),
    SHIP_TO VARCHAR2(400 BYTE),
    linelist PurchaseOrderDetailList
    )

    but I need to show in small letters as per my requirement.add alias column names in double quotes as in
    SQL> select dbms_xmlgen.getxmltype('select dname "DeptName", loc "Location" from dept') dept_xml from dual
    DEPT_XML                                                                       
    <ROWSET>                                                                       
      <ROW>                                                                        
        <DeptName>ACCOUNTING</DeptName>                                            
        <Location>NEW YORK</Location>                                              
      </ROW>                                                                       
      <ROW>                                                                        
        <DeptName>RESEARCH</DeptName>                                              
        <Location>DALLAS</Location>                                                
      </ROW>                                                                       
      <ROW>                                                                        
        <DeptName>SALES</DeptName>                                                 
        <Location>CHICAGO</Location>                                               
      </ROW>                                                                       
      <ROW>                                                                        
        <DeptName>OPERATIONS</DeptName>                                            
        <Location>BOSTON</Location>                                                
      </ROW>                                                                       
      <ROW>                                                                        
        <DeptName>SALES</DeptName>                                                 
        <Location>MUNICH</Location>                                                
      </ROW>                                                                       
    </ROWSET>                                                                      
    1 row selected.

  • How to change the link in the attachment of a notification

    Hi All,
    We have a requirement in the workflow. The notifications from workflow are sent as email with attachments in it to the performers which contains the login links to Instance. We have two Middle tiers in our architecture(Public and Private MTs). The requirement is to change the link in the notification attachments from private Middle Tier to Public MiddleTier.
    Please help on how to change.
    Thanks in advance
    Raghava.

    Hi Thomas,
    You can find the solution in thread below:
    http://scn.sap.com/thread/2076928
    Nghia

  • How to change/delete iCloud address, created with typo the first time

    How can I change or delete this, I had a typo when creating this originally and am unable to find a solution.  I understand that an alias can be created, but I would rather just start over.
    I do not use the @me account as a primary apple account, I have a comcast account for that.  The reason this came up is when I wanted to sync notes with iCould, it forced me to create this, then I had a type and was unable to change it since then.

    Unfortunately, you cannot change your .me address once you have created it. The only thing that you can do is use an alias, or create a new Apple ID using the .me address of your choice.

  • How to change delete order?

    Hello,
    I have classes C, C1, C2. C has private owned 1-N mapping to C1 and private owned 1-N mapping to C2. C1 has 1-1 mapping to C2.
    Assume c has c1 and c2, c1 has c2. When I save c, TopLink inserts c, then c2, then c1. Now I remove c1 and c2 from c (from private owned collections) and save c. TopLink tries to delete from database c2 first - I get
    "integrity constraint violated - child record found".
    Of course it is found - I would like TopLink to remove c1 first, then c2. Why are DELETE statements executed in the same order like INSERT statements? How can I change that order?
    Thanks

    I'd like to share one possible workaround. It seems that the order of delete operations depends on the order of mappings in descriptor (attributes seems to be sorted alphabetically in project XML generated in TopLink workbench). So I did something like this (in afterLoad method) to ensure the correct order of DELETE operations.
    DatabaseMapping mapping1 = pDescriptor.getMappingForAttributeName("att1");
    DatabaseMapping mapping2 = pDescriptor.getMappingForAttributeName("att2");
    DatabaseMapping mapping3 = pDescriptor.getMappingForAttributeName("att3");
    DatabaseMapping mapping4 = pDescriptor.getMappingForAttributeName("att4");
    if (mapping1 != null) {
    pDescriptor.removeMappingForAttributeName("att1");
    pDescriptor.addMapping(mapping1);
    if (mapping2 != null) {
    pDescriptor.removeMappingForAttributeName("att2");
    pDescriptor.addMapping(mapping2);
    if (mapping3 != null) {
    pDescriptor.removeMappingForAttributeName("att3");
    pDescriptor.addMapping(mapping3);
    if (mapping4 != null) {
    pDescriptor.removeMappingForAttributeName("att4");
    pDescriptor.addMapping(mapping4);
    }

  • How to change display name of the attachment item attribute.

    Hello Experts
    I have a requirement to send a notification with attachment but attachment name should be attachment name,
    Is there any way to change the display name of the Attachment
    Please advise;
    Thanks
    Rajesh.

    Azmathulla,
    It is not possible to change the name of the server, but you can add a label to it (see attached screenshot).  And yes, it can be done during production hours, this doesn't affect the production data.
    Please let me know if this answers your question.

  • How to change behavior of Select tag onKeyPress event

    I am populating a netui:select dropdown with a list of around 1200 items. Since it is so long, I would like to allow the user to type in the box to get close to their selection. Right now, the default behavior is to allow only one character to be typed to locate an item.
    I would like to change the behavior so that when the user quickly types three characters (or more), it matches the selection to the three that they typed. It seems to be firing on the onKeyPress event. Is there anyway to modify this?

    Hii,
    I am unable to understand exactly wat you want.
    But for free amount of lines : Keep that text under LOOP. Right click on template or window and create a loop and under that loop keep the text ,you can get many lines. or the given below point plzz follow.
    1,Use SO10 Tcode to write standard text in Smartform.
    2.For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    3.
    1. take function module name of the smartform.
    2. goto se37 and type that fm name.
    3. goto attributes tab
    4. double click on either program or include .
    5. There u can find all the subroutines used inside smartform.
    6. search for "perform %move using %textkey-name".
    4.Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.
    check the tables STXH & STXL.
    5.
    How to CAll Standard Text in Smart Forms
    In SFs you can insert the standard tests using the TEXT node. Create a TEXT NODE. Then in the GENERAL ATTRIBUTES of this TEXT node select INCLUDE TEXT in the TYPE option. Then you have to enter the text name, object , ID and language in the provided fields. Then if you dont want any error if there is no text in the corresponding text then CHECK the check box "No errors if no text available.

  • Change/Delete Existing Pricing Condition Type

    Hello
    I have a manu Pricing Condition Type and a rate(obtained from custom source) was inserted pro-grammatically into this line item whenever the new line item was added into the basket using CRM_ISA_BASKET_ITEMS badi.
    When the user changes the Qty for the same line item, I want to delete the existing condition rate(manual) and find the new current rate from the custom source and add that to this Line Item.
    Question: How to change/delete existing Condition Rate ?
    Cheers
    RJ
    Reference: E-Commerce Implementation

    Hello,
    You can use java condition value user exit for this.
    Thanks and Regards
    shanto aloor

  • How to change XML Tag sequence in XML Publisher Reports

    Hi Experts,
    I am working on XML Publisher reports, EBS 11I and Database 9i. I have standard report 'PO Printed Purchase Order Report (XML)', it's output type is XML. I want to change the sequence of groups in XML file.
    I am getting XML tags like below at present:
    LIST_G_HEADERS \ G_HEADERS \ LIST_G_HEADER_NOTES
    I want to change the sequence of groups like below.
    LIST_G_HEADERS \ G_HEADERS \ LIST_G_LINES \
    Could somebody help me how to change the sequence of XML Groups.
    Thanks in advance.

    Paul,
    This works.  Thanks!
    I am still working through the implications of having a data connection defined.  I notice that every time I submit, it creates two records in my database, one with all the fields blank, and one with the data and attachment.
    I will have to do some more digging into the double submission, but at least it is uploading the file.
    Thanks again,
    Ed

  • How do I delete an iCloud account from my iPad that I no longer know the password for and have no access to the email account to change it?

    How do I delete an iCloud account from my iPad that I no longer know the password for and have no access to the email account to change it?

    You will need the password. If you can't get it reset via http://iforgot.apple.com (if you remember the answers to the account's security questions then you should be able to reset it via them) then try contacting Support in your country, they should be able to reset it.
    Contacting Apple about account security : http://support.apple.com/kb/HT569
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html

  • How to Change attachment URL on a Purchase Req?

    Attachments in the EBP shopping carts are transferred to an ITS server and are linked to a back end R/3 Purchase Requisition. 
    Note that the attachments are physically stored on ITS server and the link (URL) to the attachment and Purchase Req is stored in SAP. 
    As a part of decommissioning, the server which was used for storing attachments is replaced with a new server and all the attachments are moved to new server.  
    Since the link associated to the Purchase Req and attachment is not changed, when user is trying to open the Purchase Req attachment, it is not displaying becuase all the attachments are moved to new server. 
    How to change the link (URL) in the Purchase Req so that it will point out to the new server instead of old server. 
    Due to the following reasons manually changing the URL is not advisable.
    1) 40,000 attachments link need to be changed.
    2) System is not allowing to change the URL manually because of the user differences.  All the attachment links are attached to Purchase Reqs by RFC user (since these are transferred from EBP environment). 
    Please advise what should be the feasible solution to change the URL (link) on the Purchase Req so that business can open the attachment with no issues.
    Thanks in advance

    According to SAP, since purchase order is a legal document they do not support the process of changing document number.  They suggested I do the change with debug and replace at my own risk.  In ME22N go to debug and type MEPO_TOPLINE-BEDAT.  The values for this field show up as 29991231 that should be changed to 20191231 and press F8, then save the purchase order.

  • How can I import photos from iPhoto '09 to Elements Organizer 10 while keeping the tags attached?

    I have spent a ridiculously long time tagging photos in my iPhotos but I would now like to transfer all my photos to Elements Organizer and preserve all the work I had done.
    From Adobe's help website (http://help.adobe.com/en_US/elementsorganizer/using/WS73c05ee9864270ea-417df45c129593bfa05 -8000.html) it says I can import the tags along with the photos but does not explain how:
    "Elements Organizer 10 supports importing photos, along with their associated captions, tags, and ratings, from iPhoto. You also have the option to import information such as events and albums to maintain the organization of your library"
    When I follow the steps outlined on the website my photos are imported but there are no tags attached to them. I am particularly interested in keeping my facial tags but I suppose it would be useful to know how to keep other keyword tags and ratings as well.
    There was a previous question put out on the forums similar to this but it was unresolved and the person decided to just leave everything in iPhoto. I really would prefer to transfer all my photos to Elements Organizer. I don't like the way iPhoto organizes photos but I had to deal with it for several years before I bought Elements Photoshop with built-in Organizer.
    Please Please help!
    Many thanks
    D.M.

    You don't import one library to another.  Just copy the library from the iBook to the Pictures folder on shout new MacBook Pro. If you have another library already on the MBP rename it so you don't overwrite it with the old library.
    Launch iPhoto with the Option key held down and select the newly copied library and let iPhoto convert it to the new version.
    Do you have photos in the library on the new MacBook Pro that you want to combine with the older library?

  • On my windows Itunes I changed computers and ended up with two of every song. How do I delete the duplicates without doing it one at a time?

    I have duplicates of all the songs on my windows 7 computer.  I changed computers and ended up with duplicates of all of my songs. How can I delete them all without having to do it one at a time? thanks!

    Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

Maybe you are looking for