Tag Archives: PowerShell

PSADT Series: Packaging .NET Framework 3.5 application for configmgr

By | April 1, 2023
Share

Considering this was at least my tenth time packaging this dotnet installer for ConfigMgr, I figured I should share it here for safe keeping. Further help on PowerShell App Deployment Toolkit (https://psappdeploytoolkit.com/). I will not be covering how to use PSADT, just the guts. Detection Method: PSADT install/uninstall command lines: Source files need to be… Read More »

Sharing Code Doesn’t Have To Be Ugly

By | December 4, 2020
Share

I’m constantly sharing Powershell/Python code snippets, I tend to just toss them on gist or github and send links, but I just recently found carbon https://carbon.now.sh/ This site makes even my code look shiny and well formatted. I’m a huge fan!

Consolidate PowerShell App Deploy Toolkit Function .PS1 Files

By | May 24, 2019
Share

1\Copy the “AppDeployToolkit” folder to your Deployment Share’s “Scripts” folder. 2\Edit the “AppDeployToolkit\AppDeployToolkitConfig.xml” file to log to MDT’s log location. 3\Update the Deploy-Application.ps1 files you use in your Application installs to locate the centrally located “AppDeployToolkit” folder. 4\Lastly, when adding your application to MDT, use this as the “Command Line”. PowerShell.exe -ExecutionPolicy Bypass -WindowStyle Min… Read More »

Check the Embedded Controller (EC) Firmware Version in Powershell

By | January 10, 2019
Share

Here is a snippet for checking the EC version.  It tosses a dialog with it’s result. Pre-reqs: 1\This snippet uses Powershell App Deploy Toolkit functions. https://psappdeploytoolkit.com/ 2\You’ll need to place the .mof and .dll files from our WMI BIOS util in the files folder. ftp://ftp.panasonic.com/computer/software/WMI_Release_V1.00L31.zip     ## <Perform Installation tasks here> Show-InstallationProgress -StatusMessage “Copying… Read More »