mirror of
https://github.com/rbalsleyMSFT/FFU.git
synced 2026-06-14 02:09:35 -06:00
Docs: Add PowerShell comment-based help to all script modules
Adds standard PowerShell comment-based help blocks (synopsis and description) to all UI and common library script modules (`.psm1`) and the main UI entry point script (`.ps1`). This improves maintainability and discoverability by documenting the purpose of each script file. Also removes various redundant or commented-out code blocks.
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
# # Import the common core module for logging
|
||||
# Import-Module "$PSScriptRoot\FFU.Common.Core.psm1"
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Provides functions for interacting with WinGet and the Microsoft Store to find, download, and configure applications.
|
||||
|
||||
.DESCRIPTION
|
||||
This module contains a set of functions designed to automate application management using the WinGet package manager and the Microsoft Store.
|
||||
It supports checking for and installing WinGet, downloading applications, handling different application types (Win32 and UWP), and generating silent installation commands for Win32 applications.
|
||||
This module is used by both the build script (BuildFFUVM.ps1) and the UI (BuildFFUVM_UI.ps1) to manage application downloads and configuration.
|
||||
#>
|
||||
function Get-Application {
|
||||
[CmdletBinding()]
|
||||
param (
|
||||
|
||||
Reference in New Issue
Block a user