Alex, Thank you very much! Great job! It is working fine.
You save my life

Moderators: Hacker, petermad, Stefan2, white
Code: Select all
$env:path = [Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory()
[AppDomain]::CurrentDomain.GetAssemblies() | % {
if (! $_.location) {continue}
$Name = Split-Path $_.location -leaf
Write-Host -ForegroundColor Yellow "NGENing : $Name"
ngen install $_.location | % {"`t$_"}
}
Code: Select all
; This VBS interpreter is only for example, WinScriptadv uses vbs\js\python engines via COM that is much faster than this.
; You can use it in portable versions of Total commander or if WSH is broken in Windows.
;vbs=%WINDIR%\system32\cscript.exe
;vbsCmdArgs=//nologo
;vbsVarFormat=filename="%s"
;vbsDoubleSlashPath=0
;vbsStdOutFormat=Wscript.echo %s
Code: Select all
---------------------------
error
---------------------------
Crash in plugin WinScriptsAdv.wdx:
External exception EEDFADE
---------------------------
OK Cancel
---------------------------
Have you changed that script? i ran into problems (under python) when i added spaces in front of the contentx variables.qxxx wrote:The column shows only "echo $content" it is not being parsed.
I tried with different php versions. PHP 5.4, 5.6 and 7.
php 5.6 and 7 is not showing anything, the column is empty.
Code: Select all
f = open(filename, 'r', encoding="utf-8")
content = f.readline()
f.close()
Code: Select all
with open('testPython.py', 'r', encoding="utf-8") as f:
content = f.readline()
The same here. Both version of TC 9.0a are affected.billiebub wrote:When I select the plugin properties, a crash occurs.