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
Does anyone know if this has any security implications for the rest of my system when leaving this active?
Shortcuts and scripts can vary significantly depending on the OS you are using, and even on specific machines. I have included a few tutorials below. I wrote a short script and tested it and it should work fine on windows vista-10, but I can't promise it will.
This only sets and blanks the environmental variable without fully removing it. Fully removing it through script may require system specific information depending on your setup and I wanted to make something that should work for pretty much everyone.
Create a batch file and put this inside exactly as it is. One line should start with if and end with the last ). The next line should only have shutdown.exe /r /t 10 on it. You can change the 10 to 00 and it will restart your computer right away. The 10 adds a ten second delay so you can hit cancel. Note that if you cancel the restart you will have to remember to restart your system before the changes will be applied. You can just open notepad and enter the text below as I described and save it as a .bat file. Then you just double click it to run it. (you may need to make it run as admin depending on your system. You can do that by right clicking or following the tutorial below)
if "%OPENSSL_ia32cap%" == "~0x20000000" (setx OPENSSL_ia32cap "") else (setx OPENSSL_ia32cap ~0x20000000)
shutdown.exe /r /t 10
A more detailed example of how to create batch files can be found [url=https://www.windowscentral.com/how-create-and-run-batch-file-windows-10
]here[/url].
A nice tutorial on how to make batch files run as admin on windows 10 without having to accept the prompt every time.. [url=https://fossbytes.com/batch-file-run-as-administrator-windows/
]here[/url]
There is a nice tutorial on setting up batch files (this also has great stuff on automating everything if you have win7) here[stackoverflow.com]
Also a nice tutorial for setting unsetting and removing environmental variables here[www.digitalcitizen.life]. The automated way to remove environmental variables requires the use of either reg editing in cmd or use of Power Shell. I'm not comfortable giving a script that will delete them automatically as they can vary slightly on a per system basis, but the above link does show how to removed them by script in both cmd and powershell.
You can read all about the setx command here[docs.microsoft.com]
Question 2:
I have not been able to find any security implications having it active. But work a rounds come out every day. From my understanding of this, effectively its making your CPU process the security handshake like it is an Intel 9th gen CPU instead of a 10th+ gen.
The developers just need to update to Unreal Engine 4.22 or run the patch provided by Intel and it will fix the problem and we wont need to do anything. I assume they don't want to do that as it costs money and updating from one version of Unreal Engine to another can cause unforeseen issues and other bugs. It can also expose other bugs in your code and might force them to invest a larger amount of time/money then they are willing to.
Intel does recommend that "If you are an end user who has discovered and confirmed this bug, please contact the application developer directly and refer them to this article. If the developer is out of business or unresponsive, please contact an Intel representative so that we can investigate the issue." Further they give the email address gamedev@intel.com, so if this is important to you, you can contact them and see if they will do anything.
Windows 11 pro here btw.
Okay so it looks like the solution I originally posted works on windows 7 and under with it sometimes working on 8-10 depending on your setup. (So I removed it.)
I don't have 11 to test with but it looks like you can use powershell to refresh the environment variables.
Website link [thecategorizer.com]
"Open the Windows PowerShell from the Start menu and run it as an administrator."
"$env:Path = [System.Environment]::GetEnvironmentVariable(“Path”,”Machine”)
Again I didn't test this as I don't have win 11 but it may work.
For other versions of Windows OS you can find solutions here.[serverfault.com](no clue if they will work on 11)
Do I delete all 4?