The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 4,262 other subscribers

Archive for February 19th, 2018

Cleaning up a huge “Console.log” file on SBS 2008

Posted by jpluimers on 2018/02/19

You might think the Console.log belongs Console.exe. That’s right, but that’s a different thing than the Windows Command prompt that many people call console, but is in fact C:\Windows\System32\cmd.exe on a default Windows installation.

C:\Program Files\Windows Small Business Server\Logs>dir console.log

It belongs to the SBS 2008 console which you can access using the https://sbs2008serverIP/remote (for more details, read [WayBackAccessing Windows SBS Console) and is served by:

C:\Program Files\Windows Small Business Server\Bin\console.exe

It is started when any user logs on (which is sort of odd) and never log-rotates the log file but keeps the log file locked when the process executes.

So the only way to get rid of a really big console.log file is this:

  1. Terminate console.exe in the Task Scheduler (taskschd.msc)
  2. Move away the old C:\Program Files\Windows Small Business Server\Logs>dir console.log file
  3. Start console.exe in the Task Scheduler or logoff/logon

Further reading:

–jeroen

Read the rest of this entry »

Posted in Power User, Windows, Windows Server 2008 | Leave a Comment »

Cleaning up a huge “DataServiceComponents.log” file on SBS 2008

Posted by jpluimers on 2018/02/19

When cleaning out an old SBS 2008 Servers, I saw a huge “DataServiceComponents.log” file. [WayBackSBS 2008 disk space and the DataServiceComponents.log file – Oxford SBS Guy indicated how to clean it up and pointed to [WayBackRecovering Disk Space on the C: Drive in Small Business Server 2008 | The Windows Server Essentials and Small Business Server Blog.

Both posts have the problem that many backslashes missing in the the various paths.

So this is how I cleaned the DataServiceComponents.log file using an UAC command prompt:

C:\Program Files\Windows Small Business Server\Logs\MonitoringServiceLogs
net stop DataCollectorSvc
"C:\Program Files\7-Zip\7z.exe" 
a -t7z -m0=lzma2 -mx=9 -aoa -mfb=64 -md=32m -ms=on -sdel DataServiceComponents-backup.7z DataServiceComponents.log
net start DataCollectorSvc

Note that DataCollectorSvc is the shorthand for the Windows SBS Manager service.

–jeroen

Posted in Power User, Windows, Windows Server 2008 | Leave a Comment »