How to extract msu/msp/msi/exe files from the command line

I find these commands quite helpful — maybe you know them already — if not, here you go:

Microsoft Hotfix Installer (.exe)

setup.exe /t:C: /c

Microsoft Update Standalone Package (.msu)

expand -F:* update.msu C:
cd
expand -F:* update.cab C:

Microsoft Patch File (.msp)

msix patch.msp /out C:
msix.zip

Windows Installer Package (.msi)

msiexec /a setup.msi /qb TARGETDIR=C:

How to extract msu/msp/msi/exe files from the command line

时间: 2024-12-31 14:42:08

How to extract msu/msp/msi/exe files from the command line的相关文章

RH124 Chapter 2 Managing Files From the Command Line

RHEL7里面的目录结构 /bin   可执行文件(可执行应用程序).RHEL7里面/bin目录软链接到了/usr/bin /boot   和系统启动相关东西(相当于windows的100M启动分区) /dev  用户来控制内核,内核管理硬件,内核才可访问硬件.用户空间(用户管理,内核发生了映射).内核空间(直接管理硬件).不能单独划分分区 /etc       存储的是配置文件.参数文件.修改某个系统属性或服务属性.不能单独划分分区 /home    普通用户目录.类似于xp的c盘Docume

chapter2. Managing files from the command line

tree 命令

Powerful Bash-style command line editing for cmd.exe

https://mridgers.github.io/clink/ Clink Download v0.4.8 ZIP (portable) EXE (installer) Overview Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completio

extract specified contents from two files.

src_dir=$(pwd)/All_h dst_dir=$(pwd)/All diff_dir=$(pwd)/diff if [ ! -d $diff_dir ] then mkdir $diff_dir fi for src_full_entry in $src_dir/* do src_cat_entry=$(echo $src_full_entry | sed -e "s/\.[0-9a-rA-F]\{8\}$//") src_cat_entry=$(basename &quo

Using the command line to manage files on HDFS--转载

原文地址:http://zh.hortonworks.com/hadoop-tutorial/using-commandline-manage-files-hdfs/ In this tutorial we will walk through some of the basic HDFS commands you will need to manage files on HDFS. To complete this tutorial you will need a working HDP clu

Linux / mysql: is it safe to copy mysql db files with cp command from one db to another?

Copying is very simple for MyISAM and completely 100% risky (near suicidal) with InnoDB. From your question, you brought up cp /db1/mytable.frm /db2/mytable.frm MyISAM This is OK to do. However, you cannot just move the .frm. You must move all compon

Loadrunner11 录制手机App脚本多种方法介绍

总体来说,通过LR录制手机脚本的方式有三种:1)通过代理方式录制,保证手机电脑在同一个网段:2)通过抓包录制,在手机上安装Mobile Recorder:3)通过安卓模拟器录制,本地安装Android模拟器Emulator (Android SDK) 一.通过代理方式录制 http://jingyan.baidu.com/article/359911f566da0d57fe0306d0.html 当lr11为破解版(不包含Proxy Recorder 代理录制功能,无法使用上面方法录制) 方式1

curl-手册

Manual -- curl usage explained Related: Man Page FAQ LATEST VERSION   You always find news about what's going on as well as the latest versions from the curl web pages, located at:   https://curl.haxx.se   SIMPLE USAGE   Get the main page from Netsca

Go项目目录管理

在Go的官网文档How to Write Go Code中,已经介绍了Go的项目目录一般包含以下几个: src 包含项目的源代码文件: pkg 包含编译后生成的包/库文件: bin 包含编译后生成的可执行文件. 可以通过下面的例子来说明工程目录的组织管理.(Windows 7 64位,go version go1.3.3 windows/amd64) 1. 创建一个库文件 创建一个库文件a.go并保存在scr目录的一个子目录下面. package myfunc import "fmt"