Categories

Archives

PowerShell : Modifying Web AppPool Account

English I think you may already know Set-SPServiceApplicationPool. This command can be used to modify apppool account for service application – but it doesn’t work for Web Application. I am looking for Set-SPWebApplicationPool but I can not find it anywhere. So here is the PowerShell script   param([string] $url, [string] $account) $SPWebApp = Get-SPWebApplication $url $SPManagedAccount = Get-SPManagedAccount –Identity [...] [read more...]

SharePoint 2010: How to create filtered lookup field

English Imagine a business scenario where we have a lookup field in our list. The reference list contains items Title and their status.  Previously it always difficult to create filtered lookup field with minimal development task. But now, we can use InfoPath 2010 to achieve that functionality. Part III , InfoPath 2010 and SharePoint 2010 Productivity series [...] [read more...]

PC Talk – Bagaimana menghapus seluruh daftar Recent Documents (Dokumen Terbaru) di Office 2007.

Posted in : http://support.microsoft.com/kb/945561/id-id Skenario percakapan berikut menggambarkan bagaimana menghapus seluruh daftar Recent Documents (Dokumen Terbaru) di Office 2007. Dalam scenario ini, Anda akan menggunakan Word 2007. Anda juga dapat melakukan cara yang sama di Excel 2007 dan PowerPoint 2007.   Proyek saya sudah selesai dan saya ingin menghapus daftar file didalam “Recent Document” (Dokumen Terbaru) di Word [...] [read more...]

SPD: How to change 24hr format to 12hr format AM/PM

English I’ve found this question in forum – but since it was not easy to explain by sentences, I would like to create a sample working option here. For example you have this list as data source: In the data source you have 24hr format (I use string type for my sample, but you can use normal [...] [read more...]