Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
JScript - is a file of a known Type?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 30 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Dr J R Stockton  
View profile  
 More options Jan 3 2012, 12:09 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Tue, 3 Jan 2012 17:09:48 +0000
Local: Tues, Jan 3 2012 12:09 pm
Subject: JScript - is a file of a known Type?

In Windows Script Host, given a File Object with properties including
Name and Type, is there a direct guaranteed infallible way in
JScript/VBScript to find whether the file is a known Type?

Examples :

        FILENAME                TYPE                            KNOWN

        LONGFILENAME.HTML       Firefox Document                Yes
        SEAKFYLE.OK6            OK6 File                        No
        SEAKFYLE.ZIP            Compressed (zipped) Folder      Yes
        SEEK.$$$                $$$ File                        No
        SEEK.BAT                MS-DOS Batch File               Yes
        SEEK.VBS                VBScript Script File            Yes

For those, it suffices to test, case-dependently, whether the Extension
appears as a word in the Type : if it does not do so, then the file must
be a known Type.  But the converse is only reliable if one can be sure
that a known extension cannot ever, in any natural language, occur as a
word in the corresponding Type string.

Consider the possibility of a default browser being called "View Your
HTML", for example - unlikely, but possible.  Or that of a file with
extension "File".

The application is SEAKFYLE, via
<http://www.merlyn.demon.co.uk/programs/32-bit/00index.htm>, using
Options X3 and X4. The current code is in a paragraph currently starting
at Line 281 :

  if (Eggs == 3 || Eggs == 4) { S = Item.Path
    S = S.substring(S.lastIndexOf(".") + 1) // Extn
    if (Eggs == 4 ^ new RegExp("\\b"+S+"\\b").test(Item.Type)) return }

Eggs 3 returns for unknown types; Eggs 4 for known ones.  In JScript,
the token ^ means "Exclusive-Or".

--
 (c) John Stockton, nr London UK.  ?...@merlyn.demon.co.uk  DOS 3.3, 6.20; WinXP.
  Web  <http://www.merlyn.demon.co.uk/> - FAQqish topics, acronyms and links.
   PAS EXE TXT ZIP via  <http://www.merlyn.demon.co.uk/programs/00index.htm>
   My DOS  <http://www.merlyn.demon.co.uk/batfiles.htm> - also batprogs.htm.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mayayana  
View profile  
 More options Jan 3 2012, 9:13 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Mayayana" <mayay...@invalid.nospam>
Date: Tue, 3 Jan 2012 21:13:05 -0500
Local: Tues, Jan 3 2012 9:13 pm
Subject: Re: JScript - is a file of a known Type?
I'm not sure I understand. Do you mean you want to
find out if it's a registered file type? That would be
in HKCR. If OK6 is registered there will be a key
HKCR\.ok6

--
--
"Dr J R Stockton" <reply1...@merlyn.demon.co.uk> wrote in message
news:3wJilUEcZzAPFwTs@invalid.uk.co.demon.merlyn.invalid...
|
| In Windows Script Host, given a File Object with properties including
| Name and Type, is there a direct guaranteed infallible way in
| JScript/VBScript to find whether the file is a known Type?
|
| Examples :
|
|        FILENAME                TYPE                            KNOWN
|
|        LONGFILENAME.HTML       Firefox Document                Yes
|        SEAKFYLE.OK6            OK6 File                        No
|        SEAKFYLE.ZIP            Compressed (zipped) Folder      Yes
|        SEEK.$$$                $$$ File                        No
|        SEEK.BAT                MS-DOS Batch File               Yes
|        SEEK.VBS                VBScript Script File            Yes
|
| For those, it suffices to test, case-dependently, whether the Extension
| appears as a word in the Type : if it does not do so, then the file must
| be a known Type.  But the converse is only reliable if one can be sure
| that a known extension cannot ever, in any natural language, occur as a
| word in the corresponding Type string.
|
| Consider the possibility of a default browser being called "View Your
| HTML", for example - unlikely, but possible.  Or that of a file with
| extension "File".
|
| The application is SEAKFYLE, via
| <http://www.merlyn.demon.co.uk/programs/32-bit/00index.htm>, using
| Options X3 and X4. The current code is in a paragraph currently starting
| at Line 281 :
|
|  if (Eggs == 3 || Eggs == 4) { S = Item.Path
|    S = S.substring(S.lastIndexOf(".") + 1) // Extn
|    if (Eggs == 4 ^ new RegExp("\\b"+S+"\\b").test(Item.Type)) return }
|
| Eggs 3 returns for unknown types; Eggs 4 for known ones.  In JScript,
| the token ^ means "Exclusive-Or".
|
| --
| (c) John Stockton, nr London UK.  ?...@merlyn.demon.co.uk  DOS 3.3, 6.20;
WinXP.
|  Web  <http://www.merlyn.demon.co.uk/> - FAQqish topics, acronyms and
links.
|   PAS EXE TXT ZIP via
<http://www.merlyn.demon.co.uk/programs/00index.htm>
|   My DOS  <http://www.merlyn.demon.co.uk/batfiles.htm> - also
batprogs.htm.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Vargo  
View profile  
 More options Jan 4 2012, 12:55 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Todd Vargo <tlva...@sbcglobal.netz>
