Directories and Files
New-Installer -ProductName "My App" `
-Manufacturer "Example Company" `
-UpgradeCode "66ad7f2c-e176-4a91-b73b-5dced490ec67" `
-Version "1.0.0" `
-OutputDirectory ".\output" `
-Content {
New-InstallerDirectory -PredefinedDirectoryName "ProgramFilesFolder" -Content {
New-InstallerDirectory -DirectoryName "My App" -Id "INSTALLFOLDER" -Content {
New-InstallerFile -Source ".\bin\MyApp.exe" -Id "MyAppExe"
New-InstallerFile -Source ".\bin\MyApp.dll"
New-InstallerFile -Source ".\README.txt"
}
}
} `
-RequiresElevationGet-ChildItem ".\assets\*.png" | New-InstallerFileLast updated