### Specify Windows Update Agent Installer path Source: https://documentation.solarwinds.com/en/success_center/patchman/content/spmag_repairingmaintainingwua.htm Examples of URL and UNC paths for providing the Windows Update Agent installer location during maintenance tasks. ```text https://download.windowsupdate.com/windowsupdateagent30-x86.exe ``` ```text \\fileServer\share\windowsupdateagent30-x86.exe ``` -------------------------------- ### Post-update Local Script Example Source: https://documentation.solarwinds.com/en/success_center/patchman/content/spmag_createpowershellscripts.htm This script creates a new folder on the client system at 'c:\Result' with the current date and time as the folder name, executed after patches are installed. Ensure you back up the client registry before making edits. ```powershell function createFolder ($fname) { $path = 'C:\Result\afterFolderOnLocal-" +  $fname $time = $((Get-Date).ToString('yyyy-MM-dd-hh-mm-ss')) } createFolder $TargetMachinesList.Valules[0].NetbiosName ``` -------------------------------- ### Display SetupHelper Help Source: https://documentation.solarwinds.com/en/success_center/patchman/content/spmag_advancedsetupcli.htm Run the utility with the /? argument to view available onscreen instructions. ```bash setuphelper /? ```