Date: Wed, 04 Jan 2012 00:55:58 -0500
Local: Wed, Jan 4 2012 12:55 am
Subject: Re: JScript - is a file of a known Type?
On 1/3/2012 9:13 PM, Mayayana wrote:

> I'm not sure I understand. Do you mean you want to
> find out if it's a registered file type? That would be
> in HKCR. If OK6 is registered there will be a key
> HKCR\.ok6

Correct. However getting the string for the file type requires a bit
more effort. Some extensions have their type in the default string.
While others provide the name to another key where the real string must
be read.

For example, on my system the default string for .bmp is Paint.Picture
which you then find there is an Paint.Picture key where you find the
file type is "Bitmap Image".

And some, like .x, store the type in a string named "PerceivedType".

--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mayayana  
View profile  
 More options Jan 4 2012, 9:18 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Mayayana" <mayay...@invalid.nospam>
Date: Wed, 4 Jan 2012 09:18:17 -0500
Local: Wed, Jan 4 2012 9:18 am
Subject: Re: JScript - is a file of a known Type?

I'm still not sure I get what Dr J R Stockton is after,
but the Registry system is straightforward.

HKCR\.txt default value: "txtfile"
HKCR\txtfile default value: "Text Document"

PerceivedType is not related to file registration. According
to MS it's actually meant to be used with Windows
Find/Search.
http://msdn.microsoft.com/en-us/library/aa965719%28v=vs.85%29.aspx

  Unless someone is building a shell view I don't see the
point of needing the file type's class name. The only need for
that in the first place is so that the way of looking up files
can work despite changes: If Firefox takes over .html from IE,
or IE changes it back, the current status can still be tracked
via HKCR\.html.

The existence of HKCR\.txt confirms that it's a registered type.
The HKCR\[extension key default value] (HKCR\txtfile\) subkeys
then provide other information, like icon, default program for
that file type, etc.

  I see what you mean about .x. I wonder how such a key got
written in the first place. It doesn't have any purpose that I
can see. I have very few of those in my Registry. The only
thing I can guess is that some uninstallers remove the default
value for a program's extensions during uninstall but don't
remove the extension key itself.

 In any case, it doesn't change the design. "Text" is
not a registered file type. .x is not really registered. So I
guess I should amend what I said above: To be thorough
one should confirm there's a default program for a file type,
under:
HKCR\[extension key default value]\shell\open\command\

  That gets back to why anyone cares about the registered
file type name in the first place. Usually the point of looking
up this info. is to find the default program.

--
--

"Todd Vargo" <tlva...@sbcglobal.netz> wrote in message

news:je0plc$u6g$1@news.albasani.net...
| On 1/3/2012 9:13 PM, Mayayana wrote:
| > I'm not sure I understand. Do you mean you want to
| > find out if it's a registered file type? That would be
| > in HKCR. If OK6 is registered there will be a key
| > HKCR\.ok6
|
| Correct. However getting the string for the file type requires a bit
| more effort. Some extensions have their type in the default string.
| While others provide the name to another key where the real string must
| be read.
|
| For example, on my system the default string for .bmp is Paint.Picture
| which you then find there is an Paint.Picture key where you find the
| file type is "Bitmap Image".
|
| And some, like .x, store the type in a string named "PerceivedType".
|
| --
| Todd Vargo
| (Post questions to group only. Remove "z" to email personal messages)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Crash Dummy  
View profile  
 More options Jan 4 2012, 9:40 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Dave \"Crash\" Dummy" <inva...@invalid.invalid>
Date: Wed, 04 Jan 2012 09:40:15 -0500
Local: Wed, Jan 4 2012 9:40 am
Subject: Re: JScript - is a file of a known Type?

The trouble with "file type" as stored in the registry and read by
"objFile.type" is that it can be and often is changed by applications. For
example, on my computer the ".bmp" file mentioned above is a "Paint Shop
Pro 5 Image," not a "Paint.Picture."
--
Crash

