wix3 VS ts_block

Compare wix3 vs ts_block and see what are their differences.

ts_block

Blocks IP addresses generating invalid Terminal Services logons (by EvanAnderson)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
wix3 ts_block
45 4
2,109 175
0.8% -
5.5 0.0
about 1 month ago over 2 years ago
C# Visual Basic
GNU General Public License v3.0 or later Artistic License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wix3

Posts with mentions or reviews of wix3. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-05.
  • How to create an Installer for a Winforms application using Wix for Visual Studio 2022
    1 project | dev.to | 2 May 2024
    We also need to install WiX Toolset v3.11.2, you can download the latest version from here
  • Twenty years maintaining the WiX Toolset
    2 projects | news.ycombinator.com | 5 Apr 2024
    For those like me (I never used Windows) who do not know WiX; https://wixtoolset.org/.
  • Creating a windows service application
    1 project | /r/cprogramming | 31 May 2023
    I don't do Windows installers myself, but I hear WiX is popular: https://wixtoolset.org/
  • Win32 App Isolation
    4 projects | news.ycombinator.com | 24 May 2023
    I actually like WiX[1] — it has a bit of a learning curve, but, so long as I'm building on Windows and don't stray far from the default UI flows, I haven't found an easier tool for creating Windows installers as part of a product build process, especially those that require Windows-specific bits like COM component registration, Windows service management, setting restrictive ACLs on installed components, etc.

    And while I'm not aware of any way to sandbox Windows Installer itself, I'm curious if AppContainer isolation can be applied to applications and services installed via MSI, which would still be quite useful even if the installation process itself is unrestricted.

    Alternatively, now that MSIX supports service installation[2], I wonder whether an MSIX including a Windows service and a collection of client applications can be configured so everything runs within one AppContainer, isolated from the rest of the system, and whether permission to access specific external directories chosen by users in a configuration GUI can be transparently (to the user) delegated to the related service.

    Alas, none of this is useful to me until it's compatible with at least the most recent version of Windows 10, as very few of my customers are running Windows 11, and I suspect many won't upgrade until Windows 10 is no longer supported (optimistically; as of last year, I was still getting occasional support requests from customers running older versions of our software on Windows Server 2003 R2).

    [1] https://wixtoolset.org

    [2] https://learn.microsoft.com/en-us/windows/msix/supported-pla...

  • [Windows] Looking for open source program made to install other archived programs and create uninstaller for them
    1 project | /r/sysadmin | 26 Mar 2023
  • packaging games
    1 project | /r/gamedev | 23 Mar 2023
    For Windows, in the past, I’ve used the WiX toolset to create installers (https://wixtoolset.org/).
  • Can I publish and release a .NET Service with an installation executable on GitHub?
    3 projects | /r/dotnet | 21 Mar 2023
    https://wixtoolset.org/ should be able to help you out there.
  • How to slipstream NVMe drivers into Windows 7 ISO [Tutorial]
    2 projects | /r/windows7 | 14 Feb 2023
    Wix toolset to extract .exe to get the driver or .msi https://github.com/wixtoolset/wix3/releases
  • Production C++ software guide
    1 project | /r/cpp_questions | 31 Jan 2023
    For windows - store: https://developer.microsoft.com/en-us/microsoft-store/register/ - requirements: https://learn.microsoft.com/en-us/windows/apps/publish/publish-your-app/app-package-requirements?pivots=store-installer-msix - alternatively you can make MSIs and distribute them through your own website or another service. https://wixtoolset.org/ - publishing with chocolatey isn't a terrible option to help users with upgrade/installation automation. https://community.chocolatey.org/packages
  • ReactOS
    5 projects | news.ycombinator.com | 18 Jan 2023

ts_block

Posts with mentions or reviews of ts_block. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-06.
  • Learning Lessons From The Cyber-Attack: British Library cyber incident review [pdf]
    1 project | news.ycombinator.com | 8 Mar 2024
    > Is there something inherently insecure about remote desktops, or is MS software here known to be particularly insecure...

    Exposing RDP to the Internet directly has been frowned-upon because of the attack surface being presented, there's no two factor "story" out-of-the-box, and you're opened up to brute force attempts on cruddy user passwords.

    Older versions of the Microsoft Remote Desktop Protocol had a much larger attack surface than current versions. The current versions with Network Level Authentication (starting in Windows Vista/Server 2008) present a smaller attacks surface. Older versions used "homegrown" Microsoft crypto, whereas current versions use TLS.

    Disclosure: I made a FLOSS fail2ban-like tool for RDP many years ago[0]. I had a situation where I was forced to expose RDP to the Internet and I didn't like having it open w/o some protection against brute force attacks. This tool happens to still works in Server 2022 and will slow the velocity of brute force attacks. I still highly recommend not exposing RDP directly to the Internet anyway.

    (The ts_block tool is missing some fairly essential functionality that I never got around to implementing. It works fine and is really easy to install but some things are sub-optimal.)

    [0] https://github.com/EvanAnderson/ts_block

  • Fail2Ban – Daemon to ban hosts that cause multiple authentication errors
    5 projects | news.ycombinator.com | 6 Oct 2023
  • Analysis of a large brute force attack campaign against Windows Remote Desktop
    4 projects | news.ycombinator.com | 5 Jun 2022
    My old ts_block[0] project does something similar to yours, albeit for RDP only and with much less sophisticated customization.

    I opted to go with a WMI Event Sink rather than polling the Event Log. I've never done a benchmark to see which architecture would use less CPU, but I can say the WMI event sink causes nearly instantaneous reaction.

    As an aside: I'd love to hear if somebody tries ts_block on Windows Server 2022. It works fine on 2012 R2 thru 2019 but I've never tried it on 2022.

    [0] https://github.com/EvanAnderson/ts_block

  • WinGet is terrible. I want AppGet back
    19 projects | news.ycombinator.com | 17 Apr 2021
    The perspectives in the comments on this article re: WiX XML source and Windows Installer being difficult are interesting to me. Like I said elsewhere, I overcame that learning curve so long ago that I can't put myself in a position where it seems daunting now.

    To be fair, though, an MSI to install a 10 files in "C:\Program Files\AppName", register a couple .NET assemblies, create a couple of shortcuts, and throw a few values into the registry would amount to <100 lines of XML.

    Here's a years-old WiX 2.0 syntax source file to install 4 files in "C:\Program Files\appname" and run an EXE embedded in the MSI to install a service: https://github.com/EvanAnderson/ts_block/blob/master/MSI/ts_...

    I've only seen "thousands of lines" of WiX source when dealing programs that install a ton of files, or put scads of entries in the registry.

    Most of the MSIs with WiX are based on a simple skeleton generated from a template, and using "includes" generated by the "candle" tool.

    Understanding the Windows Installer and the WiX source feels analogous to what I see in "modern" web development-- a bunch of tools that developers use, seemingly without understanding what they do, to create a massive pile of edifice into which original code is finally placed.

What are some alternatives?

When comparing wix3 and ts_block you can also consider the following projects:

winsparkle - App update framework for Windows, inspired by Sparkle for macOS

Versions - 📦 A Scoop bucket for alternative versions of apps.

wixsharp - Framework for building a complete MSI or WiX source code by using script files written with C# syntax.

Shovel-Ash258 - Personal Shovel bucket with a wide variety of applications of all kinds.

NetSparkle - NetSparkle is a C# cross-platform software update framework for .NET developers compatible with .NET 4.6.2/.NET 6+, WinForms, WPF, and Avalonia; uses Ed25519 or DSA signatures! View basic usage here in the README or visit our website for code docs.

oneget - PackageManagement (aka OneGet) is a package manager for Windows

BruteShark - Network Analysis Tool

ts_block - Blocks IP addresses generating invalid Terminal Services logons

Chocolatey - Chocolatey - the package manager for Windows

algorand-windows-node - Algorand Node Microsoft Windows support

Main - 📦 The default bucket for Scoop.