It really didn't matter how much notice that Adobe gave organizations, there were always going to be applications that were going to live beyond the end of life. It's one of those truisms that you learn when you've been in IT long enough. In this post, I'm going to share what your experience is going to be like with …
Read MoreI wrote the following script to find and list attached USB Mass Storage Devices and determine the disks and partitions associated with them. 1$usbKeysAttached = Get-PnpDevice -Class USB -Status OK -FriendlyName "USB Mass Storage Device" 2 3$aAttachedDisks = @() 4 5ForEach($key in $usbKeysAttached) { 6 …
Read MoreI've written the following three PowerShell functions to build a mapping of Office 365 ProPlus version numbers (e.g. 16.0.10205.2009) to more reportable build numbers (e.g. 1806). I've created the following three functions to start: Get-Office365BuildToVersionMap Get-OfficeBuildListToCase …
Read MoreHow it is possible in mid-2018, with 2.6 million results in google when searching, that we don't have a policy where we can prevent shutting down a system but allow rebooting? There are dozens of workarounds, some of which I'll go over below, but no actual ability to set this policy. My Problem: First, there are two …
Read MoreI was having a discussion last week about how if you want to add a new product to an existing Office 365 ProPlus installation (such as adding Microsoft Access after already laying down Word, Excel, and PowerPoint), you need to supply an XML with the apps you want to exclude (no longer including Access) but you don't …
Read MoreWinDirStat, by the company of either the same name or of no name, is in my opinion one of the best tools for quickly understanding where all the space on your hard disk has gone. After scanning your disk, it graphically reports back to you a Windows Explorer like view of your directory structure sorted by space …
Read MoreI frequently use this trick to manage collections of computers in SCCM where the original list comes from Excel, or from a query of another system that I can dump into Excel. Doing it this way, you don't have to rely on adding computers one at a time to a collection query or dumping systems into tools like the the …
Read MoreThe Microsoft Volume Activation Management Tool (VAMT) is an administrative console meant to make it easier for IT Staff to remotely manage the Microsoft licenses on devices on the network. It can deploy and activate keys for products like Windows (both desktop & server platforms) and Microsoft Office. While the …
Read More