A way to automatically enable/disable 3d support?

krumme

Diamond Member
Oct 9, 2009
5,956
1,595
136
On my 970, When i have to watch a 3d movie on my projector i first go in nv controlpanel, setup stereoscopic 3D - or else its not possible to watch it in 3d.

When i then go game on my 1440 screen i have to manually disable it - because i dont want to game bf4 in 3d.

That seems wrong and long way to me, is there a way to do that automatically?
 

bystander36

Diamond Member
Apr 1, 2013
5,154
132
106
I use a couple scripts, to toggle it on and off. I just click a 3D icon on my task bar to turn it on, and another to turn it off.

These are the two batch file scripts:
Code:
@echo off
"C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe" /enable
exit

and

Code:
@echo off
"C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe" /disable
exit

It's also possible to toggle, but I prefer to do it this way, so I know which mode it is on. I then place them on my task bar in an extended toolbar.

You probably can combine those scripts with one to open your movie app.
 

krumme

Diamond Member
Oct 9, 2009
5,956
1,595
136
I use a couple scripts, to toggle it on and off. I just click a 3D icon on my task bar to turn it on, and another to turn it off.

These are the two batch file scripts:
Code:
@echo off
"C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe" /enable
exit

and

Code:
@echo off
"C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe" /disable
exit

It's also possible to toggle, but I prefer to do it this way, so I know which mode it is on. I then place them on my task bar in an extended toolbar.

You probably can combine those scripts with one to open your movie app.
Thanx !