DCSIMG
ITPRO - Dudi Nissan's Blog

Dudi Nissan's Blog

SharePoint, ASP .Net, SQL

Links

SharePoint 2010 Custom Fields

Browse by Tags

All Tags » ITPRO (RSS)
SharePoint 2013 Setup Error - Can't Install AppFabric (Offline Environment)
בסביבה ללא תקשורת אינטרנט (Offline), נתקלתי בבעיה של התקנת Prerequisite של AppFabric עבור התקנת SharePoint 2013. הודעת השגיאה: Microsoft.ApplicationServer.Setup.Core.SetupException: AppFabric Server upgrade failed because backing up configuration for V1 failed. Please try again. ---> System.Management.ManagementException: Not found at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode) at System.Management.ManagementObject.Initialize(Boolean getObject) הפתרון...
Windows 8 Evaluation Download
Windows 8 Evaluation ל-90 יום ניתן להורדה באתר מיקרוסופט כאן . הערה בנושא ההורדה במסך ההורדה Please wait while the Download Manager begins your download. -------------------------------------------------------------------------------- If you have not already installed ActiveX control or the JavaTM applet, an information box will appear in your Microsoft Internet Explorer browser prompting you to install "ActiveX control:...". If the Download Manager can not install the ActiveX control or...
Posted: Aug 23 2012, 10:24 AM by dudin | with no comments
תגים:,
Free ebook: Programming Windows 8 Apps with HTML, CSS, and JavaScript
הורדה חינם של ebook בנושא Programming Windows 8 Apps with HTML, CSS, and JavaScript כאן ניתן לראות את רשימת כל ה-Free ebooks כאן
Posted: Jun 28 2012, 10:18 AM by dudin | with no comments
תגים:,
Free ebook: Introducing Microsoft SQL Server 2012
הורדה חינם של ebook בנושא Introducing Microsoft SQL Server 2012 (נכתב ע"י Ross Mistry ו-Stacia Misner) כאן
SharePoint 2010: List of DataBases
ניתן לראות את רשימת ה-DataBases של SharePoint 2010 באמצעות הפקודה Get-SPDataBase , לדוגמא: Get-SPDatabase | Sort-Object disksizerequired -desc | Format-Table Name
SharePoint 2010: Central Administration DataBase Connection Settings in the registry
שם שרת בסיס הנתונים ושם ה-DataBase של SharePoint 2010 Central Administration נשמר ב-registry בשרת במיקום HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\Secure\ConfigDB ב-string value בשם dns
SharePoint 2010: How to delete Extend Web Application using STSADM Command
אחת היכולות של SharePoint 2010 הינה Extend של Web Application : בכדי למחוק Web Application אשר נוצר ע"י Extend, ניתן ב-SharePoint 2010 Management Shell להקליד את הפקודה הבאה לדגומא: stsadm.exe -o unextendvs -url http://www.website.com -deleteiissites
Could not load type 'Microsoft.Office.Server.Search.Administration.SearchQueryAndSiteSettingsServiceProxy' from assembly 'Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'
נתקלתי בהודעת השגיאה הבאה באפליקציית Windows WPF או Windows Forms Application: Could not load type 'Microsoft.Office.Server.Search.Administration.SearchQueryAndSiteSettingsServiceProxy' from assembly 'Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' פרטים נוספים הקוד של האפליקצייה כאן הפתרון שינוי Platform target לערך Any CPU בחלונית ה-Properties של הפרויקט:
Posted: Nov 06 2011, 09:43 AM by dudin | with 1 comment(s)
תגים:, ,
SharePoint 2010: Add Items to List
SharePoint 2010 מאפשר להוסיף Items (פריטים) ל-List (רשימה) באמצעות קוד. הנה דוגמא: using ( SPSite Site_ = new SPSite ( SPContext .Current.Web.Url)) { using ( SPWeb Web_ = Site_.OpenWeb()) { SPList SPList_ = Web_.Lists[ "ListName" ]; SPListItem SPListItem_ = SPList_.Items.Add(); SPListItem_[ "Title" ] = "Text" ; SPListItem_.Update(); } }
FAST Search for SharePoint 2010 Programming
FAST Search for SharePoint 2010 כולל אפשרויות תכנות קוד של תוצאות החיפוש ובכך ניתן לבצע שאילתות חיפוש בעלות לוגיקה עיסקית מורכבת מאוד. הנה דוגמת קוד של הצגת תוצאות חיפוש: using Microsoft.Office.Server; using Microsoft.Office.Server.Search; using Microsoft.Office.Server.Search.Administration; DataTable dtResult = new DataTable ( "FAST_DataTable" ); string Text2Search = "text2search" ; string FieldName = "fullname" ; string FAST_ServiceApplicationName = "FAST_Query_Service"...
FAST Search for SharePoint 2010: "There are too many results for this search. Please try your search again with more specific keywords."
נתקלתי ב-FAST Search for SharePoint 2010 בהודעת השגיאה הבאה: There are too many results for this search. Please try your search again with more specific keywords. וההודעה בעברית: ישנן תוצאות רבות מדי עבור חיפוש זה. נא נסה שוב לבצע את החיפוש עם מילות מפתח ספציפיות יותר. מידע נוסף ההודעה לא הופיעה כאשר היו 1000 פריטים בחיפוש, אבל הוצגה כאשר היו בה 30,000 פריטים: הקוד ללא הודעת השגיאה - כולל את האופרטור equals string FieldName = "Country" ; string Text2Search = " אר " ; Microsoft...
Posted: Oct 26 2011, 01:56 PM by dudin | with no comments
תגים:, , ,
How to Work Direct from WPF Application on Excel Worksheet
כדי לאפשר גישה מאפליקציית WPF לקובץ Excel (בתחנת פיתוח אשר מותקן Office 2010), יש לבצע פעולה פשוטה של הוספת Reference c:\Program Files\Microsoft Visual Studio 10.0\Visual Studio Tools for Office\PIA\Office14\Microsoft.Office.Interop.Excel.dll הקוד הבא יעבוד בצורה תקינה: Microsoft.Office.Interop.Excel. Application ExcelFile = new Microsoft.Office.Interop.Excel. Application (); ExcelFile.Workbooks.Open( "ExcelFilePath" , Type .Missing, Type .Missing, Type .Missing, Type .Missing, Type .Missing...
Posted: Oct 24 2011, 10:18 AM by dudin | with no comments
תגים:, ,
FAST Search for SharePoint 2010: How to use "Contains" in FQL Search
FAST Search for SharePoint 2010 מאפשר לבצע שאילתות שונות ומורכבות באמצעות FQL . להלן דוגמא כיצד לבצע שאילתא של חיפוש טקסט Contains ("מכיל") בשדה מסויים, לדוגמא: חיפוש טקסט " רא " בשדה Country יציג בתוצאות את יש רא ל, אוק רא ינה. דוגמת קוד חלקית - יש להוסיף כוכבית לפני ואחרי הטקסט לחיפוש: string FieldName = "Country" ; string Text2Search = " אר " ; Microsoft.Office.Server.Search.Query. KeywordQuery KeywordQuery_ = null ; //Contains Search // KeywordQuery_.QueryText...
FAST Search Query Tool for Sharepoint 2010
כלי מצוין לביצוע שאילתות על FAST Server ניתן למצוא באתר של CodePlex כאן
SharePoint 2010: לא ניתן מחוק Service Application ב-Central Administration
נתקלתי בבעיה שלא היה ניתן למחוק Service Application ב-Central Administration ב-SharePoint 2010. הפתרון ביצוע אחת מ-2 האפשרויות במאמר כאן
More Posts Next page »