| Jesper's profileJesper M. Christenen - L...BlogLists | Help |
|
|
June 11 WindowsSecurity.com - Active Directory information exposed to users?For the time being I have not really time for blogging I'm afraid but will continue writing articles for the windowsecurity.com website. I know many things are visible in the Microsoft Active Directory and tried a few things to investigate the things a standard user can see. If this is something for you, then take a look at the article – feedback and evaluation is welcome J May 19 I found my article – in russian?When I search the internet for articles I stumbled on my own. Nothing wrong with that except that it was in Russian and with another author mentioned… But as a service to you RSS subscribers I now present "Kerberos in a SharePoint Environment" in Russian also J April 14 WindowsSecurity.com – Troubleshooting Kerberos in a SharePoint environment part 3The third and final part of my troubleshooting Kerberos article is now published on Windowssecurity.com Troubleshooting Kerberos in a SharePoint environment (Part 3) Please rate the article if you read it March 27 SQL script to check users auth. method for databasesI was testing different authentication methods the other day and needed to check which types of authentication methods was used to my Microsoft SQL Server databases by my test-users. Because I needed to double-check that my .NET application was authenticating with Kerberos, and wanted to see this from the SQL server itself, I made this script that enumerates the connections, users and the authentication method used:
SELECT DB_NAME(dbid) AS DatabaseName, loginame AS LoginName, sys.dm_exec_connections.auth_scheme as AuthMethod
FROM sys.sysprocesses JOIN sys.dm_exec_connections ON sys.sysprocesses.spid=sys.dm_exec_connections.session_id WHERE dbid > 0 GROUP BY dbid, loginame, spid,sys.dm_exec_connections.auth_scheme The output will give you something like this:
February 06 Tip: Move SSP Admin site to another web applicationI needed to change my Shared Service Provider Administration website to a load balanced url and found this great post by Ram G. http://blogs.msdn.com/ramg/archive/2008/07/01/moving-ssp-admin-site.aspx That does the trick fast and easy – just try avoid copy-pasting the code, just write it by hand J February 04 WindowsSecurity.com – Troubleshooting Kerberos in a SharePoint environment part 2The second part of my troubleshooting kerberos article is now published on Windowssecurity.com Troubleshooting Kerberos in a SharePoint environment (Part 2) Please rate the article if you read it J January 16 Filtered dropdown boxes in SharePointOn the web I finally found a solution to the dependent dynamic choice filter on a SharePoint list Item. It requires some custom code-project to implement and some companies might not allow this. Say you want to have a category and the sub category filtered depending on the choice you made in the first multiple selection box. You can find the solution on the SharePoint Snippets.com blog. DataDog first published his version here but this makes it possible to use any number of "Siblings". Download and description: http://www.sharepointsnippets.com/post/2008/11/SharePoint-Cascading-Dropdown---Unlimited-siblings.aspx Configuration example: http://www.sharepointsnippets.com/post/2009/01/Cascading-Dropdown---Configuration.aspx I hope Microsoft will include this feature and filtered dropdown lookup boxes in the next version of SharePoint. January 07 WindowsSecurity.com – Troubleshooting Kerberos in a SharePoint environmentAfter I received Kerberos error messages and screenshots I started making an article series on Windowssecurity.com about a working environment. In this I started braking things one at a time and investigated what error-messages came from these – with screenshots, error logs and troubleshooting tools/techniques. This can be used in SharePoint environments and also in other Kerberos troubleshooting tasks. You can read part one of the series at Troubleshooting Kerberos in a SharePoint environment (Part 1) and the other parts are following soon. December 23 Update on my KRB_AP_ERR_MODIFIED blog-psotI have updated my blog-post "Troubleshooting the Kerberos error KRB_AP_ERR_MODIFIED" with new details for SharePoint in IIS7 on Windows Server 2008. Please visit this if you have this Kerberos error. December 16 SPBackup 1.2 released on CodeplexMy project to make a complete backup of SharePoint with Windows Powershell (mostly used on WSS) just got support for Windows Server 2008 and Windows Vista. Also the deletion of old backups has been changed. Visit the SPBackup project page on http://www.codeplex.com/spbackup December 02 SharePoint Ports and Protocols openingsI attended a great session on Microsoft TechED 2008 IT Pro on ports and protocols from Martin Kearn and searched for his session slides (with no luck yet). I then stumbled across a blog post I missed from Liam Cleary (SharePoint MVP I also saw on the Ask-The-Experts stand) where he summarizes the session details and give out the links to Microsoft Knowledgebase articles. Read the post and check out the overview tables of what to open up for in the Windows Firewall configuration http://www.helloitsliam.com/archive/2008/11/11/sharepoint-%E2%80%93-ports-and-protocols.aspx?id=168 November 14 Post me your SharePoint kerberos errorsHello everyone, I am currently collecting error messages and if you have some please post them on this blog-post. Please describe your environment, what you are are trying to accomplish and the errors on the different servers. If you have errors and solutions that would be appreciated also J Hope to see and solve some problems, Thanks October 22 WindowsSecurity.com - Sharepoint Data Security RisksI got a new article published on www.WindowsSecurity.com about the security considerations of using Microsoft SharePoint to publish company information. Find out what to avoid and where to look for possible security breaches. http://www.windowsecurity.com/articles/Sharepoint-Data-Security-Risks.html I hope you will read it, rate it and give feedback Thanks, September 22 Check for duplicate items in Sharepoint lists with PowershellSometimes I need to check for duplicate E-mail addresses in my Sharepoint lists. In the beginning I looked for new items manually, but this will take….. a while now :o) I came up with this script to report back if any address exists more than once:
September 20 My Community workThis page gives you a chance to follow my community activities and will be updated periodically. Forums Being active on forums gives me the opportunity to help others and get the chance to learn something new also.
Online magazines
Blogs Blogging can be a lifestyle – especially if you have something you just need to say to the group "Everyone"
Codeplex projects Free coding-projects that helps everyone in the everyday challenges.
September 18 SPListSync version 1.1 releasedNew features have been added to my Windows Powershell project SPListSync. You can now copy/synchronize from an existing SQL Server Database table to a Sharepoint list. Great if you have a customer database outside your Sharepoint-solution. New items can also be created using a new feature. Check it out, and please give me feedback for good and bad J http://www.codeplex.com/splistsync Changes from 1.0
September 11 Sharepoint list-synchronization with Powershell 1.0
If you have a Sharepoint list for companies and another for contacts how do you make sure every bit of information is up to date? This is a feature I wanted to have – and of course this should happen automatically. First I thought of making automatic workflows with Microsoft Sharepoint Designer but it became difficult to keep track of the sites, lists, columns and different workflows for these. The obvious solution for after the SPBackup project was to make another Windows Powershell script to do this configured by a XML-file and scheduled by Windows Scheduled Tasks. I made an example of this kind of cross-list updates below and you can download the latest version of SPListSync from CodePlex – the example XML-file provided can be used in the demonstration below Sharepoint list-sync. with Powershell script: http://www.codeplex.com/splistsync
Sharepoint list-connectionsSetup procedure
Add some sample companies, contacts and link these together.
August 25 VMware Infrastructure Client 2.5 crashes / closesHmmm, I suddenly got a problem with my VMware infrastructure client 2.5 on my Windows Vista 32-bit SP1: The program just exits or crashes with a memory error. This happened when I:
I couldn't find any update or support-hits on this on VMware support site, and managed to solve the problem by copying libeay32.dll, ssleay32.dll to "%ProgramFiles%\VMware\Infrastructure\Virtual Infrastructure Client\Launcher". They can be found in the "%ProgramFiles%\\VMware\Infrastructure\Virtual Infrastructure Client\2.5" folder. August 22 Version 1.1 of SPBackup releasedI have released a new version of SPBackup. One script to perform Sharepoint backups written in Windows Powershell. Codeplex project: http://www.codeplex.com/spbackup Important !
July 30 My article on Windowssecurity.comMy first article on www.windowssecurity.com has been published:
Kerberos in a Sharepoint environment:
|
|
|