Scripts executed by a WinRar self-extracting archive not behaving as expected

1k Views Asked by At

I have a self-extracting WinRar archive set up to run a powershell script upon completion. The script will launch, but specific commands do not give expected results.

In particular, I have the following command to find the installation path of an installed game (Risk of Rain 2).

Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | % { Get-ItemProperty $_.PsPath } | Where-Object {$_.DisplayName -like 'Risk of Rain 2'} | Select InstallLocation -ExpandProperty InstallLocation

When running the script by itself, I get the install path as expected.

F:\SteamLibrary\steamapps\common\Risk of Rain 2

When the script is launched (either before or after extraction), the command seems to run, but outputs nothing.

In testing, I removed everything but the following:

Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | % { Get-ItemProperty $_.PsPath } 

This still works, outputting a list of installed applications. When I add the pipe to the "Where-Object" portion, it starts to fail.

My only guess is that WinRar is starting the scripts with some other parameters set.

I tried having Winrar start a .bat that will then run the .ps1 file, but had the same result. Same goes for running the archive as an administrator.

Is something funky with my powershell script, or am I just missing something with how Winrar handles things?

Thanks!

2

There are 2 best solutions below

2
On

So...WinRAR gives options for the SFX module used. I was using the default Zip.SFX module when I should have been using Zip64.SFX.

The powershell session it opened previously was 32-bit, which gives a different result when reading the installed programs from the registry.

If you have anything 32/64 bit specific in the commands being run after an extraction, make sure the right module is selected in the Advanced SFX options.

Thank you all for the help!

Advanced SFX options

0
On

So according to your comment the archive uses underscore in place of spaces. So looking at your code we see this originally

Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | % { Get-ItemProperty $.PsPath } | Where-Object {$.DisplayName -like 'Risk of Rain 2'} | Select InstallLocation -ExpandProperty InstallLocation

Your error occurs when we try to include the Where-object. So I believe the solution to your problem should be to modify your code as such:

Get-ChildItem HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | % { Get-ItemProperty $_.PsPath } | Where-Object {$_.DisplayName -like 'Risk_of_Rain_2'} | Select InstallLocation -ExpandProperty InstallLocation

Essentially we changed the -like from 'Risk of Rain 2' to 'Risk_of_Rain_2'

I believe this should solve the problem as it is called by the WinRar it probably still uses the underscore name. Since you are checking for a like name that only indicates that it can include any number and type of characters after or before the words in the like string. The like string itself is exact.