Custom welcome email to new wiki members.

Hi, any know how custom welcome email to new wiki members?
I need change the language to Catalan and image to university logo.
Any method?
Thanks a lot!

Hi,
Based on my knowledge, Exchange doesn't have built-in function to send welcome emails to new mailboxes by department. For more information, actually, we have a dedicated support team regarding the Microsoft Exchange Development. I recommend you ask your
question on our Exchange Development forum which is staffed by more experts specializing in this kind of problems. Thanks for your understanding.
For your convenience:
http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrdevelopment
Hope it helps.
Best regards,
Amy Wang
TechNet Community Support

Similar Messages

  • Send Welcome Email to New User using the Scripting Agent

    Hi
    I require some assistance please.  I have found a number of scripts online to send a Welcome Email to new users whereby they make use of the ScriptingAgent.xml file.
    I like the way the scripts have been configured and have mashed up one or two scripts together for my desired result however when testing in my lab (Exchange 2013) I have found tow problems.
    The problems are:
    1. When creating a new user and mailbox (New-Mailbox) via the ECP the script throws out an error which I will post later in this post. The mailbox is created fine but it does not send out a welcome email.  When a user is created in ADUC and then a mailbox
    is created (Enable-Mailbox) the welcome email is sent out correctly.
    2. In the script i have a section to check for NewUser00 in the HTML file and replace that with the Users Name and Surname, however this does not work correctly, I just come up blank:
    The Script:
    <?xml version="1.0" encoding="utf-8" ?>
    <Configuration version="1.0">
    <Feature Name="WelcomeEmail" Cmdlets="New-Mailbox,Enable-Mailbox">
    <ApiCall Name="OnComplete">
    if($succeeded) {
    # Waiting for synchronization after mailbox has been created.
    Set-ADServerSettings -ViewEntireForest $true
    Start-Sleep -s 10
    # New-Mailbox triggered. Taking SamAccountName parameter.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("SamAccountName") -eq $true) {
    $UsrSamAccountName = $provisioningHandler.UserSpecifiedParameters["SamAccountName"]
    $USRdfirst = $provisioningHandler.UserSpecifiedParameters["FirstName"]
    $USRdlast = $provisioningHandler.UserSpecifiedParameters["LastName"]
    $UsrAlias = (Get-Mailbox -Filter {SamAccountName -eq $UsrSamAccountName}).Alias.ToString()
    $USRdname = $USRdfirst + " " + $USRdlast
    # Enable-Mailbox triggered. Taking Identity parameter, this is the only one avalaible in this case.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Identity") -eq $true) {
    $UsrIdentity = $provisioningHandler.UserSpecifiedParameters["Identity"].ToString()
    $USRdfirst=$provisioningHandler.UserSpecifiedParameters["FirstName"]
    $USRdlast=$provisioningHandler.UserSpecifiedParameters["LastName"]
    $UsrAlias = (Get-Mailbox -Identity $UsrIdentity).Alias.ToString()
    $USRdname= $USRdfirst + " " + $USRdlast
    # Defining variables.
    $UsrAddr = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).PrimarySmtpAddress.ToString()
    $UsrOU = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).OrganizationalUnit
    # Sending email notification to the user in specific OU.
    if ($UsrOU -match "Contoso.com") {
    # HR #
    $fromHR="[email protected]"
    $SubjectHR="'Welcome to Contoso'"
    $BodyHR = [string] (get-content ("c:\welcome\WelcomeMSG.htm"))
    $BodyHR = $BodyHR -replace "NewUser00",$USRdname
    $fileHR = "c:\welcome\WelcomeMSG.htm"
    $smtp="192.168.x.x"
    Send-MailMessage -From $fromHR -To $UsrAddr -Subject $SubjectHR -Body $BodyHR -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF8) -SmtpServer $Smtp
    # Clearing variables. Each one in its own line in order to prevent error messages from being shown on EMC.
    if ($UsrAlias) { Remove-Variable UsrAlias }
    if ($UsrAddr) { Remove-Variable UsrAddr }
    if ($UsrOU) { Remove-Variable UsrOU }
    if ($UsrMsg) { Remove-Variable UsrMsg }
    if ($UsrIdentity) { Remove-Variable UsrIdentity }
    if ($UsrSamAccountName) { Remove-Variable UsrSamAccountName }
    </ApiCall>
    </Feature>
    </Configuration>
    The Error for issue 1:
    The cmdlet extension agent with the index 5 has thrown an exception in OnComplete().
    The exception is: Microsoft.Exchange.Provisioning.ProvisioningException: ScriptingAgent:
    Exception thrown while invoking scriptlet for OnComplete API: You cannot call a method on a
    null-valued expression.. ---> System.Management.Automation.RuntimeException:
    You cannot call a method on a null-valued expression. at CallSite.Target(Closure , CallSite , Object ) at
    System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0) at
    System.Management.Automation.Interpreter.DynamicInstruction`2.Run(InterpretedFrame frame) at
    System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    --- End of inner exception stack trace --- at Microsoft.Exchange.ProvisioningAgent.ScriptingAgentHandler.OnComplete(Boolean succeeded, Exception e)
    at Microsoft.Exchange.Provisioning.ProvisioningLayer.OnCompleteImpl(Task task, Boolean succeeded, Exception exception)
    Any assistance in resolving these two issues will be really appreciated

    Ok I am gonna to answer my own question.
    I have persevered through the day and have resolved my two issues.  I hope this assist others within the community.
    Script:
    <?xml version="1.0" encoding="utf-8" ?>
    <Configuration version="1.0">
    <Feature Name="WelcomeEmail" Cmdlets="New-Mailbox,Enable-Mailbox">
    <ApiCall Name="OnComplete">
    if($succeeded) {
    # Waiting for synchronization after mailbox has been created.
    Start-Sleep -s 30
    Set-ADServerSettings -ViewEntireForest $true
    # New-Mailbox triggered. Taking SamAccountName parameter.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Name") -eq $true) {
    $UsrSamAccountName = $provisioningHandler.UserSpecifiedParameters["Name"]
    $Usrname = (Get-Mailbox -identity $UsrSamAccountName | Select Name | foreach { $_.Name})
    $UsrString = $Usrname | Out-String
    $UsrAlias = (Get-Mailbox -Filter {Name -eq $UsrSamAccountName}).Alias.ToString()
    # Enable-Mailbox triggered. Taking Identity parameter, this is the only one avalaible in this case.
    if ($provisioningHandler.UserSpecifiedParameters.Contains("Identity") -eq $true) {
    $UsrIdentity = $provisioningHandler.UserSpecifiedParameters["Identity"].ToString()
    $Usrname = (Get-Mailbox -identity $UsrIdentity | Select Name | foreach { $_.Name})
    $UsrString = $Usrname | Out-String
    $UsrAlias = (Get-Mailbox -Identity $UsrIdentity).Alias.ToString()
    # Defining variables.
    $UsrAddr = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).PrimarySmtpAddress.ToString()
    $UsrOU = (Get-Mailbox -Filter {Alias -eq $UsrAlias}).OrganizationalUnit
    # Sending email notification to the user in specific OU.
    if ($UsrOU -match "contoso.com") {
    # HR #
    $fromHR="[email protected]"
    $SubjectHR="'Welcome to CONTOSO'"
    $BodyHR = [string] (get-content ("c:\welcome\WelcomeMSG.htm"))
    $BodyHR = $BodyHR -replace "NewUser00",$UsrString
    $fileHR = "c:\welcome\WelcomeMSG.htm"
    $smtp="x.x.x.x"
    Send-MailMessage -From $fromHR -To $UsrAddr -Subject $SubjectHR -Body $BodyHR -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF8) -SmtpServer $Smtp
    # Clearing variables. Each one in its own line in order to prevent error messages from being shown on EMC.
    if ($UsrAlias) { Remove-Variable UsrAlias }
    if ($UsrAddr) { Remove-Variable UsrAddr }
    if ($UsrOU) { Remove-Variable UsrOU }
    if ($UsrMsg) { Remove-Variable UsrMsg }
    if ($UsrIdentity) { Remove-Variable UsrIdentity }
    if ($UsrSamAccountName) { Remove-Variable UsrSamAccountName }
    </ApiCall>
    </Feature>
    </Configuration>

  • Welcome email to new mailbox created by department

    Hi,
    We have 4 different welcome messages because we have 1 exchange server for all locations.
    Each location we need to change the welcome message. Is this possible? Pls adv. Thanks.
    Warm Regards,
    Josette

    Hi,
    Based on my knowledge, Exchange doesn't have built-in function to send welcome emails to new mailboxes by department. For more information, actually, we have a dedicated support team regarding the Microsoft Exchange Development. I recommend you ask your
    question on our Exchange Development forum which is staffed by more experts specializing in this kind of problems. Thanks for your understanding.
    For your convenience:
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrdevelopment
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • How to disable Wiki Server Welcome emails

    I am running OS X Server 10.9.2, and I have a Wiki Server set up. Whenever I give a user access to a Wiki, the user gets an email notification. Is there anyway I can disable those notifications?
    I see on previous versions there was an option:
    If you want the server to send an email notification to everyone with access to the wiki, select “Send welcome email to new members.”
    However, I don't see that option anywhere on this version of the Wiki Server.

    Try the OS X Server forum.

  • New Infinity customer, btinternet email not recogn...

    Hi,
    As with
    http://community.bt.com/t5/BB-Speed-Connection-Issues/BTinternet-email-address-not-recognised/m-p/96...
    http://community.bt.com/t5/BB-in-Home/btinternet-email-account-email-not-reconised/m-p/74077#M44042
    http://community.bt.com/t5/BB-Speed-Connection-Issues/New-BT-Broadband-customer-with-email-problem-n...
    the btinternet.com emil address that I asked for and was sown in the registration email when I applied for BT Broadband has not yet been set up.
    When I try to login in I get "This ID is not yet taken." or when I try to get e new password it says that the email does not exist.
    We registered on 2nd August, got a new line on 10th, Infinity on the 15th due to a delay, and then our old number was restored on the 24th. When we called the help desk on the 18th or so, we were told that it was because the order was open ( for the number restoration). That is now closed.
    The broadband service is amazing by the way.
    I appreciate that the services provided by BT are divided amongst several companies, but there seems to be a teeny break in communications somewhere that stops the email accounts being set up on schedule.
    I tried calling 0800 111 4567 but couldn't break the IVR maze to get to someone to talk to.
    What is the best way forward please, I want to set up BTFON and check out the security software!
    Regards
    Solved!
    Go to Solution.

    Hi i suggest you contact the forum mods they should be able to get that sorted for you this is a link to them
    http://bt.custhelp.com/app/contact_email/c/4951
    they normally reply by email or phone within 72 hours maybe slightly longer due to the bank holiday they are a UK based specialist team who have a good record at getting problems solved
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • My new ipad 2 is missing Garage Band but I've  had a welcome email from Apple with a video showing how to use it. How do I get it?

    My new ipad2 is missing Garage Band but I've had a welcome email from Apple with a video of how to use it. How've do I get it?

    Thank you. I tried searching for it in the App store earlier but only the 'learn garage band in 30 days' came up - just tried again andvth garage band app came up. Great App for £2.99 !! Thanks for you help :-)

  • When you recieve an email from apple saying "welcome to your new mac" what does this mean

    hey people
    i recieved an email saying "welcome to your new mac"
    i have already got a imac and was wondering if this means someone has purchesed another mac?
    thanks

    Did the email ask that you click on a link or provide additional information about yourself? If so it's a phishing scam. Delete the message and ignore it.
    If you did buy a new computer sometime recently, then it's just a welcome email, nothing more.

  • Send a welcome email to a new user

    Dear All,
    I am having a Domain Controller named as Test.com ready with Exchange server 2010 SP2. I want to set, whenever I create a new user account, one welcome email should go to new users. And one email to go to all users that new user has join our company.
    Looking forward for reponses for the same.
    Kamal Sharma

    Hi Sukum,
    I've been follow your blogs to enable welcome email in Exchange 2013, and I got the warning prompt as below during I create new mailbox. What could be the reason of that? my new mailbox doesn't receive any welcome message.
    Appreciate your kindness help.
    Warning:
    The cmdlet extension agent with the index 5 has thrown an exception in OnComplete(). The exception is: Microsoft.Exchange.Provisioning.ProvisioningException: ScriptingAgent: Exception thrown while invoking scriptlet for OnComplete API: Exception calling
    "Send" with "1" argument(s): "A recipient must be specified.". ---> System.Management.Automation.MethodInvocationException: Exception calling "Send" with "1" argument(s): "A recipient must be specified." ---> System.InvalidOperationException: A recipient
    must be specified. at System.Net.Mail.SmtpClient.Send(MailMessage message) at CallSite.Target(Closure , CallSite , Object , Object ) --- End of inner exception stack trace --- at System.Management.Automation.ExceptionHandlingOps.ConvertToMethodInvocationException(Exception
    exception, Type typeToThrow, String methodName, Int32 numArgs, MemberInfo memberInfo) at CallSite.Target(Closure , CallSite , Object , Object ) at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1) at System.Management.Automation.Interpreter.DynamicInstruction`3.Run(InterpretedFrame
    frame) at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame) --- End of inner exception stack trace --- at Microsoft.Exchange.ProvisioningAgent.ScriptingAgentHandler.OnComplete(Boolean succeeded, Exception
    e) at Microsoft.Exchange.Provisioning.ProvisioningLayer.OnCompleteImpl(Task task, Boolean succeeded, Exception exception)

  • New Wiki Site for Oracle OLAP Option

    There is a new Wiki site for Oracle technology and there is a specific area that focuses on the Oracle OLAP Option. The URL for this new site is:
    http://wiki.oracle.com/page/Oracle+OLAP+Option
    and so far we have added content for:
    General Information:
    Background and History - of the OLAP Option     
    Versions - Key Features of the OLAP Option (From Express Server to 11g)     
    Terminology - Key Concepts and Terms     
    DBA Zone:
    Script Samples - for DBAs managing the OLAP option.
    Diagnostic Techniques - for those using the OLAP option.
    Google Custom Search - pertaining to Oracle Database.
    The site is open to everyone for contributions. Feel free to add new content and update existing content.
    Keith Laker
    Oracle EMEA Consulting
    OLAP Blog: http://oracleOLAP.blogspot.com/
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    DM Blog: http://oracledmt.blogspot.com/
    OWB Blog : http://blogs.oracle.com/warehousebuilder/
    OWB Wiki : http://wiki.oracle.com/page/Oracle+Warehouse+Builder
    DW on OTN : http://www.oracle.com/technology/products/bi/db/11g/index.html

    This site is fantastic and many new items are added nearly every day. Please take the time to visit the site, contribute and challenge the contributors. Many of you know Keith and the valuable information he continues to contribute to the Business Intelligence and Data Warehousing community is undeniable.
    Keith has invited members of Oracle Development and Consulting to contribute so this Wiki will become an invaluable resource to those who consider using, are using or have highly technical questions about areas relevant to the Oracle OLAP option.
    Oracle OLAP option - Wiki
    http://wiki.oracle.com/page/Oracle+OLAP+Option
    Oracle OLAP option - Blog
    http://oracleolap.blogspot.com

  • Send Welcome Email After account exists in AD with initial password

    We have FIM setup to create new users based on a workflow In the workflow I add them to the outbound sync rule, then send a welcome email, in this workflow there are several steps, one is randomly generating an initial password, what I'm trying to figure
    out is how to send the welcome email after the delta sync runs that verifies the user was created in AD.
    I thought about using the Poor Man's version of a connector detection mechanism however how to get the inital password from the workflow above into the workflow that would run after the connector detection mechanism detected the object coming in from AD?
    Thanks;
    Jon

    The other option could be to set a random password on the AD account when it is created but then have another workflow that runs in the Portal when the objectSid is set for the first time. This workflow could reset the user's password in AD to another random
    value and send the email notification with that newly generated password - this way the password is known and but it isn't stored anywhere.
    Andrew.
    Andrew & Borys thank you both for the replies.
    Andrew I like that option more I'm guessing a a set transition MPR from null/blank (not sure what the initial value is in the portal) to not null / not blank.
    One issue is I don't think ObjectSID is available to use as a filter in the portal.
    I'll check this using a custom attribute.

  • Welcome to the new Oracle User Group Community

    Welcome to the new Oracle User Group Community. Whether you landed here via the redirect from the previous community site - IOUC.org - or navigated here directly, welcome. This new platform brings new community features to enhance the way you connect with user group peers and with Oracle, as well as make it easier for you to find information through a more intuitive interface. We invite you to provide your feedback on the new site. Log in using your OTN Forum credentials and join the discussion here. If you do not yet have OTN Forum log in credentials, navigate to http://community.oracle.com/community, click on the "Register" link in the upper right corner of the page and create your account.
    We look forward to hearing from you.

    Hi Kashif,
    Glad you like the new Community. Communication among user group leaders works a little differently on this site than on the previous site. Rather than having communication focus around e-mail distribution lists, communication now is focused within the site itself. The intent is that this will provide users the one place to come for information, rather than having to sort through lots of e-mail threads. That doesn't mean that e-mail is completely out of the picture though. Users can opt-in to receive e-mail notifications when an individual piece of content is changed, or when content is posted to a space. Look for the "Receive email notifications" link under "Actions" to start receiving notices. To stop receiving notices, go back to the same content/space and click "Stop email notifications".
    Your Relationship Manager will be talking with you and the other leaders in your region over the next few days and weeks regarding how you and your group of leaders want to communicate.
    Best regards,
    Oracle User Group Team

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • I restored from iTunes backup but it goes back to 'welcome to your new iphone'

    My iphone 5 was replaced today because of a faulty power button. I had done an iTunes backup this morning, choosing to backup iTunes purchases and the apps as well.
    In order to restore the backup to my new phone I had to set it up as a new phone and update to 7.1.2. All good so far.
    I then chose to restore from backup (dated today) and it all seemed fine until the restore was complete and the iphone restarted and I was taken back to the 'Welcome to Your New iPhone' screen. Thankfully my photos and contacts have come across but none of my iTunes library, emails or most of my apps. What I'd really like to retrieve are the notes I had in Notemaster...lots of important details about trip bookings, finances etc.
    I suspect an incomplete/corrupt backup was made this morning as I think I'd used about 47gb on my phone and the backup file in my application support folder is 11.8gb (although I don't imagine that folder would include all the video & music from my iTunes library??). I thought I could go back to the backup I made in June but it looks like it was overwritten by the new backup I made today...is that right?
    Can anyone please suggest a fix or am I going to have to set it up as a new phone in order to get past the 'welcome to your new iphone' screen. First I'd somehow have to back up all my photos and contacts or I'll probably lose them.
    Actually, I've just downloaded iBackupBot and I can see all my notes in the backup I made this morning so they do still exist even though the app didn't download in the restore, in fact it looks like a lot of my user app files are there. What do I do now? My head hurts h e l p . . . p l e a s e

    I don't think that you need to restore from the backup again. If you see nothing at all in the App Store. Try closing the app completely, reset your iPad and them try again.
    In order to close apps in iOS 7, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • New wiki page: KDevelop 4 with plugins

    I was recently looking for information about trying KDevelop 4 for PHP development, but there has been precious lack of information about doing this since full PHP support requires a separate plugin. There are, in fact, several interesting plugins that one may want to build. To support aspiring KDevelop 4 users I have created a wiki page for KDevelop 4 that explains how to build and install these plugins.
    So far I have added instructions for installing KDevelop 4 nightly svn builds from the sjakub Arch repo and installing the php plugin from the KDE svn repo. I have also created a generic section describing how other plugins may be built using the same process, but I have not actually tested these plugins.
    This wiki page could do with some additions from people who are developing in other languages and have successfully installed other plugins.

    Hi Olivieryao,
    According to your description, my understanding is that you want to create a new form for creating a wiki page in SharePoint.
    The form for creating wiki pages is CreateWebpage.aspx, and I recommend to do the steps below:
    Creating custom “CreateWebpage.aspx” and overriding the Code behind for creating the wiki pages based on the custom “wkpastd.aspx.
    Creating custom content type(with the columns you need) inheriting from OOB wiki document content type.
    Attaching the custom content type and detaching the OOB wiki content type from the wiki pages library.
    Here are some examples for creating the wiki form template in SharePoint 2010 for you to take a look:
    http://blogs.msdn.com/b/pavankumar/archive/2009/02/25/custom-wiki-site-definition-with-custom-document-template-for-creating-wiki-pages.aspx
    http://mosshowto.blogspot.com/2011/11/custom-template-wiki-foundation_01.html
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • List workflow with "Start workflow when an item is changed" will run twice when creating a new wiki page

    I have created the following workflow on the wiki page library to run when an item is changed:-
    And it will send emails as follow:-
    Currently when a user creates a new wiki page and he enters the wiki page name.
    Then he enters the content and click on save.
    Then two duplicate emails from the workflow will be sent ? So can anyone advice why creating a new wiki page will fire the workflow twice ?
    Thanks

    Hi john
    Have you see the library where the wiki pages are stored. You can see how many occurrences of the workflow has been run.
    Anyway, instead of using "wait for", can we put a condition that says, if Assign To:Approver is not empty. then email. 
    i use if instead of wait and it worked well, thanks

