Forum Discussion
oryxway
Dec 28, 2023Iron Contributor
Install.ps1
I packaged an application to intunewin and now I want to execute this application using powershell script. For example - DellUpdateCommand.intunewin I have the powershell script in install co...
JeroenBurgerhout
Dec 28, 2023Iron Contributor
.intunewin file is just a compress file. In that file you need to have the powershell cmdlets and the dellupdatecommand tool.
After downloading, the intunewin file will be unpacked and install.ps1 will be started.
After downloading, the intunewin file will be unpacked and install.ps1 will be started.
- oryxwayDec 28, 2023Iron Contributor# install.ps1
So, can I have this in the install.ps1? Will the Intunewin file extract itself? Should this file install.ps1 be packaged along with the exe file?
# Example: Install Dell Command | Update
Start-Process -FilePath ".\Dell-Command-Update.exe" -ArgumentList "/s" -Wait