Add fix obs shortcut
This commit is contained in:
parent
3efebf3c5f
commit
ff15c3f3c3
2 changed files with 22 additions and 7 deletions
19
windows/fix_obs_shortcut.bat
Normal file
19
windows/fix_obs_shortcut.bat
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
@ECHO OFF
|
||||||
|
|
||||||
|
:: Start as administrator
|
||||||
|
fltmc >NUL 2>&1 || (
|
||||||
|
PowerShell Start -Verb RunAs '%0' 2>NUL || (
|
||||||
|
EXIT 1
|
||||||
|
)
|
||||||
|
EXIT 0
|
||||||
|
)
|
||||||
|
|
||||||
|
PowerShell -Command "$WshShell = New-Object -COM WScript.Shell;" ^
|
||||||
|
"$Shortcut = $WshShell.CreateShortcut('%ProgramData%\Microsoft\Windows\Start Menu\Programs\OBS Studio\OBS Studio (64bit).lnk');" ^
|
||||||
|
"$Shortcut.TargetPath = '%ProgramFiles%\obs-studio\bin\64bit\obs64.exe';" ^
|
||||||
|
"$Shortcut.WorkingDirectory = '%ProgramFiles%\obs-studio\bin\64bit';" ^
|
||||||
|
"$Shortcut.Arguments = '--profile ""ANRI GAMING (PROFIL)"""" --multi';" ^
|
||||||
|
"$Shortcut.Save()"
|
||||||
|
|
||||||
|
IF NOT "%1"=="skip" PAUSE
|
||||||
|
EXIT /B
|
|
@ -190,6 +190,7 @@ PowerShell -Command "Install-Module -Name PSWindowsUpdate -Force"
|
||||||
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/ctmpf.bat -OutFile '%HOMEPATH%\Documents\Local\ctmpf.bat'"
|
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/ctmpf.bat -OutFile '%HOMEPATH%\Documents\Local\ctmpf.bat'"
|
||||||
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/update.bat -OutFile '%HOMEPATH%\Documents\Local\update.bat'"
|
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/update.bat -OutFile '%HOMEPATH%\Documents\Local\update.bat'"
|
||||||
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/fix_nvidia_wsl.bat -OutFile '%HOMEPATH%\Documents\Local\fix_nvidia_wsl.bat'"
|
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/fix_nvidia_wsl.bat -OutFile '%HOMEPATH%\Documents\Local\fix_nvidia_wsl.bat'"
|
||||||
|
PowerShell -Command "Invoke-WebRequest -Uri !repo!/windows/fix_obs_shortcut.bat -OutFile '%HOMEPATH%\Documents\Local\fix_obs_shortcut.bat'"
|
||||||
|
|
||||||
:: === Install OpenTabletDriver ==
|
:: === Install OpenTabletDriver ==
|
||||||
:: Download
|
:: Download
|
||||||
|
@ -229,13 +230,8 @@ PowerShell -Command "$WshShell = New-Object -COM WScript.Shell;" ^
|
||||||
"--startreplaybuffer --profile ""ReplayBuffer"""" --scene ""ReplayBuffer""""';" ^
|
"--startreplaybuffer --profile ""ReplayBuffer"""" --scene ""ReplayBuffer""""';" ^
|
||||||
"$Shortcut.Save()"
|
"$Shortcut.Save()"
|
||||||
:: Default shortcut should start default profile
|
:: Default shortcut should start default profile
|
||||||
PowerShell -Command "$WshShell = New-Object -COM WScript.Shell;" ^
|
CALL %HOMEPATH%\Documents\Local\fix_obs_shortcut.bat skip
|
||||||
"$Shortcut = $WshShell.CreateShortcut('%ProgramData%\Microsoft\Windows\Start Menu\Programs\OBS Studio\OBS Studio (64bit).lnk');" ^
|
:: Allow system to go in sleep mode when OBS is running
|
||||||
"$Shortcut.TargetPath = '%ProgramFiles%\obs-studio\bin\64bit\obs64.exe';" ^
|
|
||||||
"$Shortcut.WorkingDirectory = '%ProgramFiles%\obs-studio\bin\64bit';" ^
|
|
||||||
"$Shortcut.Arguments = '--profile ""ANRI GAMING (PROFIL)"""" --multi';" ^
|
|
||||||
"$Shortcut.Save()"
|
|
||||||
:: Allow system to go in sleep mode
|
|
||||||
powercfg -requestsoverride process obs64.exe display system awaymode
|
powercfg -requestsoverride process obs64.exe display system awaymode
|
||||||
|
|
||||||
ECHO Fais un tour des parametres Windows, apres avoir fait toutes les mises a jour disponible sur le PC.
|
ECHO Fais un tour des parametres Windows, apres avoir fait toutes les mises a jour disponible sur le PC.
|
||||||
|
|
Loading…
Reference in a new issue