Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uzegonemad/457189860362ef01e481 to your computer and use it in GitHub Desktop.
Save uzegonemad/457189860362ef01e481 to your computer and use it in GitHub Desktop.
$root = "C:\Program Files (x86)\Microsoft Games\Halo"
# if sdtm is prefixed, install them
if(Test-Path("$root\Maps-SDTM"))
{
Move-Item "$root\Maps" "$root\Maps-Default"
Move-Item "$root\Maps-SDTM" "$root\Maps"
[System.Windows.Forms.MessageBox]::Show("SDTM Maps Activated")
}
# otherwise install the default
else
{
Move-Item "$root\Maps" "$root\Maps-SDTM"
Move-Item "$root\Maps-Default" "$root\Maps"
[System.Windows.Forms.MessageBox]::Show("Default Maps Activated")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment