How to Find App Bundle ID for iOS Apps

Background Sometimes when working with Intune you will come across settings that require you to supply the App Bundle ID for apps you want to configure.The documentation for Intune has a list of all build-in apps from Apple and can be found here. An example of when this would be…

0 Comments
Create Powershell GUI with WPF

I recently switched to WPF to create graphical interfaces for my tools.In this post I will show you a very simple way of creating the GUI using Visual Studio. Previously I was using WinForms and creating everything manually and eventually, I got tired of this since it took a lot…

0 Comments
Exchange 2010 Mailbox Export to PST using PowerShell

I recently had a need to export mailboxes to PST. This was done in an environment with Exchange 2010.This can easily be done with the following command in the Exchange Management Shell. New-MailboxExportRequest -Mailbox -FilePath \serverPSTIdentity.pst This is a bit inconvenient if you need to export more than a few…

0 Comments
Join two variables together with powershell

Hi, Here I will explain two ways I've found to concatenate two variables to a path.I have at multiple occasions had the need to use two variables to form a single path based on input from the command line. This is an example on how to change location using two…

0 Comments