This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows ® Installer. V 5.0.18362.1 | |
msiexec /Option <Required Parameter> [Optional Parameter] | |
Install Options | |
</package | /i> <Product.msi> | |
Installs or configures a product | |
/a <Product.msi> | |
Administrative install - Installs a product on the network | |
/j<u|m> <Product.msi> [/t <Transform List>] [/g <Language ID>] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
class NonCopyable | |
{ | |
protected: | |
// 1. provide default ctor so it doesn't have to be explicitly defined in inherited classes | |
// 2. make NonCopyable class abstract so it can't be instantiated | |
NonCopyable() {} | |
/*virtual*/ ~NonCopyable() {} |
OlderNewer