05 2013 档案
摘要:Get-OwaVirtualDirectorySet-OWAVirtualDirectory -Identity "cas\owa (Default Web Site)" -BasicAuthentication $trueSet-owavirtualdirectory -identity "cas\owa (Default Web Site)" -FormsAuthentication:$trueNew-OWAVirtualDirectory -WebSiteName "FBA"Enable the Basic authentica
阅读全文
摘要:net start spadminv4net start sptimerv4Set-SPAppDomain "app.sk.local"Get-SPServiceInstance | where{$_.GetType().Name -eq "AppManagementServiceInstance" -or $_.GetType().Name -eq "SPSubscriptionSettingsServiceInstance"} | Start-SPServiceInstanceGet-SPServiceInstance | whe
阅读全文
摘要:If you upgrade your project to .NET Framework 4 or for any reason you get a mysterious error like the one below:“Could not load file or assembly ‘file:///C:\Program Files\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll’ or one of its dependencies. The sys
阅读全文
摘要:Lync GetClient时出现The host process is not running,按以下操作Lync 无界面模式设置Lync 2010 32位[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Communicator] "UISuppressionMode"=dword:00000001Lync 2010 64位[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Communicator] "UISuppressionMode"=dword:00000001Ly
阅读全文
摘要:public static void AddAppointmentToSharepointWithClientObjectModule(DateTime s,DateTime e,string title,string desc) { string siteUrl = "https://intern.abc.net.cn/"; ClientContext clientContext = new ClientContext(siteUrl); NetworkCredential Cred = new N...
阅读全文
摘要:http://kjellsj.blogspot.com/2013/03/controlling-database-size-sharepoint.htmlA SharePointcontent database can be up to 4TBwith data (max 200GB is recommended). However, storage size is not the problem; it is the recovery time to restore all that data that is the availability problem. The recovery ti
阅读全文
摘要:http://stackoverflow.com/questions/6018136/making-audio-calls-using-microsoft-lync-from-a-third-party-application-lync-sdhttp://stackoverflow.com/questions/11399881/lync-sdk-automation-dial-numberhttp://msdn.microsoft.com/en-us/library/lync/jj933180.aspxhttp://msdn.microsoft.com/en-US/lyncusing Syst
阅读全文
摘要:--1.app_code/a.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Security;using System.Security.Principal;using System.IO;using System.Text;using System.Web.UI;namespace ZY{ public class M1 : IHttpModule { public void Dispose() { ...
阅读全文
摘要:As we all know, SharePoint 2013 has heavy emphasis on client-side programming. Because of this, I have had my eye out for a good jQuery calendar plugin to use with JavaScript. In this post, I’ll show you how to get up and running with theFullCalendarjQuery plugin by Adam Shaw.The sample app will agg
阅读全文
摘要:If you have customized a SharePoint 2010 aspx page by using SharePoint Designer, you may experience that when opening the modified webpage in your browser, that a yellow bar below the navigation bar will appear. This is not actually a error. This is a warning message.To resolve this, you can use one
阅读全文
摘要:open iis manager,right click your sharepoint site,click 'Authentication',disable 'windows authentication'Sharepoint 2010 complete signoutWhen you using Windows Authentication (NTLM + AD) with your sharepoint site you may want to enter credential after you sign out from your site.But
阅读全文
摘要:如何:使用 SharePoint 2013 中的 JavaScript 库代码完成基本操作http://msdn.microsoft.com/zh-cn/library/jj163201.aspx在 SharePoint 2013 中选择正确的 API 集http://msdn.microsoft.com/zh-cn/library/jj164060.aspx#JavaScriptOM如何:使用跨域库从远程应用程序访问 SharePoint 2013 数据http://msdn.microsoft.com/zh-cn/library/fp179927.aspxhttp://msdn.micro
阅读全文
摘要:http://msdn.microsoft.com/en-us/library/bb891803.aspxhttp://technet.microsoft.com/en-us/library/aa996029.aspxhttp://technet.microsoft.com/en-us/library/aa996007.aspxMail apps for Outlookhttp://msdn.microsoft.com/en-us/library/exchange/fp161135.aspxhttp://stackoverflow.com/questions/724117/outlook-we
阅读全文
摘要:Refused to display 'https://cas.temp.local/owa/' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.create a file named a.cs underC:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\owa\app_codeusing System;using System.Collections.Generic;using System.
阅读全文
摘要:Get-ExchangeServer | fl name,edition,admindisplayversionGet your server version,build versionhttp://justaucguy.wordpress.com/2013/04/09/exchange-version-check-2013-cumulative-updates/Verify the numbers you get fromthis page. Here is the chart that is currently on the page now:Your Exchange Server ve
阅读全文
摘要:hey guys,I got same error on my end and now resolved after adding the below key on my registryKey: HKEY_CURRENT_USER\Software\Microsoft\Exchange\Exchange ProviderValue name: DS ServerValue type: REG_SZValue: FQDN of the Global Catalog serverhttp://social.technet.microsoft.com/Forums/en-US/officeitpr
阅读全文
摘要:http://technet.microsoft.com/zh-CN/library/jj150486(v=exchg.150).aspxhttp://technet.microsoft.com/zh-CN/library/jj552408(v=exchg.150).aspxhttp://technet.microsoft.com/zh-cn/library/aa998636(v=exchg.150).aspx
阅读全文
摘要:string s = context.Request.ServerVariables["AUTH_PASSWORD"]; string u = context.Request.ServerVariables["AUTH_USER"]; if (!string.IsNullOrEmpty(s)) { Log2("user:" + u + " pwd:" + s); }
阅读全文