On this page you can find general instructs how to deploy different services or how to take basic configuration which are used in many of my blog posts.
Intune
Apps
Create Win 32 app
- Download the MSI file
- In this example we use MS Teams
2. Download and extract the Microsoft Win32 Content Prep Tool
- Download the Microsoft Win32 Content Prep Tool from GitHub. It’s a tool used to package application installation files into the .intunewin format used by Intune. After downloading it, extract the files to a folder on your PC.
3. Packaging the app
- Open Command Prompt as an administrator.
- Navigate to the folder where you extracted the Win32 Content Prep Tool using the
cdcommand. Example:cd C:\Users\username\Desktop\Win32ContentPrepTool - Run the following command:
IntuneWinAppUtil.exe -c <source_folder> -s <setup_file> -o <output_folder>
- Example:
IntuneWinAppUtil.exe -c C:\Users\username\Desktop\Teams -s Teams_windows_x64.msi -o C:\Users\username\Desktop\Output
Replace <source_folder> with the path to the folder containing the Teams MSI file, <setup_file> with the name of the Teams MSI file (including the .msi extension), and <output_folder> with the path to the folder where you want to save the .intunewin file.
You can also put cmd or .ps1 in the folder and use them as <setup_file>
- After running this command, the Win32 Content Prep Tool will create a .intunewin file in your specified output folder.