Today is the first day of the rest of your life, and there's not a
damned thing you can do about it.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mayayana  
View profile  
 More options Jan 4 2012, 10:23 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Mayayana" <mayay...@invalid.nospam>
Date: Wed, 4 Jan 2012 10:23:00 -0500
Subject: Re: JScript - is a file of a known Type?
|
| The trouble with "file type" as stored in the registry and read by
| "objFile.type" is that it can be and often is changed by applications. For
| example, on my computer the ".bmp" file mentioned above is a "Paint Shop
| Pro 5 Image," not a "Paint.Picture."

  Yes, but that's the whole point. That name is only
a pointer to the Registry key that holds the relevant info.
about a registered file, such as the path to the default
program to open it. The file class name itself is not
significant. It's a pointer.

  I guess a distinction should be made between the
two "file type" values. I've never used objFile.type
and don't see any point to it, so I'm not sure what
it shows.

  I'll call the default value of HKCR\.xxx the file class
name. (I don't know if there's an official term.) I'll call
the default value of HKCR\[FileClassName] the file type
name. So:

HKCR\.txt   default value:    txtfile
HKCR\txtfile  default value:  Text Document

  Any program that gets assigned as the default for a
file type can set any values it wants. Those values are
really only for Registry navigation and advertising. (Since
most software is commercial one often gets commercial
names.) For .bmp I have a file class name of "IrfanView.BMP"
and a file type name of "IrfanView BMP File". Neither of
those names tells me anything about what a BMP file is.
If I wanted a script to provide useful information about
file types, perhaps in an HTA, I think I'd write a function
to return strings like "text file", "cascading style sheet file",
"webpage file", etc. There simply isn't any standard like
that in Windows.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Vargo  
View profile  
 More options Jan 4 2012, 8:22 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Todd Vargo <tlva...@sbcglobal.netz>
Date: Wed, 04 Jan 2012 20:22:37 -0500
Local: Wed, Jan 4 2012 8:22 pm
Subject: Re: JScript - is a file of a known Type?
On 1/4/2012 10:23 AM, Mayayana wrote:

I know what you mean. It drives me nuts when installers hijack
registered file associations without warning. It has gotten better over
the years with installers offering the option to select or exclude
taking over existing extensions. I have added many custom keys over the
years to select from several apps with special parameters for particular
extensions. So when these misbehaved installers hijack one of these on
me, you know I'm not a happy camper.

--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - WScript output similar to CScript output>" by Dr J R Stockton
Dr J R Stockton  
View profile  
 More options Jan 5 2012, 3:29 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Thu, 5 Jan 2012 20:29:40 +0000
Local: Thurs, Jan 5 2012 3:29 pm
Subject: JScript - WScript output similar to CScript output>
In comp.lang.javascript message <je1ocf$e6...@dont-email.me>, Wed, 4 Jan
2012 09:40:15, "Dave \"Crash\" Dummy" <inva...@invalid.invalid> posted:

>The trouble with "file type" as stored in the registry and read by
>"objFile.type" is that it can be and often is changed by applications. For
>example, on my computer the ".bmp" file mentioned above is a "Paint
>Shop
>Pro 5 Image," not a "Paint.Picture."

The fact that the Type string can be changed provides a good reason for
having a convenient way to read the Type string.

Typically, MS make it harder to tell by code whether a file's Type is
known or not by putting an uninformative but readable string where they
could more easily have put an empty string or a recognisable language-
independent one such as "-".

No-one has actually answered the question.

Let's try another.

The CScript in question is started from the DOS-box command-line and
writes lines to the screen - it would run perfectly well on an ASR33
teletype.  At present, if started in WScript, it exits leaving a small
note.

It would be nice to allow execution by WScript, with GUI output; but, to
be worth doing, it would be necessary for there to be an easy way of
creating and writing (line by line) to something resembling an HTML
textarea.  Is that available, and if so how is it done or where do I
need to look?

--
 (c) John Stockton, nr London UK.  ?...@merlyn.demon.co.uk  DOS 3.3 6.20 ; WinXP.
   Web  <http://www.merlyn.demon.co.uk/> - FAQqish topics, acronyms & links.
   PAS EXE TXT ZIP via  <http://www.merlyn.demon.co.uk/programs/00index.htm>
   My DOS  <http://www.merlyn.demon.co.uk/batfiles.htm> - also batprogs.htm.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - is a file of a known Type?" by Michael Haufe (TNO)
Michael Haufe (TNO)  
View profile  
 More options Jan 6 2012, 1:01 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Michael Haufe (TNO)" <t...@thenewobjective.com>
