Details Meeting to last no longer than 15 minutes Schedule as early as possible each day to work for both on- and off- shore team members What we do Summarise what you’ve done since the last meeting. Summarise what you will you do before the next meeting. Summarise what is getting in your way or keeping you from doing your… Read more →
Author: Peter
Updated Command & Query Handlers
I’ve recently updated my definitions for Query Handlers. I’ve changed the original IQuery<Tresult> to IReturn<TResult> as, for me, it better reflects the intention of the [marker] interface. public interface ICommandHandler<TCommand> { void Execute(TCommand command); } public interface IReturn<TResult> { } public interface IQueryHandler<TQuery, TResult> where TQuery : IReturn<TResult> { TResult Execute(TQuery query); } Read more →
Get AD Group members
dsquery group -name “” | dsget group -members | dsget user -fn -ln -samid Read more →
How to give an IIS app pool folder permissions
Add the local account for the app pool using, for example, IIS AppPool\ASP.NET V4.0 Read more →
Compare XML in Powershell
Compare 2 files and get line number $abc = gc .\z.txt | %{$i = 1} { new-object psobject -prop @{LineNum=$i;Text=$_}; $i++ } $cde = gc .\x.txt | %{$i = 1} { new-object psobject -prop @{LineNum=$i;Text=$_}; $i++ } Compare-Object $abc $cde -Property Text -PassThru -IncludeEqual Read more →
Find user name from domain id
dsquery user -samid <id> or dsquery * -filter “samaccountname=<id> Read more →
Find domain id from user name
dsquery user domainroot -name “name”* | dsget user -samid Read more →
AD Distribution Group or Security Group
dsquery group domainroot -name | dsget group -secgrp Read more →
Limit users who can log in using Remote Desktop
By default, all Administrators can log in to Remote Desktop. If you have multiple Administrator accounts on your computer, you should limit remote access only to those accounts that need it. If Remote Desktop is not used for system administration, remove all administrative access via RDP and only allow user accounts requiring RDP service. For Departments that manage many machines… Read more →
Find domain group membership
gpresult /V Read more →