keremozen

93 posts

SPC14 Session: SharePoint Power Hour

SharePoint Power Hour – New developer APIs and features for Apps for SharePoint  Presented by Rob Howard Coming next: First solution pack for site provisioning New public open source codeplex project for app model samples. officeams.codeplex.com More solution packs on the way What’s new in apps  New sharepoint client components […]

Delete Page Layouts / Master Pages by PowerShell Script

In one of my projects we needed a PowerShell script for deleting an unnecessary page layout for all web application. Here is the script that I wrote. This is not only for page layouts, it can be used for masterpages. param ( [string]$WebApplicationUrl = “”, [string]$PageLayoutName = “” ) Remove-PSSnapin […]

Live coverage of SharePoint Conference 2014

The biggest SharePoint event of the year is around the corner. I’m very lucky that I won’t miss the opportunity to participate in SPC14. During the event I’m going to share session contents, news, updates on my blog. [tminus t=”03-03-2014 09:00:00″ before=” Live Coverage of SharePoint Conference 2014will begin in […]

Cannot start service SPAdminV4 on computer “.”

Symptoms: While running SharePoint 2010 Configuration Wizard, you might get the following error message [stextbox id=”alert”]Cannot start service SPAdminV4 on computer “.”[/stextbox] SPAdminV4 service (SharePoint 2010 Administration service) is the main service of SharePoint which manages administrative SharePoint PowerShell commands. So without SPAdminV4 service running, SharePoint will not work properly. […]

SP24 Submission – The 24 Hour SharePoint Conference

Hi all, I’d like to announce that we applied as speakers at SP24 conference with my colleague Mete Bulutay (codeholio.net). If you want to hear us speaking about “Automated SharePoint Installation & Deployment”, you can vote us up via http://list.ly/i/470213. Here are some facts about SP24: 1.      Free for all attendees. 2.      It’s entirely on-line – so […]

Scrum’ın Yaratıcısı Jeff Sutherland Türkiye’de!

Geleneksel yazılım geliştirme metodolojilerine alternatif olarak doğmuş olan Agile yani Çevik metodolojiler gün geçtikçe popülerleşmekte ve kullanımı artmakta. Scrum ise, Agile metodolojiler arasında dünya üzerinde en çok bilinen ve kullanılan Agile metodoloji olarak karşımıza çıkıyor. Ankara merkezli Scrum Turkey topluluğu, Scrum’ın yaratıcısı Jeff Sutherland’i İstanbul’da IT sektörü ile buluşturuyor. Jeff […]

Fixing Office Web Apps Network Connectivity has been lost error

If you’re getting “Network connectivity has been lost. Check your network connection or try again later.” error while viewing Word or PowerPoint files in browser and you are sure that there is no network issue, it can be solved by increasing the permission level of service applications. You can run […]

Mask created/modified users in lists/libraries

You might want to hide created by and modified by information from the users. There are three ways to achieve this. First to way is masking the created by and modified by users in lists and libraries. Third one is actually a workaround by creating a new view which doesn’t […]

Belirli doküman tiplerini yeni pencerede açmak

Geçtiğimiz günlerde çalıştığım SharePoint 2010 projelerinden birinde pdf dokümanlarının her zaman yeni pencerede açılması gereksinimi ortaya çıktı. Biraz araştırma yaptıktan sonra konu ile ilgili Ben Ramey’in makalesine rastladım. Makalede yer alan JavaScript betiği SharePoint doküman kütüphanelerindeki bütün belgelerin yeni pencerede açılmasını sağlıyor.  Benim durumumda ise sadece pdf dosyalarının yeni pencerede […]

Open Specific Document Types in New Window

Recently in one of my SharePoint 2010 projects, we needed to open pdf documents in new window by default. After some research I found Ben Ramey’s blog post on this subject. He shared a little JavaScript to open every document in a SharePoint document library in a new window. So […]