What you can do is splitting this file in smaller parts. You can do that with a powershell task:
$upperBound = 100MB # calculated by Powershell
$ext = "log"
$rootName = "log_"
$destination = "F:\Apps\Visualcron\log\"
$reader = new-object System.IO.StreamReader("F:\Apps\FileZilla Server\Logs\fzs-2022-02-09.log")
$count = 1
$fileName = "{0}{1}{2}.{3}" -f ($destination, $rootName, $count, $ext)
while(($line = $reader.ReadLine()) -ne $null)
{
Add-Content -path $fileName -value $line
if((Get-ChildItem -path $fileName).Length -ge $upperBound)
{
++$count
$fileName = "{0}{1}{2}.{3}" -f ($destination,$rootName, $count, $ext)
}
}
$reader.Close()
Now with the 100Mb files, you can open them with any text editor.
Regards
Erik
Edited by user
2022-05-17T07:12:26Z
|
Reason: Not specified
Uses Visualcron since 2006.