4

I'm currently using Sandboxie, but it has many downsides like game crashes and slow download network traffic to name a few.

I need something like Sandboxie because I'm using a called Aster to allow two Windows users to run at the same time on the same OS on different monitors with different GPUs. While most apps work fine in this configuration Steam only allow a single instance open at any time even if it's installed in 2 separate directories and being run by 2 separate user accounts.

If I could tell the Steam installer to allow multiple instances, then I could install it in a separate directory for each user. From there, I'd also need steam.exe to allow running multiple instances for the same reason.

I'm not sure what else could break in terms of registry entries though. This may be more involved than I think; although, that's why I'm wondering if there's a better way of handling this without Sandboxie.

3 Answers3

4

I realize this question has been around for a while, but I recently stumbled upon a functional solution from another source and wanted to share it with those who may still need it.

As not an ASTER user, no external software or modifications to Steam are required for this method. Simply create a 'multisteam.bat' file (or choose any other name) with the following code:

@echo off
set VPROJECT=steammulti
start "Steam1" "C:\Program Files (x86)\Steam\steam.exe" -master_ipc_name_override steam1
start "Steam2" "C:\Program Files (x86)\Steam\steam.exe" -master_ipc_name_override steam2

Run the batch file, and two Steam clients will open. You can log in each one with a different account.

If you want to run the same game on each instance, consider adding "-allowmultiple" to the game launch options. While this should work for most games, there might be exceptions.

I hope you find this solution helpful!

1

This is not possible without using Sandboxie or a virtual machine.

This is because the Steam client service (the core of Steam) runs as System and has access to all user directories. You can set the service to run under a specific user instead of Local System, but that will prevent other users from running it.

There is nothing you can do about it. Steam is intended to work as a singleton application.

One reason might be because some games save their player-specific data in predefined folders, rather than in %user%. Such games would still work when running Steam in Sandboxie, as there would be no contention between the instances, since they will be using different files.

harrymc
  • 498,455
1

Apparently, you can now, no workaround needed.

I'm running ASTER v2.31, Windows 11 22H2, and Steam updated to the latest version. You can simply open the program and run games in both user sessions simultaneously without limitations. I've been testing this for weeks now.