From 79bd667054adb14ca51f6da5af835a32f5a06716 Mon Sep 17 00:00:00 2001 From: TheTank20 Date: Thu, 21 Dec 2023 17:55:32 +0000 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 803ac59..93958b3 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ If you're trying to manage products other than Windows, you need `xpmgr_x86.exe` `--Office2003`: This provides **EXPERIMENTAL** support for Office 2003. When this parameter is used, all other parameters except `--GetInstallationID` and `--SetConfirmationID` are disabled, and those two (attempt) to go what they do on Office 2003, rather than Windows. +`--BypassInstallCheck`: Disables the check to see if Office 2003 is installed. Intended for debugging purposes only. If it doesn't work without this enabled, it probably won't work with it either. + `--GetUsage`: Outputs all the commands you can use. ## Releases @@ -42,3 +44,8 @@ g++ -m32 -o build\x86\xpmgr_x86 xpmgr.cpp build\x86\icon_x86.res -lole32 -luuid windres icon.rc -O coff -o build\x64\icon_x64.res g++ -o build\x64\xpmgr_x64 xpmgr.cpp build\x64\icon_x64.res -lole32 -luuid -loleaut32 ``` + +Or, if you like one-liners: +``` +mkdir build & mkdir build\x86 & mkdir build\x64 & windres icon.rc -F pe-i386 -O coff -o build\x86\icon_x86.res & g++ -m32 -o build\x86\xpmgr_x86 xpmgr.cpp build\x86\icon_x86.res -lole32 -luuid -loleaut32 & windres icon.rc -O coff -o build\x64\icon_x64.res & g++ -o build\x64\xpmgr_x64 xpmgr.cpp build\x64\icon_x64.res -lole32 -luuid -loleaut32 +```