Forum Discussion
KenHII
Jul 14, 2023Copper Contributor
Application Logging Issues
I am trying to find a location to Log a Win32 Batch file Log so that I can see if there are issues with the install. @echo off
SET LOGFILE=C:\log\Program_batch_Log.txt
call :logit >> %LOGFIL...
Jul 18, 2023
Perhaps you could use a PowerShell script for installation and use the Start-Transcript c:\log\program_batch_log.txt at the start of the script and Stop-Transcript at the end of the script