Call of Duty: Black Ops III

Call of Duty: Black Ops III

34 ratings
Launch both BO3 and T7 patch with one shortcut
By Exor
   
Award
Favorite
Favorited
Unfavorite
The guide
If you are lazy like me and only feel like launching everything from one shortcut, here is a PowerShell script to launch both the T7 Community Patch and Black Ops 3 on Steam:

-----------------------------------------------------------------------------------------------------------------

$executableName = "t7patch_2.01.exe"


$directoryPath = "F:\Game Stuff\CoD\BO III\Black Ops III Community Patch"

$fullPath = Join-Path -Path $directoryPath -ChildPath $executableName

if (Test-Path -Path $fullPath -PathType Leaf){

$executableDirectory = Split-Path -Path $fullPath

Start-Process -FilePath $fullPath -WorkingDirectory $executableDirectory

Start-Process "steam://run/311210"}

else{

Write-Host "The specified executable file was not found. Check the location & name of your T7 patch"}

-----------------------------------------------------------------------------------------------------------------
I did this with the help of AI but it works for me and it should work for you, too. Just change "$directoryPath = "F:\Game Stuff\CoD\BO III\Black Ops III Community Patch"" to the path in which your patch's .exe is located. The code can be shortened but feel free to use it as a base.

This is for T7 Patch v2_01. If there is an update then change the name of the exe in "$executableName = "t7patch_2.01.exe"" located in the .ps1 file.


If you want to be able to launch the shortcut by double-clicking:

Move the .ps1 script somewhere

Create a shortcut that links to the script by creating a shortcut to: "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass -File "PATH TO .PS1 SCRIPT (ex: F:\BO3 Stuff\Patch filename.ps1)"
15 Comments
Nozzel829 18 Mar @ 7:40pm 
No, I mean launch the t7 patch when you open Bo3 itself, without 1. installing some external software, and 2. a single click on "Play now" in steam launches both the patch and bo3, with Steam understanding that the game is open so friends know you're playing etc
Exor  [author] 11 Mar @ 12:07pm 
Do you mean adding the program as a non steam game? Games > Add a non-Steam game to my library, then add the exe file
Nozzel829 10 Mar @ 2:58am 
Is there any way to launch the t7 patch when you're launching the game from WITHIN STEAM (ie not some external shortcut)? I've tried launch parameters with custom .bat files but shit never seemed to work
SaakS 17 Aug, 2024 @ 3:38pm 
Thanks helped a lot. For the people having trouble creating the shortcut to auto-open t7patch and BO3:
1. Create a text file on your desktop and paste the above-mentioned code.
2. Change the file extension of the text file to .ps1
3. create a shortcut on your desktop (right-click on your desktop and select New > Shorcut.
4. For the location enter: powershell.exe -ExecutionPolicy Bypass -File "C:\path\to\your\script.ps1" (for the path to your script: Right-click the .ps1 you just created and click: "Copy as path")
5. now name the shortcut to whatever you prefer.
6. Done, click the shortcut and everything should work.

It wasn't really clear to me how to do this and saw other people having trouble as well so I hoped this helps.
Exor  [author] 11 Nov, 2023 @ 2:22pm 
Type in your Windows search bar: Windows Powershell ISE
Troopa 11 Nov, 2023 @ 2:12pm 
bro can you possibly add me on discord and help me with this?
Troopa 11 Nov, 2023 @ 2:11pm 
im so confused on where to paste this lol
the bugs 6 Nov, 2023 @ 1:05pm 
:ujel::pfff:
♡~MayMochi~♡ 29 Aug, 2023 @ 4:29am 
I am the dumbest idiot ever lol, maybe next time I'll figure it out ^^;
Spamalot223 28 Aug, 2023 @ 8:43pm 
Nice find, well done :)