Date: Thu, 5 Jan 2012 22:01:48 -0800 (PST)
Local: Fri, Jan 6 2012 1:01 am
Subject: Re: JScript - is a file of a known Type?
On Jan 3, 11:09 am, Dr J R Stockton <reply1...@merlyn.demon.co.uk>
wrote:

> In Windows Script Host, given a File Object with properties including
> Name and Type, is there a direct guaranteed infallible way in
> JScript/VBScript to find whether the file is a known Type?

Generally not as there is not a bijection between the TYPE and its
registry entry. One would have to use the file extension as a key to
lookup the existence of an entry to get more accurate results.

> Examples :

>         FILENAME                TYPE                            KNOWN

>         LONGFILENAME.HTML       Firefox Document                Yes
>         SEAKFYLE.OK6            OK6 File                        No
>         SEAKFYLE.ZIP            Compressed (zipped) Folder      Yes
>         SEEK.$$$                $$$ File                        No
>         SEEK.BAT                MS-DOS Batch File               Yes
>         SEEK.VBS                VBScript Script File            Yes

Here is some code that creates a similar result on my machine:

<https://gist.github.com/1569247>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - WScript output similar to CScript output>" by Michael Haufe (TNO)
Michael Haufe (TNO)  
View profile  
 More options Jan 6 2012, 1:05 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Michael Haufe (TNO)" <t...@thenewobjective.com>
Date: Thu, 5 Jan 2012 22:05:53 -0800 (PST)
Local: Fri, Jan 6 2012 1:05 am
Subject: Re: JScript - WScript output similar to CScript output>
On Jan 5, 2:29 pm, Dr J R Stockton <reply1...@merlyn.demon.co.uk>
wrote:

> The CScript in question is started from the DOS-box command-line and
> writes lines to the screen - it would run perfectly well on an ASR33
> teletype.  At present, if started in WScript, it exits leaving a small
> note.

> It would be nice to allow execution by WScript, with GUI output; but, to
> be worth doing, it would be necessary for there to be an easy way of
> creating and writing (line by line) to something resembling an HTML
> textarea.  Is that available, and if so how is it done or where do I
> need to look?

Are you looking for a formatted table output in the command window in
a way similar to your original example?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bwig Zomberi  
View profile  
 More options Jan 6 2012, 4:01 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Bwig Zomberi <zomberiMAPSONNOS...@gmail.invalid>
Date: Fri, 06 Jan 2012 14:31:26 +0530
Local: Fri, Jan 6 2012 4:01 am
Subject: Re: JScript - WScript output similar to CScript output>

Michael Haufe (TNO) wrote:
> On Jan 5, 2:29 pm, Dr J R Stockton<reply1...@merlyn.demon.co.uk>
> wrote:

>> The CScript in question is started from the DOS-box command-line and
>> writes lines to the screen - it would run perfectly well on an ASR33
>> teletype.  At present, if started in WScript, it exits leaving a small
>> note.

Are you looking for the /nologo parameter to cscript?

--
Bwig Zomberi


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bwig Zomberi  
View profile  
 More options Jan 6 2012, 4:13 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Bwig Zomberi <zomberiMAPSONNOS...@gmail.invalid>
Date: Fri, 06 Jan 2012 14:43:19 +0530
Local: Fri, Jan 6 2012 4:13 am
Subject: Re: JScript - WScript output similar to CScript output>
Dr J R Stockton wrote:

> Typically, MS make it harder to tell by code whether a file's Type is
> known or not by putting an uninformative but readable string where they
> could more easily have put an empty string or a recognisable language-
> independent one such as "-".

When Windows and programs are installed files types are created. Some
applications hijacks extensions. They keep it meaningful or give it all
a same name. The logic is still the same - what Mayayana has stated. If
it is in the registry, it is a known file type. Otherwise, it is
unknown.

--
Bwig Zomberi


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Vargo  
View profile  
 More options Jan 6 2012, 5:20 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Todd Vargo <tlva...@sbcglobal.netz>
Date: Fri, 06 Jan 2012 05:20:52 -0500
Local: Fri, Jan 6 2012 5:20 am
Subject: Re: JScript - WScript output similar to CScript output>
On 1/5/2012 3:29 PM, Dr J R Stockton wrote:

Your question was malformed. It did not request to provide code to
demonstrate a different method from the one you previously chose. As
indicated, your answer can be found in HKCR but effort on your part is
necessary to capture it.

> Let's try another.

> The CScript in question is started from the DOS-box command-line and
> writes lines to the screen - it would run perfectly well on an ASR33
> teletype.  At present, if started in WScript, it exits leaving a small
> note.

> It would be nice to allow execution by WScript, with GUI output; but, to
> be worth doing, it would be necessary for there to be an easy way of
> creating and writing (line by line) to something resembling an HTML
> textarea.  Is that available, and if so how is it done or where do I
> need to look?

