Skip to content

AKharytonchyk/oxygen-not-included-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Oxygen Not Included Mod Cache Cleanup Scripts

Purpose of These Scripts

These scripts are designed to remove all cached information about the mods in the Oxygen Not Included game. By forcing the game to reinstall the mods and update them, these scripts can help resolve issues when the app crashes on launch after installation or version upgrade.

  • The script will clean up the mods folder
  • The script will clean up Steam/steamapps/workshop/appworkshop_457140.acf file that holds all the references of the mods installed from workshop
  • The script will clean up mods.json that stored saved configuration of active mods

How to Run on macOS

  1. Install jq: Ensure jq is installed. You can install it using Homebrew with the following command:

    brew install jq
  2. Make the Script Executable: Make the script executable with the following command:

    chmod +x cleanup-oni-mods.sh
  3. Run the Script: Execute the script with the following command:

    ./cleanup-oni-mods.sh

How to Run on Windows

  1. Run PowerShell as Administrator: Open PowerShell with administrative privileges.

  2. Set Execution Policy: If not already set, allow PowerShell scripts to run by setting the execution policy:

    Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
  3. Run the Script: Navigate to the directory where the script is saved and execute it:

    .\cleanup-oni-mods.ps1

By following these steps, you can clean up the mod cache for the Oxygen Not Included game on both macOS and Windows, ensuring that mods are reinstalled and updated to prevent crashes.