Products – OSD WebServices
We are now working hard on delivering new / updated web services in version 4.0. In the meantime please use current release which is documented here
Our best products released to community can be found by following the appropriate links
Call for Aplha testers ! I have been working hard on getting new web services to be ready for publish. At the moment we do have beta version of our new product and looking for people interested in testing. If you want to participate in helping out building a great solution for the community – [...]
Hey , So recently we have encountered this extremely annoying message and had major issues finding out what is the problem origination. What happens is ps-remoting just do not work. WinRM does not start …
Hey, So in order to be in control what is going with your scripts you must have proper logging. However anyone who would be using logging can have different approach to layout / location.. I have been using Nlog for quite a while already and in my opinion best approach is to use that exact [...]
Hey , In my recent posts about exchange we have learned how to: – use impersonation with proxy class here – use impersonation with EWS here – What to do when we reach max number of connection using Exchange services with powershell here
Hey , First of all – “yes – we are still online ” – however due to amount of projects and workload had limited time to put new posts out. There is like 16 drafts waiting so this is going to be the first in series. As recently I have focused on automation of multiple [...]
Hey, So recently friend of mine had to look for users that had specific set of characters in their distinguished name and then group them by that set of characters The good answer to this one was quick powershell command
|
1 |
Get-ADUser -Filter * -Server SomeDomainController | where {$($_.DistinguishedName) -match '[A-Z]{3}\d{1}'} |select SamAccountName,@{Name="OU"; Expression={[Regex]::Match($($_.DistinguishedName),'[A-Z]{3}\d{1}').Value}} |
Hey , So recently our KMS server started to give us problems – to be exact it did not activate Office 2010 but still continue to activate rest of the products. So we have checked if service was running, telnet from clients , checked DNS resolution and DNS records. But nothing showed problems. Then we [...]
Hey , So in order to enable Bitlocker HDD needs to be correctly formatted. Below you may find detailed information how do I set up drive in task sequence to achieve it. All of steps below are from my Task Sequence in SCCM 2012 SP1 Start of by modyfying Format and Partition drive step [...]
Hey , So if you have been deploying operating system via SCCM 2012 SP1 you noticed that installer is no longer used and you now use straight WIM file imported. Now this comes with default drive letter D: Following information from blog I have modified my task sequence accordingly: So what I have done is [...]