Click here to Skip to main content
15,888,018 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Guys,
I need to extract the file 437879_intl_x64_zip.exe silently/quietly without user interaction, I googled a lot but could not find any remedy, I am working in powershell, so solution is powershell would be appreciated

you can download the file from

http://hotfixv4.microsoft.com/Windows 7/Windows Server2008 R2 SP1/sp2/Fix381274/7600/free/437879_intl_x64_zip.exe


Thanks in anticipation

What I have tried:

I have read the documentation from Microsoft and tried any option that could help me e.g. switches provided for Microsoft Self-Ectractor, I also tried to search in the codeproject but could not find any solution besides googling
Posted
Updated 8-Apr-16 4:20am
Comments
CHill60 8-Apr-16 8:22am    
Can't you just redirect the output to a file or | Out-Null?
Sergey Alexandrovich Kryukov 8-Apr-16 9:47am    
For your information, .EXE with a self extractor should behave like "normal" zip file. And there is a lot of help on the Web on working with ZIP files under PowerShell.

However, the problem is: one of reason to ZIP data is having big volumes of data. If you want to unzip data in memory, you may face a problem. But if you unzip data just to some files, it should not be a problem.

—SA

1 solution

Those archives don't have a "silent" option that I know of. The only way to get it extracted silently would be to use an outside ZIP utility, like 7ZIP or WinZip, to extract the content. At least those have options to do it silently.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900