public/Initialize-PSJetInstallerState.ps1
<# .SYNOPSIS Initializes the state of PSJet Installer. .DESCRIPTION Sets up the application data folder and initializes state.json with default values. It is triggered internally if the state is not found when calling Get-PSJetInstallerState. .NOTES This function does not typically need to be called directly. #> function Initialize-PSJetInstallerState { $appData = Get-PSJetInstallerAppData $folderPath = $appData.FolderPath $stateJsonPath = $appData.StateJsonPath # Ensure the folder exists if (-Not (Test-Path $folderPath -PathType Container)) { New-Item -Path $folderPath -ItemType Directory | Out-Null } # Ensure the state.json file exists, if not create it with default content if (-Not (Test-Path $stateJsonPath -PathType Leaf)) { $defaultState = @{ step = $null # Set default to $null and handle in Invoke-PSJetInstaller restartComputer = $false autoRestartComputer = $false } | ConvertTo-Json Set-Content -Path $stateJsonPath -Value $defaultState -Force } $Script:PSJetInstallerState = Get-Content -Path $appData.StateJsonPath | ConvertFrom-Json } |