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
Not on my Windows 10 machine. Nice tip bjwoody61!
And it is possible to configure so that FSX-SE is always started as the configured priority via a START script, which is what I have configured and use with FSX.exe set to REALTIME.
So to expand on the priority options, I have multiple applications to start prior to FSX-SE and I want to ensure all are started with one click and that if any are already running, that a new instance is not started.
The script determines if an app is already running and if so, a new instance will not be started. If the app isn't detected as running, then it will be started with the configured priority (e.g. /NORMAL or /REALTIME).
The items I start in the script are:
Active Sky Next
Borderless Gaming
Joy To Key
FSX-SE
I've included the script I use below and while I realise this is probably a bit too advanced for the average user of FSX-SE, I'm sure some will find such a script example of use.
To utilise it you would essentually remove the lines you don't need and change the paths for your own install locations. Each "tasklist" line is a self contained check for running app and then start if not already running.
The script is saved as "Start FSX-SE.cmd" and placed into the FSX-SE app folder root from where a shortcut is generated to the desktop, which in turn is configured with an icon and runas administrator rights.
~Start of Script~
@echo off
REM pushd
tasklist /nh /fi "imagename eq ASNext.exe" | find /i "ASNext.exe" > nul ||(START "Active Sky Next" /NORMAL /D "E:\FSX Addons\ASNext_FSX" /I "E:\FSX Addons\ASNext_FSX\ASNext.exe")
tasklist /nh /fi "imagename eq BorderlessGaming.exe" | find /i "BorderlessGaming.exe" > nul ||(START "BorderlessFSX" /NORMAL /D "C:\Program Files (x86)\Borderless Gaming" /MIN "C:\Program Files (x86)\Borderless Gaming\BorderlessGaming.exe")
tasklist /nh /fi "imagename eq JoyToKey.exe" | find /i "JoyToKey.exe" > nul ||(START "FSX-SE" /NORMAL /D "E:\FSX Addons\JoyToKey_en" /I "E:\FSX Addons\JoyToKey_en\JoyToKey.exe")
tasklist /nh /fi "imagename eq fsx.exe" | find /i "fsx.exe" > nul ||(START "FSX-SE" /REALTIME /D "E:\Games\Steam\steamapps\common\FSX" /I "E:\Games\Steam\steamapps\common\FSX\fsx.exe")
REM Info on the use of START https://technet.microsoft.com/en-au/library/bb491005.aspx
REM Info on the use of TASKLIST https://technet.microsoft.com/en-us/library/bb491010.aspx
REM The script will run with the rights of the invoker which will set the priority as HIGH and not REALTIME as admin rights are required to set as REALTIME.
REM To allow the script to set FSX as REALTIME the script can be run from a shortcut where the shortcut is configured to run with ADMIN rights via the shortcut's property dialog.
~End of Script~
Shortcut configuration
http://steamcommunity.com/sharedfiles/filedetails/?id=1096527547
Cheers
That's just the way with FSX - some things work on some systems and not for others. I will be selecting it though - even if I did not see any fps increase. It might help in other areas.
Thanks
REALTIME might be a bit too much, give HIGH a try and see if it works for your system. If you download and run the Microsoft program of "Process Explorer" as an admin, you can change between the priorities on the fly and see what works for you and what doesn't.
I also have processor affinity configured to set FSX-SE to cores 2,3, and 4 (AMD processor) and I've removed the need for admin rights to run FSX-SE and the other programs as well.
I'm a bit of a tweeker of settings :-)