If you're using Makefiles or other similar build systems, it should be fairly easy. Just have you Makefile throw all your OS files in a directory after building them and then use something like xorriso (on Linux) to turn taht directory into an ISO file. From the Makefile for the Astral OS ( https://github.com/Mathewnd/Astral/blob/rewrite/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table --efi-boot limine-uefi-cd.bin -efi-boot-part --efi-boot-image --protective-msdos-label $(ISODIR) -o $(ISO) In this case, $(ISODIR) is the directory I was talking about earlier and $(ISO) is the name of the ISO file. For example: $(ISODIR) could be ./iso_root/ and $ISO) could be ./my_os.iso. All the options you see mentioning "limine" are related to the Limine Bootloader, if you're not using it you should replace them with your bootloader of choice. Another example from my old OS ( https://github.com/Alessandro-Salerno/SalernOS/blob/main/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin \ -no-emul-boot -boot-load-size 4 -boot-info-table \ --efi-boot limine-uefi-cd.bin \ -efi-boot-part --efi-boot-image --protective-msdos-label \ iso_root -o $(IMAGE_NAME).iso ./limine/limine bios-install $(IMAGE_NAME).iso As you can see, this is quite similar. Hope I could help, I've stopped doing osdev quite a while ago so my memory is a bit funky. Answer from Putrid-Luck4610 on reddit.com
🌐
Visual Studio
visualstudio.microsoft.com › downloads
Visual Studio & VS Code Downloads for Windows, Mac, Linux
January 26, 2026 - Download Visual Studio IDE or VS Code for free. Try out Visual Studio Professional or Enterprise editions on Windows, Mac.
🌐
Developer Insider
developerinsider.co › download-visual-studio-2022-web-installer-iso-community-professional-enterprise
Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise)
January 10, 2026 - Download the Web Installer or Offline Installer (ISO) of Visual Studio 2022 (Community / Professional / Enterprise) for Windows or macOS. Experience a fast and fluid, modern .NET IDE hand-tailored.
Discussions

How to package an OS made in Visual Studio 2022 into an ISO file
If you're using Makefiles or other similar build systems, it should be fairly easy. Just have you Makefile throw all your OS files in a directory after building them and then use something like xorriso (on Linux) to turn taht directory into an ISO file. From the Makefile for the Astral OS ( https://github.com/Mathewnd/Astral/blob/rewrite/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table --efi-boot limine-uefi-cd.bin -efi-boot-part --efi-boot-image --protective-msdos-label $(ISODIR) -o $(ISO) In this case, $(ISODIR) is the directory I was talking about earlier and $(ISO) is the name of the ISO file. For example: $(ISODIR) could be ./iso_root/ and $ISO) could be ./my_os.iso. All the options you see mentioning "limine" are related to the Limine Bootloader, if you're not using it you should replace them with your bootloader of choice. Another example from my old OS ( https://github.com/Alessandro-Salerno/SalernOS/blob/main/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin \ -no-emul-boot -boot-load-size 4 -boot-info-table \ --efi-boot limine-uefi-cd.bin \ -efi-boot-part --efi-boot-image --protective-msdos-label \ iso_root -o $(IMAGE_NAME).iso ./limine/limine bios-install $(IMAGE_NAME).iso As you can see, this is quite similar. Hope I could help, I've stopped doing osdev quite a while ago so my memory is a bit funky. More on reddit.com
🌐 r/osdev
10
9
November 10, 2024
VISUAL STUDIO 2022 INSTALLATION
I Downloaded Visual Studio complete file of 27GB but I don't know how to install it using cmd. If I run the .exe, it is requesting to go online and download file before installation. More on translate.google.com
🌐 translate.google.com
2
0
July 30, 2024
How to create offline installer for visual studio community 2022
Then refer this article where ISO is given for download Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise) Follow the steps. More on translate.google.com
🌐 translate.google.com
6
October 13, 2021
Is Visual Studio 2017 community version still available?
I believe you can find older versions here More on reddit.com
🌐 r/VisualStudio
35
14
July 18, 2023
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 1848141 › visual-studio-2022-installation
VISUAL STUDIO 2022 INSTALLATION - Microsoft Q&A
July 30, 2024 - Welcome to Microsoft Q&A forum. ... Download a bootstrapper file(setup file) on a machine with network. Use command lines to download VS and generate a layout. Move the layout to the offline machine, use command lines or directly run the setup.exe ...
🌐
GitHub
gist.github.com › stormwild › 3a7f803113329d36511160534f60eef6
Visual Studio · GitHub
Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise)
🌐
Reddit
reddit.com › r/osdev › how to package an os made in visual studio 2022 into an iso file
r/osdev on Reddit: How to package an OS made in Visual Studio 2022 into an ISO file
November 10, 2024 -