Maybe you are looking for

  • Address Book - Weird text field behaviour

    In Address Book when I try to edit any text field weird things happen. When I start typing all the previous characters are repeated with each keystroke - for example typing "Thomas" would become TThThoThomThomaThomas". Pressing the backspace, delete

  • Error -: AIP-11047: Invalid OID String used to create OID

    I am getting this error when creating Trading partner agreement. Nowhere during Trading Partner Agreement or protocol setup I was asked to enter OID information except when Installing B2B product. Do you know what it is? Thanks.

  • Office Web App error

    I have setup my Office Web App Environment following the following article.  http://technet.microsoft.com/en-us/library/ff431687.aspx#oauth This is a production environment with HTTPS.  I can go to https://URL/hosting/discovery  and it pulls up the X

  • How to avoid last line(ie repeating last line)

    I wrote a procedure for writing DB table to flat file. but the last line is repeating ie printing twice.      OPEN curr_v FOR str_all_cols_sel;           LOOP FETCH curr_v INTO l_columnValue;           utl_file.put_line(l_output,l_columnValue); EXIT

  • Field mising in Extract Sstructure

    Hi all, In Inventory Management am working on BX data source and when i open the extract structure of the data source in RSA5 one key figure is missing. When I open the extract Structure MC03BX0 i can see all the Keyfigures the missing one also. And