MCA,
KiXStrip appears to have the following limitation. Take the following line (which I split to avoid long lines).
Code:
FOR EACH $card IN GetObject($wmi).execquery("SELECT * FROM WIN32_NETWORKADAPTERCONFIGURATION
WHERE IPENABLED='TRUE'")
Also, with function calls:
Code:
$rs.fields('PagefileSpace').value=val(WMIQuery('TotalPageFileSpace',
'Win32_LogicalMemoryConfiguration')[0])/1024
KiXtart happily runs the code with no problems.
Run the code through KiXStrip -
Code:
FOR EACH $card IN GetObject($wmi).execquery("SELECT * FROM WIN32_NETWORKADAPTERCONFIGURATION
; -------> Warning KIXSTRIP: 163 line incomplete "double quotation".
; -------> Warning KIXSTRIP: 163 line incomplete "left parenthesis".
; -------> Warning KIXSTRIP: 163 line incompleted.
WHERE IPENABLED='TRUE'")
Also, with function calls:
Code:
$rs.fields('PagefileSpace').value=val(WMIQuery('TotalPageFileSpace',
; -------> Warning KIXSTRIP: 75 line incomplete "left parenthesis".
; -------> Warning KIXSTRIP: 75 line incompleted.
'Win32_LogicalMemoryConfiguration')[0])/1024
Thanks,
Kent