Not even going to attempt to research it on your own?
Watch for the line wraps...

''''''  Creates an Internet Explorer instance to display VBScript output
  ''''''
'On Error Resume Next

Set WshShell = WScript.CreateObject("WScript.Shell")
Set objExplorer = Wscript.CreateObject("InternetExplorer.Application",
"IE_")

objExplorer.Navigate "about:blank"
objExplorer.ToolBar = False
objExplorer.StatusBar = False
objExplorer.Top = 180
objExplorer.Left = 200
objExplorer.Width = 630
objExplorer.Height = 320
objExplorer.Visible = True
objExplorer.Resizable = False

Do While (objExplorer.Busy) 'Wait for Iexplore instance to load
   Wscript.Sleep 250
Loop

With objExplorer.Document
   .Writeln "<html><head><title></title></head><body>"
   .Title = Wscript.ScriptName & " is running... "

   .body.style.cursor = "Wait"
   .Writeln "<img
src=""http://www.merlyn.demon.co.uk/graphics/merlyn-1.gif"">"
   .Writeln "<p class=""style2""><B>Please wait while APPLICATION is
loading...</B></p>"

   For x = 1 to 25
     .Writeln "Line..." & x & "<br>"
     WScript.Sleep(50) 'Pause 50 miliseconds
     .body.createtextrange.scrollIntoView False 'Scroll to bottom of page
   Next

   .Writeln "<p>Ok - Bye.</p><br>"
   .body.createtextrange.scrollIntoView False 'Scroll to bottom of page
   .body.style.cursor = "" 'Return cursor to normal
   .Title = Wscript.ScriptName & " is Done! "
End With

WScript.Sleep(5000) 'Pause 5 seconds
objExplorer.Quit 'Close the status window
Set objExplorer = Nothing
Wscript.Quit

Sub IE_onQuit() 'This subroutine will fire when Iexplore is closed
   'Script will continue to run after IE window closes.
   MsgBox "User closed window!"
End Sub

--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - is a file of a known Type?" by John G Harris
John G Harris  
View profile  
 More options Jan 6 2012, 6:04 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: John G Harris <j...@nospam.demon.co.uk>
Date: Fri, 6 Jan 2012 11:04:06 +0000
Local: Fri, Jan 6 2012 6:04 am
Subject: Re: JScript - is a file of a known Type?
On Thu, 5 Jan 2012 at 22:01:48, in comp.lang.javascript, Michael Haufe
(TNO) wrote:
>On Jan 3, 11:09 am, Dr J R Stockton <reply1...@merlyn.demon.co.uk>
>wrote:
>> In Windows Script Host, given a File Object with properties including
>> Name and Type, is there a direct guaranteed infallible way in
>> JScript/VBScript to find whether the file is a known Type?

>Generally not as there is not a bijection between the TYPE and its
>registry entry. One would have to use the file extension as a key to
>lookup the existence of an entry to get more accurate results.

  <snip>

Beware of believing file extensions. Up to Win ME at least, I haven't
checked XP, a .txt file's content is inspected by Windows. If it looks
like a PIF file then the file will be executed when you thought it would
be displayed by Notepad.

  John
--
John Harris


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Haufe (TNO)  
View profile  
 More options Jan 6 2012, 7:26 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Michael Haufe (TNO)" <t...@thenewobjective.com>
Date: Fri, 6 Jan 2012 04:26:46 -0800 (PST)
Local: Fri, Jan 6 2012 7:26 am
Subject: Re: JScript - is a file of a known Type?
On Jan 6, 5:04 am, John G Harris <j...@nospam.demon.co.uk> wrote:

Whether it is an _expected_ result or not is a separate issue to
whether it is KNOWN/Recognized by the OS.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - WScript output similar to CScript output>" by Mayayana
Mayayana  
View profile  
 More options Jan 6 2012, 8:33 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Mayayana" <mayay...@invalid.nospam>
Date: Fri, 6 Jan 2012 08:33:40 -0500
Local: Fri, Jan 6 2012 8:33 am
Subject: Re: JScript - WScript output similar to CScript output>

| Your question was malformed.

Indeed. Neither of his questions seems coherent to
me. He never explained what he was trying to do.
And he's been around long enough, in any case, to
answer both of his questions himself.  ...Odd.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - is a file of a known Type?" by John G Harris
John G Harris  
View profile  
 More options Jan 6 2012, 9:58 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: John G Harris <j...@nospam.demon.co.uk>
