Hi sorry my English is bad.
It has been tested on Windows 10 x64 (Nvidia hotkeys= English Windows)
You must edit according to your own computer. Rest is up to you.
All modifications which you do are entirely at your own risk!
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
video
https://youtu.be/F-XRsRyMlOs
3D-SLI.vbs
[code]' KILL APPLICATION FOR SLI
Set WshShell = CreateObject("WScript.Shell")
Function KillProcess(strProcessName)
Dim oProcess
KillProcess = False
For Each oProcess in GetObject("winmgmts:").InstancesOf("Win32_Process")
If InStr(UCase(strProcessName), UCase(oProcess.Name)) <> 0 Then
oProcess.Terminate()
KillProcess = True
Exit Function
End If
Next
End Function
KillProcess("nvcplui.exe")
KillProcess("MSIAfterburner.exe")
KillProcess("LCore.exe")
KillProcess("chrome.exe")
KillProcess("calculator.exe")
KillProcess("Video.UI.exe")
KillProcess("plugin-contanier.exe")
KillProcess("microsoftedge.exe")
KillProcess("microsoftedgecp.exe")
KillProcess("firefox.exe")
KillProcess("spotify.exe")
KillProcess("SplashProEx.exe")
KillProcess("sbz.exe")
KillProcess("IEXPLORE.EXE")
KillProcess("whatsNew.Store.EXE")
KillProcess("backgroundtaskhost.exe")
' REGISTER KEY FOR NVIDIA LAST PAGE.(SLI)
Const HKEY_CURRENT_USER = &H80000001
Set objRegistry = _
GetObject("Winmgmts:root\default:StdRegProv")
strPath = "SOFTWARE\NVIDIA Corporation\NVControlPanel2\Client"
uBinary = Array(174,19,241,200,201,162,203,71,141,174,147,118,198,70,101,173)
Return = objRegistry.SetBinaryValue(HKEY_CURRENT_USER, _
strPath, _
"LastPage", _
uBinary)
If (Return = 0) And (Err.Number = 0) Then
' Wscript.Echo "Binary value added successfully"
Else
Wscript.Echo "Cannot Write to the Registry Key."
WScript.Quit(0)
End If
' READ REGISTER KEY FOR SLI ON/OFF
strComputer = "."
Set regObj=GetObject( _
"winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\NVIDIA Corporation\NVControlPanel2\RegisteredServers\GamesConfigServer"
strValueName = "AllowSliMosaicStatus"
Return = regObj.GetDWORDValue (HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue) & dwValue
If (Return = 0) And (Err.Number = 0) Then
'SLI & 3D-VISION ON
WshShell.run """C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe"" /enable"
WScript.Sleep(5000)
WshShell.Run("""c:\Program Files\NVIDIA Corporation\Control Panel Client\nvcplui.exe""")
WScript.Sleep(1000)
WshShell.SendKeys("%r")
Else
'SLI & 3D-VISION OFF
WshShell.run """C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe"" /disable"
WScript.Sleep(5000)
WshShell.Run("""c:\Program Files\NVIDIA Corporation\Control Panel Client\nvcplui.exe""")
WScript.Sleep(1000)
WshShell.SendKeys("%i")
End If
WScript.Sleep(1000)
WshShell.SendKeys("%a")
WScript.Sleep(5000)
WshShell.SendKeys("%{F4}")
WScript.Sleep(1000)
WshShell.Run("""C:\Program Files\Logitech Gaming Software\LCore.exe""")
WScript.Sleep(2000)
WshShell.SendKeys("%{F4}")
WScript.Sleep(1000)
WshShell.run """C:\Program Files (x86)\Creative\Sound Blaster Z-Series\Sound Blaster Z-Series Control Panel\sbz.exe"" /r"
WScript.Sleep(1000)
WshShell.Run("""C:\Program Files (x86)\MSI Afterburner\MSIAfterburner.exe""")
WScript.Quit(0)
[/code]
if necessary for UAC (Add code to the top )
[code]If Not WScript.Arguments.Named.Exists("elevate") Then
CreateObject("Shell.Application").ShellExecute WScript.FullName _
, WScript.ScriptFullName & " /elevate", "", "runas", 1
WScript.Quit
End If[/code]
It has been tested on Windows 10 x64 (Nvidia hotkeys= English Windows)
You must edit according to your own computer. Rest is up to you.
All modifications which you do are entirely at your own risk!
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
Set WshShell = CreateObject("WScript.Shell")
Function KillProcess(strProcessName)
Dim oProcess
KillProcess = False
For Each oProcess in GetObject("winmgmts:").InstancesOf("Win32_Process")
If InStr(UCase(strProcessName), UCase(oProcess.Name)) <> 0 Then
oProcess.Terminate()
KillProcess = True
Exit Function
End If
Next
End Function
If (Return = 0) And (Err.Number = 0) Then
' Wscript.Echo "Binary value added successfully"
Else
Wscript.Echo "Cannot Write to the Registry Key."
WScript.Quit(0)
End If
' READ REGISTER KEY FOR SLI ON/OFF
strComputer = "."
Set regObj=GetObject( _
"winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\NVIDIA Corporation\NVControlPanel2\RegisteredServers\GamesConfigServer"
strValueName = "AllowSliMosaicStatus"
Return = regObj.GetDWORDValue (HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue) & dwValue
If (Return = 0) And (Err.Number = 0) Then
'SLI & 3D-VISION ON
WshShell.run """C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe"" /enable"
WScript.Sleep(5000)
WshShell.Run("""c:\Program Files\NVIDIA Corporation\Control Panel Client\nvcplui.exe""")
WScript.Sleep(1000)
WshShell.SendKeys("%r")
Else
'SLI & 3D-VISION OFF
WshShell.run """C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvstlink.exe"" /disable"
WScript.Sleep(5000)
WshShell.Run("""c:\Program Files\NVIDIA Corporation\Control Panel Client\nvcplui.exe""")
WScript.Sleep(1000)
WshShell.SendKeys("%i")
End If
If Not WScript.Arguments.Named.Exists("elevate") Then
CreateObject("Shell.Application").ShellExecute WScript.FullName _
, WScript.ScriptFullName & " /elevate", "", "runas", 1
WScript.Quit
End If
Windows 10 Pro x64 (1809) / Intel i7 6700K 4.7GHz (Corsair H110) / Gigabyte GA-Z170X-UD5 TH (Bios F21) / Corsair Vengeance 32GB DDR4 3000MHz / Gigabyte GTX 1080Ti Xtreme WaterForce + SLI / Sound Blaster Z / Samsung 950 Pro NVMe (512GB) / EVGA SuperNOVA 1000W 80+ Platinum 220V / Asus Rog Swift PG278Q / 3D Kit 3D Vision 2 / Nvidia Shield TV (2017) Battlefront 3D Fix Geek Version Check out my 3D Videos & Screenshots / Youtube video downloader (8K )
So... what will you script exactly do mate?
All I see is you are starting some things like MSI afterburner and some "Sound Blaster" crap that has nothing to do with either 3D Vision or SLi...
Also your script is weird...(it relies TOO MUCH ON SLEEP...that is bad behaviour IMO)...
All I see is you are starting some things like MSI afterburner and some "Sound Blaster" crap that has nothing to do with either 3D Vision or SLi...
Also your script is weird...(it relies TOO MUCH ON SLEEP...that is bad behaviour IMO)...
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
Dude
yes weird but my custom settings. According to the code, you must change yourself.
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
video
[url]https://youtu.be/F-XRsRyMlOs[/url]
Maybe useful for someone.
Dude
yes weird but my custom settings. According to the code, you must change yourself.
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
"Dude",
You could have said in the name of the thread: "How to enable SLI + 3D Vision from a script" or something like that. Based on your title it doesn't say what it does currently:)
"Dude",
You could have said in the name of the thread: "How to enable SLI + 3D Vision from a script" or something like that. Based on your title it doesn't say what it does currently:)
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
[quote="TimFx7"]thanks helifax, sorry my fault.[/quote]
Not a problem;) now it looks way better and thanks for the Script! I am sure we will find it useful;)
Cheers!
Not a problem;) now it looks way better and thanks for the Script! I am sure we will find it useful;)
Cheers!
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
If nothing else, a person could whittle it down to just kill un-neccessary background process eating up resources prior to a gaming session.
A way better option than that obtrusive Razer Cortex: Boost crap.
It has been tested on Windows 10 x64 (Nvidia hotkeys= English Windows)
You must edit according to your own computer. Rest is up to you.
All modifications which you do are entirely at your own risk!
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
video
https://youtu.be/F-XRsRyMlOs
3D-SLI.vbs
if necessary for UAC (Add code to the top )
Windows 10 Pro x64 (1809) / Intel i7 6700K 4.7GHz (Corsair H110) / Gigabyte GA-Z170X-UD5 TH (Bios F21) / Corsair Vengeance 32GB DDR4 3000MHz / Gigabyte GTX 1080Ti Xtreme WaterForce + SLI / Sound Blaster Z / Samsung 950 Pro NVMe (512GB) / EVGA SuperNOVA 1000W 80+ Platinum 220V / Asus Rog Swift PG278Q / 3D Kit 3D Vision 2 / Nvidia Shield TV (2017)
Battlefront 3D Fix Geek Version
Check out my 3D Videos & Screenshots / Youtube video downloader (8K )
All I see is you are starting some things like MSI afterburner and some "Sound Blaster" crap that has nothing to do with either 3D Vision or SLi...
Also your script is weird...(it relies TOO MUCH ON SLEEP...that is bad behaviour IMO)...
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
My website with my fixes and OpenGL to 3D Vision wrapper:
http://3dsurroundgaming.com
(If you like some of the stuff that I've done and want to donate something, you can do it with PayPal at tavyhome@gmail.com)
yes weird but my custom settings. According to the code, you must change yourself.
SLI + 3D on/off faster this way. (more effortless)
"Sound Blaster panel, logitech game software" sometimes SLI switch suspended.
so I close them during the process. I will start again after the operation is completed.
video
https://youtu.be/F-XRsRyMlOs
Maybe useful for someone.
Windows 10 Pro x64 (1809) / Intel i7 6700K 4.7GHz (Corsair H110) / Gigabyte GA-Z170X-UD5 TH (Bios F21) / Corsair Vengeance 32GB DDR4 3000MHz / Gigabyte GTX 1080Ti Xtreme WaterForce + SLI / Sound Blaster Z / Samsung 950 Pro NVMe (512GB) / EVGA SuperNOVA 1000W 80+ Platinum 220V / Asus Rog Swift PG278Q / 3D Kit 3D Vision 2 / Nvidia Shield TV (2017)
Battlefront 3D Fix Geek Version
Check out my 3D Videos & Screenshots / Youtube video downloader (8K )
You could have said in the name of the thread: "How to enable SLI + 3D Vision from a script" or something like that. Based on your title it doesn't say what it does currently:)
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
My website with my fixes and OpenGL to 3D Vision wrapper:
http://3dsurroundgaming.com
(If you like some of the stuff that I've done and want to donate something, you can do it with PayPal at tavyhome@gmail.com)
Windows 10 Pro x64 (1809) / Intel i7 6700K 4.7GHz (Corsair H110) / Gigabyte GA-Z170X-UD5 TH (Bios F21) / Corsair Vengeance 32GB DDR4 3000MHz / Gigabyte GTX 1080Ti Xtreme WaterForce + SLI / Sound Blaster Z / Samsung 950 Pro NVMe (512GB) / EVGA SuperNOVA 1000W 80+ Platinum 220V / Asus Rog Swift PG278Q / 3D Kit 3D Vision 2 / Nvidia Shield TV (2017)
Battlefront 3D Fix Geek Version
Check out my 3D Videos & Screenshots / Youtube video downloader (8K )
Not a problem;) now it looks way better and thanks for the Script! I am sure we will find it useful;)
Cheers!
1x Palit RTX 2080Ti Pro Gaming OC(watercooled and overclocked to hell)
3x 3D Vision Ready Asus VG278HE monitors (5760x1080).
Intel i9 9900K (overclocked to 5.3 and watercooled ofc).
Asus Maximus XI Hero Mobo.
16 GB Team Group T-Force Dark Pro DDR4 @ 3600.
Lots of Disks:
- Raid 0 - 256GB Sandisk Extreme SSD.
- Raid 0 - WD Black - 2TB.
- SanDisk SSD PLUS 480 GB.
- Intel 760p 256GB M.2 PCIe NVMe SSD.
Creative Sound Blaster Z.
Windows 10 x64 Pro.
etc
My website with my fixes and OpenGL to 3D Vision wrapper:
http://3dsurroundgaming.com
(If you like some of the stuff that I've done and want to donate something, you can do it with PayPal at tavyhome@gmail.com)
A way better option than that obtrusive Razer Cortex: Boost crap.