So, we have this project to make a simple OS. We're done with that already, but the professor wants us to package it in an ISO file to be passed. When we asked him how to do it, he said research. So, can anyone help us figure out how to do this? TYIA

He's using VirtualBox as the VM for the demo of our OS that we made (idk if this info will help)

Top answer
1 of 6
11
If you're using Makefiles or other similar build systems, it should be fairly easy. Just have you Makefile throw all your OS files in a directory after building them and then use something like xorriso (on Linux) to turn taht directory into an ISO file. From the Makefile for the Astral OS ( https://github.com/Mathewnd/Astral/blob/rewrite/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table --efi-boot limine-uefi-cd.bin -efi-boot-part --efi-boot-image --protective-msdos-label $(ISODIR) -o $(ISO) In this case, $(ISODIR) is the directory I was talking about earlier and $(ISO) is the name of the ISO file. For example: $(ISODIR) could be ./iso_root/ and $ISO) could be ./my_os.iso. All the options you see mentioning "limine" are related to the Limine Bootloader, if you're not using it you should replace them with your bootloader of choice. Another example from my old OS ( https://github.com/Alessandro-Salerno/SalernOS/blob/main/Makefile ): xorriso -as mkisofs -b limine-bios-cd.bin \ -no-emul-boot -boot-load-size 4 -boot-info-table \ --efi-boot limine-uefi-cd.bin \ -efi-boot-part --efi-boot-image --protective-msdos-label \ iso_root -o $(IMAGE_NAME).iso ./limine/limine bios-install $(IMAGE_NAME).iso As you can see, this is quite similar. Hope I could help, I've stopped doing osdev quite a while ago so my memory is a bit funky.
2 of 6
5
How exactly do you build it? Do you use a custom bootloader - if so, is it UEFI based? Has the professor shown any other way to run the OS, other than the iso file?
🌐
Visual Studio
visualstudio.microsoft.com › vs › community
Visual Studio Community | Download Latest Free Version
December 8, 2025 - Try our free, fully-featured, and extensible IDE for creating modern developer apps for Windows, Android, & iOS. Download Community for free today!
Find elsewhere
🌐
Microsoft Learn
learn.microsoft.com › en-us › visualstudio › install › create-an-offline-installation-of-visual-studio
Create an offline installation - Visual Studio (Windows) | Microsoft Learn
You can use the Download all, then install feature from the Visual Studio Installer to download an installation package on the local machine before you install it locally, or you can use the command line to create a local installation package ...
🌐
Junian
junian.net › dev › visual-studio-community-download-links
Visual Studio Community Downloads - 2026, 2022, 2019, 2017, 2015, 2013
2 weeks ago - 📦 Download Visual Studio 2022 Community · 📦 Download Visual Studio 2019 Community · 📦 Download Visual Studio 2017 Community · 📦 Download Visual Studio 2015 Community with Update 3 ISO · 📦 Download Visual Studio 2013 Community with Update 5 ISO ·
🌐
Microsoft
visualstudio.microsoft.com › vs › support
Technical Support & FAQs - Visual Studio IDE
February 10, 2026 - If you have purchased a Visual Studio subscription and that subscription is still active, then you are entitled to the latest release of Visual Studio. (Ex. You purchased Visual Studio 2019, your subscription is still active, you are entitled to Visual Studio 2022)
🌐
Google Translate
translate.google.com › home › forums › software › programming
How to create offline installer for visual studio community 2022 | Digit Technology Discussion Forum
October 13, 2021 - Then refer this article where ISO is given for download Download Visual Studio 2022 Web Installer / ISO (Community / Professional / Enterprise) Follow the steps.
🌐
Microsoft
visualstudio.microsoft.com › vs
Visual Studio IDE - AI for coding debugging and testing
3 weeks ago - Visual Studio offers AI-enhanced features for context-aware code completions, AI chat assistance, debugging suggestions, and unit test generation. Use these alongside Git management and cloud deployments for a full end to end developer experience.
🌐
YouTube
youtube.com › watch
Cómo Instalar Visual Studio 2022 en Windows | Guía Paso a ...
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.