Date: Fri, 6 Jan 2012 14:58:45 +0000
Local: Fri, Jan 6 2012 9:58 am
Subject: Re: JScript - is a file of a known Type?
On Fri, 6 Jan 2012 at 04:26:46, in comp.lang.javascript, Michael Haufe

But if you "use the file extension as a key to lookup the existence of
an entry to get more accurate results" then you will get *less* accurate
results in this case. That's the point. Not getting the action you
expected is merely the evidence.

  John
--
John Harris


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Haufe (TNO)  
View profile  
 More options Jan 6 2012, 3:27 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Michael Haufe (TNO)" <t...@thenewobjective.com>
Date: Fri, 6 Jan 2012 12:27:27 -0800 (PST)
Local: Fri, Jan 6 2012 3:27 pm
Subject: Re: JScript - is a file of a known Type?
On Jan 6, 8:58 am, John G Harris <j...@nospam.demon.co.uk> wrote:

Since the original question, AFAICT, was to determine whether the OS
recognizes a given file, moving from a human interpretation of the
file's description to an existence check in the registry is most
definitely going to be more accurate. If I have a predicate: isKnown,
and isKnown("*.dat") is true, it doesn't matter at this level of
abstraction what application that extension is mapped to, only whether
it has a mapping at all.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "JScript - WScript output similar to CScript output>" by Dr J R Stockton
Dr J R Stockton  
View profile  
 More options Jan 7 2012, 3:11 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Sat, 7 Jan 2012 20:11:41 +0000
Local: Sat, Jan 7 2012 3:11 pm
Subject: Re: JScript - WScript output similar to CScript output>
In comp.lang.javascript message <je6t23$iq...@dont-email.me>, Fri, 6 Jan
2012 08:33:40, Mayayana <mayay...@invalid.nospam> posted:

>| Your question was malformed.

>Indeed. Neither of his questions seems coherent to
>me. He never explained what he was trying to do.
>And he's been around long enough, in any case, to
>answer both of his questions himself.  ...Odd.

You should not confuse knowing a lot that others do not with knowing
everything that others do know.

--
 (c) John Stockton, near London. *...@merlyn.demon.co.uk/?.?.Stock...@physics.org
  Web  <http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, and links.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dr J R Stockton  
View profile  
 More options Jan 7 2012, 4:10 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Sat, 7 Jan 2012 21:10:57 +0000
Local: Sat, Jan 7 2012 4:10 pm
Subject: Re: JScript - WScript output similar to CScript output>
In comp.lang.javascript message <847ebf0b-4938-4a1e-a108-964535d3d853@z1
2g2000yqm.googlegroups.com>, Thu, 5 Jan 2012 22:05:53, "Michael Haufe
(TNO)" <t...@thenewobjective.com> posted:

Yes.

The original article in the thread was concerned with one particular
point.  That example was partly from what I already have, with the third
column by hand.  It will be to produce something similar but with other
information.

But the core of the situation is that all CScript output is through

        function Right(N, Str) { N = Hush[N]
          if (N == "0") return
          if (N == "1") WScript.StdOut.Write(Str)
          if (N == "2") WScript.StdErr.Write(Str)
          if (N == "3") txtStreamOut.Write(Str)
          }

in which almost all Str end with a newline; and I want to use

          if (N == "4") SOMETHING(Str)

[ after having detected (which I can do) WScript ] to get a
corresponding display.

If that can be done, the application is no longer just a CScript
application usable only by those who can find and use a DOS-like command
line, but it is usable also by those who only use GUI routines.

Another approach would be to use the same code in an HTA, which I would
have to learn about.

--
 (c) John Stockton, nr London, UK.    ?...@merlyn.demon.co.uk     Turnpike v6.05.
 Website  <http://www.merlyn.demon.co.uk/> - w. FAQish topics, links, acronyms
 PAS EXE etc. : <http://www.merlyn.demon.co.uk/programs/> - see in 00index.htm
 Dates - miscdate.htm estrdate.htm js-dates.htm pas-time.htm critdate.htm etc.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dr J R Stockton  
View profile  
 More options Jan 7 2012, 4:14 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Sat, 7 Jan 2012 21:14:46 +0000
Local: Sat, Jan 7 2012 4:14 pm
Subject: Re: JScript - WScript output similar to CScript output>
In comp.lang.javascript message <je6cri$v7...@speranza.aioe.org>, Fri, 6
Jan 2012 14:31:26, Bwig Zomberi <zomberiMAPSONNOS...@gmail.invalid>
posted:

>Michael Haufe (TNO) wrote:
>> On Jan 5, 2:29 pm, Dr J R Stockton<reply1...@merlyn.demon.co.uk>
>> wrote:

