vihaan__d wrote:
When I click on the InstallOS.pkg it opens an installation window, but does not convert the .pkg into an app - an installer app never shows up in my Application folder.
You can use a Terminal command to manually extract the installer. Start by typing the following leaving at least one space after "--expand ":
sudo pkgutil --expand
then drag & drop the .pkg file onto the Terminal window to auto-fill the path to the .pkg file. Then continue typing on the same line:
/Applications
You should end up with the command looking something like (yours may look a bit different for the path to the .pkg file):
sudo pkgutil --expand /Volumes/InstallMacOSX/InstallMacOSX.pkg /Applications
If there are no errors and you don't see the El Capitan installer in the Applications folder, then you may need to add another folder to the end of the command like "/Applications/macos":
sudo pkgutil --expand /Volumes/InstallMacOSX/InstallMacOSX.pkg /Applications/macos
If you need to use the latter command, then after it completes drag the actual installer from "/Applications/macos" to the main "/Applications" folder.
Now you should be able to proceed with the "createinstallmedia" instructions in the original Apple article (assuming Apple fixed the Sierra installer).