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.
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
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
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
Is Visual Studio 2017 community version still available?
I believe you can find older versions here More on reddit.com
Videos
10:44
How to Install Microsoft Visual Studio 2022 on Windows 10/11 [ ...
08:57
How to Install Microsoft Visual Studio 2022 on Windows 10/11 (64 ...
06:04
Visual Studio 2022 Offline Installer - YouTube
11:46
DESCARGAR e INSTALAR VISUAL STUDIO 2022 GRATIS - YouTube
11:43
Aprende a Instalar Visual Studio 2022 Professional + Licencia - ...
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!
Visualstudio
my.visualstudio.com › downloads
Downloads - Visual Studio Subscriptions Portal
We cannot provide a description for this page right now
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 ...
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 Learn
learn.microsoft.com › de-de › visualstudio › install › install-visual-studio
Install Visual Studio | Microsoft Learn
September 9, 2025 - You can install Visual Studio 2022 side by side with previous versions.
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.