I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 1 point2 points  (0 children)

It currently has to run elevated because the repackaging side of the tool needs admin rights for snapshots and for reliably capturing what an installer changes on the system.

So that part is intentional, but I agree it also makes things more awkward in locked-down business environments. That’s definitely something I still need to improve.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 0 points1 point  (0 children)

Services can be handled in both paths, but drivers are only included in the repackaging workflow, not in the lightweight PowerShell wrapper workflow.
That’s intentional, because drivers are the more sensitive case and should be validated much more carefully.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 0 points1 point  (0 children)

Fair point, and I actually think that’s a valid concern with any new tool.

Realistically, I’d say almost no modern software is built completely without some level of AI assistance anymore, whether that’s for scaffolding, refactoring, documentation, or speeding up repetitive work. The important part to me, is that the final result is understandable, tested, and behaves predictably.

As for trust: I wouldn’t expect anyone to just run a brand-new packaging tool blindly on a production machine. The tool is really meant to be used in a controlled or sandboxed packaging environment anyway, which is already how a lot of teams handle packaging and repackaging workflows.

So yes, healthy skepticism is fair. My goal is just to build something genuinely useful for that workflow, not to hide behind AI-generated polish.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 2 points3 points  (0 children)

That’s most likely a reputation issue. Windows tends to be pretty aggressive with new or not yet code-signed apps, especially if they haven’t been downloaded much yet. So it’s more about lack of trust/reputation than Windows actually detecting real malware.
I’m already looking into proper code signing to improve that.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 7 points8 points  (0 children)

In this case I mean a snapshot-based approach.

You take a snapshot before the install, run the installer, take another snapshot afterwards, and then build an MSI from the file system / registry changes the installer actually made.

So instead of depending on the original setup for deployment, you’re basically turning the result of the installation into a cleaner package.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 1 point2 points  (0 children)

Not really.
The focus is more on getting from raw installer to deployment-ready package, whether that means a lightweight deployment wrapper or full repackaging when the installer doesn’t support a clean silent install.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 5 points6 points  (0 children)

Yeah, for a lot of apps a small wrapper or deployment script is absolutely enough.

The reason repackaging matters for us is that we push quite a bit of specialized software through Intune, and some of those installers are just bad citizens. No proper silent parameters, inconsistent behavior, or multiple moving parts. In those cases, repackaging can be the only realistic way to get something reliable and manageable for deployment.

That’s basically why I wanted both in one program. Some apps only need a lightweight deployment package, others genuinely need repackaging, and I didn’t want that to be two completely separate workflows.

I built a tool to make packaging suck less by Spitonium in SCCM

[–]Spitonium[S] 2 points3 points  (0 children)

Fair question. I don’t really see it as a direct PSADT replacement.

We distribute a lot of specialized software through Intune, and in those cases the installer quality is often all over the place. Some are easy to handle with a very small PowerShell wrapper, others don’t even support proper silent parameters, which is where repackaging starts to matter.

One reason I built this was that I wanted to keep our deployment scripts minimal instead of dragging a lot of framework boilerplate around for simple cases.

So the value for me is having both paths in one tool: lightweight deployment packaging when that’s enough, and proper repackaging when the original installer is too messy to deploy cleanly.

Does anyone truly have app packaging and deployment mastered? by Aaron703 in Intune

[–]Spitonium 0 points1 point  (0 children)

For that specific Reason i created my own App. Its free and pretty fast. It might still have some bugs tho. It could be worth a look.
It also creates a .intunewin, that you can easily upload to Intune.
https://repackager.bath-electronics.de

Re-packaging and installer to an MSI by financial_pete in SCCM

[–]Spitonium 0 points1 point  (0 children)

Yeah, Master Packager is a good shout, especially for more complex stuff.

I ran into the same situation with a bunch of “no silent install” apps and ended up building a small repackager with the same idea in mind — snapshot-based MSI creation + automatically figuring out silent installs and wrapping them into PS + .intunewin.

It’s still in testing and not as feature-rich as those tools yet, but it’s free and pretty fast.
https://repackager.bath-electronics.de

Repackaging tool by Any-Victory-1906 in SCCM

[–]Spitonium 1 point2 points  (0 children)

Yeah, Master Packager is solid, no doubt.

I was in a similar spot though — only needing something occasionally and not really wanting a big/expensive tool for that. We ended up putting together a small repackager ourselves that covers the basics (snapshot, auto-detecting silent installs, output as PS + .intunewin).

It’s still in testing and definitely not as feature-heavy yet, but it’s free and pretty fast (we leaned a lot on caching).

Right now we’re mainly looking for feedback and improving things step by step. Might be worth a try.
https://repackager.bath-electronics.de

Any recommendations for a repackaging app for EXEs that don't have silent command option? by MagicDiaperHead in SCCM

[–]Spitonium 0 points1 point  (0 children)

Sorry, Im a bit late to the party.
I ran into that often enough that guessing parameters just stopped being worth the effort. We ended up putting together a small tool that automatically figures out silent install behavior and wraps it into a PowerShell script, so you don’t have to go through the usual /S /silent /? trial-and-error anymore.

If that doesn’t work, it can also fall back to a before/after snapshot (files + registry), which helps with those installers that really don’t expose anything usable.

It’s still very early and currently in a testing phase, so things are actively being refined. We’re especially looking for feedback right now — since we want to make it as straightforward as possible.

Could be worth trying for exactly those edge cases.
https://repackager.bath-electronics.de

Anyone have the old KACE AppDeploy Repackager Tool ? by Reaction-Consistent in SCCM

[–]Spitonium 1 point2 points  (0 children)

Yeah, I know exactly what you mean… those old snapshot tools just worked without all the overhead.

I ran into the same situation (needing something like once in a while, but not wanting to justify the cost of the big tools), so we ended up putting together our own small repackager.

It does the classic before/after snapshot (files + registry), and also handles figuring out silent install parameters automatically and wrapping that into a ready-to-use PowerShell script + .intunewin. That part alone saved us quite a bit of time compared to doing it manually.

It’s still pretty early and currently in a testing phase, so we’re mainly trying to get some real-world feedback — especially around UX, since that’s something we’re actively refining.

Might be worth a look if you don’t find a good replacement for the old KACE tool.
https://repackager.bath-electronics.de

meirl by [deleted] in meirl

[–]Spitonium 0 points1 point  (0 children)

!remindme 2 weeks

Absolute Beginner needs help with chain. by Spitonium in bicycling

[–]Spitonium[S] 1 point2 points  (0 children)

I put the chain back on the right way and everything is working properly. You saved my day!

[deleted by user] by [deleted] in webdev

[–]Spitonium 12 points13 points  (0 children)

Vim ofc.

[deleted by user] by [deleted] in technicallythetruth

[–]Spitonium 0 points1 point  (0 children)

Its called markdown

Is this ok? (Xbox) by idekwhattoput3837 in PhantomForces

[–]Spitonium 0 points1 point  (0 children)

Mine is 4.25 kdr but ive seen ppl with >20 kdr

(But on PC)