ip7z / 7zip

7-Zip
458 stars 57 forks source link

[Feature Request] Extended SFXSetup config #29

Open BiatuAutMiahn opened 1 month ago

BiatuAutMiahn commented 1 month ago

Hello can you implement any of the following abilities?

-Update files based on file size and/or file modified time. -Configure extract mode via config. -Configure target directory via config. (In my test implementation I fallback to tempDir if extractPath not specified) -Allow one to issue ShellExecuteEx /w runas verb via config so we can get elevation. -ExpandEnvironmentStrings for paths in the config. -Unicode by default.

Thanks!

btw in ReadDataString: if (posTotal > (1 << 20)) return (stringResult.IsEmpty()); should be... if (posTotal > (1 << 22)) return (stringResult.IsEmpty()); to handle reading config up to 4MB stub