Zero - Windows

Page 2 of 2 FirstFirst 12

  1. Posts : 8
    Windows 10
    Thread Starter
       #11

    Zero is updated. Kindly report back any bugs or error encountered. Feedback is always appreciated.
    Could someone check "Restart All Services" in a VM and report back if its working or not?


    Hi, thank you for your interest. Currently the cleaner is not "top-of-line" cleaner, but plans are in place to add much more options and functionality eventually.


    Callender said:
    As far as I can work out the options it offers are not available via CleanMgr or any method in the linked tutorials but I could be wrong.

    I does clear event logs without fuss. I prefer my own program to clean event logs but Zero works okay.

    The other options which I have not used appear to offer to clean only one or more certain file types on demand. There are other programs that might offer that functionality.
    Thank you for your reply. Your program looks great.
      My Computer


  2. Posts : 1,829
    Windows 10 Pro (+ Windows 10 Home VMs for testing)
       #12

    Callender said:
    It does clear event logs without fuss. I prefer my own program to clean event logs but Zero works okay.
    I prefer knowing the filesizes for event logs before I delete them so I use this PowerShell script:

    Code:
    # Define the log directory (usually C:\Windows\System32\winevt\Logs)
    $logDirectory = "C:\Windows\System32\winevt\Logs"
    
    # Get all log files and their sizes
    $logFiles = Get-ChildItem -Path $logDirectory -Recurse -File
    
    # Initialize total size
    $totalSize = 0
    
    # List each log file with its size
    Write-Host "Log Files and Sizes:"
    foreach ($file in $logFiles) {
        $fileSizeMB = [math]::Round(($file.Length / 1MB), 2)
        $totalSize += $fileSizeMB
        Write-Host "$($file.FullName) - $fileSizeMB MB"
    }
    
    # Display the total size
    $totalSize = [math]::Round($totalSize, 2)
    Write-Host "`n"
    Write-Host "Total Size of Log Files: $totalSize MB"
    
    # Option to delete the log files
    Write-Host "`n"
    $delete = Read-Host "Do you want to delete all log files? (Y/N)"
    if ($delete -eq 'Y' -or $delete -eq 'y') {
        foreach ($file in $logFiles) {
            Remove-Item -Path $file.FullName -Force
            Write-Host "Deleted: $($file.FullName)"
        }
        Write-Host "All log files have been deleted."
    } else {
        Write-Host "No log files were deleted."
    }
    This lists the logs and their filesizes and adds a total at the end before giving an option to delete them:
    Zero - Windows-managewindowslogs_ps_script.png

    Hope this helps...
      My Computer


  3. Posts : 8
    Windows 10
    Thread Starter
       #13

    Here is the main question, would you like me to continue adding new features or shall we focus on stability first? Obviously some things are already added which will be continued to be updated.

    Let me know what you guys think. Thank you.
    Last edited by Mikanos; 1 Week Ago at 13:09.
      My Computer


  4. Posts : 8
    Windows 10
    Thread Starter
       #14

    Zero has been updated, quite a lot of changes are coming.

    If anyone is interested in trying it out before it releases to public (as it will take some time), contact me. Still needs some fixes here and there, and possibly some optimization.

    Some screenshots:
    Last edited by Mikanos; 1 Week Ago at 19:16.
      My Computer


  5. Posts : 819
    Windows 10 Pro
       #15

    What makes people think "Lets chuck some random functions into some code and see what happens"?
      My Computer


  6. Posts : 8
    Windows 10
    Thread Starter
       #16

    Hearsepilot said:
    What makes people think "Lets chuck some random functions into some code and see what happens"?
    Perhaps people with some vision.

    I don't see what's wrong with it, aside from possibility of delayed updates and maybe some stability issues?

    Maybe you could point me to those "random functions" and we could discuss further.

    Edit: Thought about this. I think the best way to move forward is disable those "extra" functions for now and focus on 1 utility at a time (Cleaner for example). Once we have a solid base we can move on to next one.
    Last edited by Mikanos; 1 Week Ago at 11:23.
      My Computer


 

Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 14:51.
Find Us




Windows 10 Forums