by admin | Mar 1, 2016 | Uncategorized
There is no detection method logic to check that a file doesn’t exist for a required Application. You have two options to accomplish this: 1. You run a script that creates a file after the uninstall if complete. Then use the file as a detection method. 2. Run a...
by admin | Sep 11, 2015 | Uncategorized
Sub ReplaceWithCheckBoxes() Selection.Find.ClearFormatting With Selection.Find .Text = ChrW(61551) .Replacement.Text = ChrW(9744) .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike...
by admin | Mar 18, 2015 | Uncategorized
Making note of this because I use it so often. It is an easy way to find where configuration files are after making a change in a GUI. Lists the last 10 recently edited files: find . -type f -printf ‘%T@ %p\n’ | sort -n | tail -10
by admin | Dec 16, 2014 | Uncategorized
Install PowerBroker Identity Services from their website. I personally only install the the pbis-open.deb and pbis-open_upgrade.deb. Prerequisites: sudo apt-get install samba samba-common You are going to get an error about PAM conflicts with likewise. Just ignore and...
by admin | Dec 7, 2014 | Uncategorized
find . -printf “%T@ %Tc %p\n” | sort -n