Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The family options are for sharing a library between accounts, not sharing a steam link between accounts.
Steps I would assume would work.
1) sign out of steam
2) install steam to a 2nd drive or partition.
3) download and install sandboxie to the same drive
4) add the new install of steam to your sand box
5) open the new download of steam via the sandboxie menu and sign in.
6) in steam settings point the game directory to your main steam account.
7) open your normal steam exe and sign back in.
8) set up family sharing across the 2 accounts.
In theory this setup will allow you to pair his steam link to his own account and give him access to all of your games with his own achievements but saves may be shared since it's the same install folder.
(I would assume for the initial pairing be signed out of your main account , if it doesn't detect the pc sign into his account with your normal exe and pair then switch and test)
Alternativly you can always use this as an excuse to buy/build yourself a new PC lol.
With family sharing active you can both play games at the same time, just not the same game at the same time.
This problem has been bothering me for a while now and finally I've come up with a workable solution (with batch scripting).
My first attempt was to kill all steam processes using a script and start steam again via command line (e.g. steam -login un pw).
This worked when calling the script on the local PC but was useless via Steam Link.
I then came up with a solution that reboots your PC and logs in the other account.
For this solution you will have to do a couple of things:
1. Make sure steam on your PC does not boot by itself when the PC boots (the script does that for you)
2. Do not check the checkbox "boot into big picture mode" on your PC
3 Add the script below to a batch file and use some tool (e.g. http://www.f2ko.de/en/b2e.php) to convert the batch to exe
4 Once you have the exe, add it as a non-steam game to your library
5 I have made two batch files/exes. When playing via account X you need to be able to go to account Y but off course you also want to be able to go to account X when you are playing via account Y.
Be aware that the script restarts the host PC, so it depends on your PC how long the process will take. At least you don't have to get up and walk to the PC, which off course we all want to avoid because we are lazy af. :D
Copy and paste the following into a script and off course, fill in {PCUSERNAME} and {UN} and {PW}:
@echo off
set filepath="C:\Users\{PCUSERNAME}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\"
IF EXIST %filepath%\startSteam.bat (
del %filepath%\startSteam.bat
goto write
) ELSE (
goto write
)
:write
@echo steam -login {UN} {PW} > %filepath%\startSteam.bat
shutdown -r -t 2
EXIT
Sorry for resurrecting this old thread, but I'd like to understand why this was useless via Steam Link? Is it because the batch/exe process gets terminated as soon as Steam gets killed? Maybe using some other mechanism to run the process that terminates and restarts Steam would work? Something equivalent to nohup on Unix/Linux? E.g. maybe it can be run as a scheduled task?