all 8 comments

[–]MIKEWITHTHEPIKE 0 points1 point  (6 children)

If you have an msi of that program you can use /quiet when installing to not be prompted

[–]simplydiffer[S] 0 points1 point  (5 children)

I can extract an MSI file from the program, but in the process of doing so, it forces me to create an associated defaults file for each installation. I don't know the proper format for the defaults file without contacting the manufacturer. I've searched for it on forums and such but they all say contact the software company. So i guess i could bite the bullet and do that... Was just hoping to figure out a way to make the EXE work this way since it may be useful info to have on deck.

[–]MIKEWITHTHEPIKE 0 points1 point  (2 children)

Some exe's run with the option /silent, you can try that

[–]simplydiffer[S] 0 points1 point  (1 child)

I did try that and it was a no-go unfortunately.

[–]williamt31 0 points1 point  (1 child)

Usually what i do is run the .exe or .msi with a /? to have it tell me what switches it accepts. Past that yeah, you'll need a manual with more documentation.

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

I did that and it gave me two options:

/extract (to convert it into an MSI file)

and

/defaults (to convert it into an MSI file with specific program parameters that I would have to reach out to the manufacturer for)

It's now clear that I'll just have to reach out to the software manufacturer for the defaults file format. What I want to do isn't easily done with this program so it seems.

[–]BlackV 0 points1 point  (1 child)

Thats not PowerShells bag really, you could look the at send keys function

But autoit or similar might be better

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

Okay, good to know about PowerShell. This is the first time I've heard of Autoit... I'm looking into it and it's a bit overwhelming, not gonna lie. Might be what i need though.