>>> The CScript in question is started from the DOS-box command-line and
>>> writes lines to the screen - it would run perfectly well on an ASR33
>>> teletype.  At present, if started in WScript, it exits leaving a small
>>> note.

>Are you looking for the /nologo parameter to cscript?

I do not suppose Michael Haufe is; and I am not, especially as it needs
to be //nologo.  I know it well.

--
(c) John Stockton, nr London UK.  ?...@merlyn.demon.co.uk  Turnpike v6.05  MIME.
 Web  <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links.
     Check boilerplate spelling -- error is a public sign of incompetence.
    Never fully trust an article from a poster who gives no full real name.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Haufe (TNO)  
View profile  
 More options Jan 8 2012, 5:52 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: "Michael Haufe (TNO)" <t...@thenewobjective.com>
Date: Sun, 8 Jan 2012 14:52:24 -0800 (PST)
Local: Sun, Jan 8 2012 5:52 pm
Subject: Re: JScript - WScript output similar to CScript output>
On Jan 7, 3:10 pm, Dr J R Stockton <reply1...@merlyn.demon.co.uk>
wrote:

> In comp.lang.javascript message <847ebf0b-4938-4a1e-a108-964535d3d853@z1
> 2g2000yqm.googlegroups.com>, Thu, 5 Jan 2012 22:05:53, "Michael Haufe
> (TNO)" <t...@thenewobjective.com> posted:

> >Are you looking for a formatted table output in the command window in
> >a way similar to your original example?

> Yes.

> The original article in the thread was concerned with one particular
> point.  That example was partly from what I already have, with the third
> column by hand.  It will be to produce something similar but with other
> information.

So did my sample code work help at all?

So to check if I understand correctly, you want a function that will
take a collection of results in the format of:

FILENAME                TYPE                            KNOWN

and display them as a formatted table in CScript or as an HTML table
in a generated HTA in WScript?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dr J R Stockton  
View profile  
 More options Jan 9 2012, 6:45 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <reply1...@merlyn.demon.co.uk>
Date: Mon, 9 Jan 2012 23:45:36 +0000
Local: Mon, Jan 9 2012 6:45 pm
Subject: Re: JScript - WScript output similar to CScript output>
In comp.lang.javascript message <a46fb17c-5638-4b1a-8d87-034ca257435e@p1
6g2000yqd.googlegroups.com>, Sun, 8 Jan 2012 14:52:24, "Michael Haufe
(TNO)" <t...@thenewobjective.com> posted:

