-
I have this short little PowerShell function that I use all over the place. It simply adds an ACL entry to an object, usually a network folder: 1function AddNTFSPermissions($path, $object, $permission) { 2 $FileSystemRights = [System.Security.AccessControl.FileSystemRights]$permission 3 $InheritanceFlag = …
Read More -
The problem... I have something like 1200 PDfs, and the list is growing, of deliverables that we own the copywrite to that we want to put in a central place called SharePoint Online. This library will then get the benefit of being searchable, have associated metadata, and should free up time from a bunch of people for …
Read More -
The Issue We have been working on a long, slow project to bring some new services online for our staff. One is our "Knowledge Hub", the other is our "Connect" site - a SharePoint Hub site, linking various functional group's SharePoint sites together. This post is about "Connect". One …
Read More -
Another post with notes from my former to my future self. What was I trying to do? We had to wire up a firewall configuration policy for a group of computers so that they'd be prevented from accessing the internet. Ok, no problem, except that our email comes from Office 365 which happens to be on the internet. …
Read More -
So, I can write a PDF... Last post I managed to generate an empty PDF with Powershell using iText, after working through dependencies and order of inclusion for running some .NET libraries in powershell. It's made me wonder if there's a better way to handle the inclusion of libraries in a Powershell script, and if …
Read More -
Using nuget stuff in Powershell I was asked to write some automation to deal with several thousand pages of PDF work.. Cool, sounds like something new, and not quite in my wheelhouse, so a good reason to get to some learning. After a bit of searching (and searching through old work), I find that iText7 seems to be the …
Read More -
Work is finally getting around to enabling OneDrive for Business (ODFB) for all our users. This is cool, because finally we'll be able to legit be able to collaborate on stuff - instead of this song and dance of save files to the network, wait for a lock to close and so on. One of the things we ran up against is that …
Read More