Browse by Tags
All Tags »
ITPRO (
RSS)
בסביבה ללא תקשורת אינטרנט (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 ל-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...
הורדה חינם של ebook בנושא Programming Windows 8 Apps with HTML, CSS, and JavaScript כאן ניתן לראות את רשימת כל ה-Free ebooks כאן
הורדה חינם של ebook בנושא Introducing Microsoft SQL Server 2012 (נכתב ע"י Ross Mistry ו-Stacia Misner) כאן
ניתן לראות את רשימת ה-DataBases של SharePoint 2010 באמצעות הפקודה Get-SPDataBase , לדוגמא: Get-SPDatabase | Sort-Object disksizerequired -desc | Format-Table Name
שם שרת בסיס הנתונים ושם ה-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 הינה Extend של Web Application : בכדי למחוק Web Application אשר נוצר ע"י Extend, ניתן ב-SharePoint 2010 Management Shell להקליד את הפקודה הבאה לדגומא: stsadm.exe -o unextendvs -url http://www.website.com -deleteiissites
נתקלתי בהודעת השגיאה הבאה באפליקציית 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 של הפרויקט:
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 כולל אפשרויות תכנות קוד של תוצאות החיפוש ובכך ניתן לבצע שאילתות חיפוש בעלות לוגיקה עיסקית מורכבת מאוד. הנה דוגמת קוד של הצגת תוצאות חיפוש: 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. וההודעה בעברית: ישנן תוצאות רבות מדי עבור חיפוש זה. נא נסה שוב לבצע את החיפוש עם מילות מפתח ספציפיות יותר. מידע נוסף ההודעה לא הופיעה כאשר היו 1000 פריטים בחיפוש, אבל הוצגה כאשר היו בה 30,000 פריטים: הקוד ללא הודעת השגיאה - כולל את האופרטור equals string FieldName = "Country" ; string Text2Search = " אר " ; Microsoft...
כדי לאפשר גישה מאפליקציית 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...
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 Server ניתן למצוא באתר של CodePlex כאן
נתקלתי בבעיה שלא היה ניתן למחוק Service Application ב-Central Administration ב-SharePoint 2010. הפתרון ביצוע אחת מ-2 האפשרויות במאמר כאן
More Posts
Next page »