Completely.  But with the apparent peculiarity that extension $$$ (my
editor's backup) is known to the registry, although the corresponding
.Type string is "$$$ File", similar to that for a file with extension
OK4 which is not so known.

Aside to non-Anglos :
        What would the .Type property be for an unregistered file in
        systems set for other well-known Western European languages?
        E.g. Fichier OK4 / OK4 Fichier, etc.?  Users are required to be
        able to read instructions in English, but should not be required
        to have an English-speaking Windows.

Not really; you are going further that I wish for.

I wanted a routine that would accept text, a line at a time (P.S. to be
strictly accurate, these lines could contain newlines), and cause it to
appear as it would in Notepad.  The example is tabular, but other lines
are not.  To illustrate, here's a command-prompt screen capture :

prompt>seek . n
  :: SEAKFYLE.JS >= 2012-01-09, at 2012-01-09 20:21:56, see SEAKFYLE.HTM
 2012-01-09 17:40:34        33275 .....a.. "SEAKFYLE.$$$"
 2012-01-09 17:41:00        33291 .....a.. "SEAKFYLE.HTM"
 2012-01-09 17:38:37        17603 .....a.. "SEAKFYLE.JS"
| Date/time now : 2012-01-09 20:21:56
| Find : 3 matches
| Finding in : C:\WSH\SEEK ; 31 ms

If I do the following command line, nothing appears in the screen before
the next prompt, as Q sets all output to Channel 3 which is sent To file
xyz.

        prompt>seek . n Q333333 Txyz

and file xyz. can be opened in Notepad (except for needing an 0D before
each 0A, which can be dealt with (most easily by using WFVIEW instead)).

Aside : AFAICS, no GUI editor or viewer that I have can AFAIK accept
        piped-in text, which is a pity.

What I want to end up with is using essentially the same code as I have
at present, but as a GUI application - instead of opening a Command
Prompt and giving it a Command Line, to open a GUI window and give it,
with some equivalent of a JavaScript prompt(), the commands.  Or just
command-line in, GUI out.

I forgot to say that the GUI needs to show each line as it is output
from the current code, without waiting for the stream to complete.

The alternative seems to be to use an HTA, treating my existing code as
an include file of functions and variables, and suppressing any unwanted
parts.  That should be easy, if I learn about HTAs first - - - which I
seem to have done.

It's now fundamentally working in an HTA, but the adapting needs to be
cleaned up, though not tonight.

--
 (c) John Stockton, nr London, UK.    ?...@merlyn.demon.co.uk     Turnpike v6.05.
 Website  <http://www.merlyn.demon.co.uk/> - w. FAQish topics, links, acronyms
 PAS EXE etc. : <http://www.merlyn.demon.co.uk/programs/> - see in 00index.htm
 Dates - miscdate.htm estrdate.htm js-dates.htm pas-time.htm critdate.htm etc.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Vargo  
View profile  
 More options Jan 10 2012, 12:27 am
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Todd Vargo <tlva...@sbcglobal.netz>
Date: Tue, 10 Jan 2012 00:27:37 -0500
Local: Tues, Jan 10 2012 12:27 am
Subject: Re: JScript - WScript output similar to CScript output>
On 1/9/2012 6:45 PM, Dr J R Stockton wrote:
<snip>

> Aside : AFAICS, no GUI editor or viewer that I have can AFAIK accept
>          piped-in text, which is a pity.

> What I want to end up with is using essentially the same code as I have
> at present, but as a GUI application - instead of opening a Command
> Prompt and giving it a Command Line, to open a GUI window and give it,
> with some equivalent of a JavaScript prompt(), the commands.  Or just
> command-line in, GUI out.

> I forgot to say that the GUI needs to show each line as it is output
> from the current code, without waiting for the stream to complete.

The vbscript code that I posted does that. To set a fixed pitch font,
change <body> tag to <body STYLE=""font:10 pt courier"">

If desired. you can easily code it to receive input through stdin, but
that usually implies user operation from the command line.

> The alternative seems to be to use an HTA, treating my existing code as
> an include file of functions and variables, and suppressing any unwanted
> parts.  That should be easy, if I learn about HTAs first - - - which I
> seem to have done.

> It's now fundamentally working in an HTA, but the adapting needs to be
> cleaned up, though not tonight.

--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dr J R Stockton  
View profile  
 More options Jan 10 2012, 4:40 pm
Newsgroups: microsoft.public.scripting.jscript, microsoft.public.scripting.vbscript, comp.lang.javascript
From: Dr J R Stockton <J.R.Stock...@physics.org>
Date: Tue, 10 Jan 2012 13:40:28 -0800 (PST)
Local: Tues, Jan 10 2012 4:40 pm
Subject: Re: JScript - WScript output similar to CScript output>
On Jan 9, 11:45 pm, Dr J R Stockton <reply1...@merlyn.demon.co.uk>
wrote:

> The alternative seems to be to use an HTA, treating my existing code as
> an include file of functions and variables, and suppressing any unwanted
> parts.  That should be easy, if I learn about HTAs first - - - which I
> seem to have done.

> It's now fundamentally working in an HTA, but the adapting needs to be
> cleaned up, though not tonight.

Rather easy.  Essentially, the HTA has a button and a textarea.  The
existing JScript for WSH is modified so that the code is just
declarations of globals and functions, followed by a call of the main
function :-

       if (typeof window == "undefined") SEAKFYLE()

In CScript, that call calls, and all still works as before; in HTA,
that call does not call, but the button does it instead.

The HTA "include"s SEAKFYLE.JS, and also contains script

       Fawm = document.forms[0]

SEAKFYLE.JS uses the value of Fawm to write to the textarea, and the
truth of Fawm for minor code changes, such as reading the command line
from an "<input type=text" in the HTA.

<http://www.merlyn.demon.co.uk/programs/32-bit/seakfyle.htm>
<http://www.merlyn.demon.co.uk/programs/32-bit/seakfyle.js>
<http://www.merlyn.demon.co.uk/programs/32-bit/seek.hta>
<http://www.merlyn.demon.co.uk/programs/32-bit/seek.bat>
<http://www.merlyn.demon.co.uk/programs/32-bit/seakfyle.zip>

but please take copies for repeated use.

Query : is there an easy way to resize the textarea vertically when
the HTA window is resized, so that the form comes within a gnat's
whisker (0.5 ex, or a few px) of the bottom of the window, and if so
what is it?

--
  (c) John Stockton, near London, UK.  Using Google, no spell-check.
 Mail: J.R.""""""""@physics.org or (better) via Home Page at
 Web:  <http://www.merlyn.demon.co.uk/>
 FAQish topics, acronyms, links, etc.; Date, Pascal, JavaScript, ....|


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 30   Newer >
« Back to Discussions « Newer topic     Older topic »