mirror of
https://github.com/tyranid/DotNetToJScript
synced 2026-06-08 17:59:42 +00:00
9 lines
238 B
Plaintext
9 lines
238 B
Plaintext
var shell = new ActiveXObject('WScript.Shell');
|
|
ver = 'v4.0.30319';
|
|
try {
|
|
shell.RegRead('HKLM\\SOFTWARE\\Microsoft\\.NETFramework\\v4.0.30319\\');
|
|
} catch(e) {
|
|
ver = 'v2.0.50727';
|
|
}
|
|
shell.Environment('Process')('COMPLUS_Version') = ver;
|