• Batch file to copy files based on a list

    From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 23:46:07 2026
    From Newsgroup: alt.windows7.general



    set LIST=filelist.txt
    set FILESPATH=x:\mp3
    set DEST=y:\target
    md %DEST%
    dir /b /o > %FILELIST%
    for /f %%x in ("%LIST%") do (
    rem "%%~I"
    forfiles /P "%FILESPATH%" /s /C "cmd /Q /C for %%I in (@file) do copy \"%%~I\" %DEST%
    )
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...

    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 19:14:12 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang,

    Thats quite the "Rube Goldberg machine" you have there.

    Whats wrong with doing a dir /s/b/o %FILESPATH% and using that ?

    Also :

    dir /b /o > %FILELIST%

    FILELIST is not defined.

    for /f %%x in ("%LIST%") do (

    That executes exactly *once*. No wonder you need to use ForFiles.

    Suggestion : run the above line, but echo the contents of that "x"
    variable - a variable which you also do not seem to be using ...

    Where does that "I" variable (in the REM %%~I line and the one below it)
    come from ?

    Bottom line, It looks like the AI you're using is hallucinating.


    Writing programs is easy.

    The fun starts with making sure the program does what you think it should
    do.
    The second fun thing ? Figuring out why it doesn't do what you want (aka: debugging it).

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Paul@nospam@needed.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 14:11:30 2026
    From Newsgroup: alt.windows7.general

    On Wed, 7/1/2026 1:14 PM, R.Wieser wrote:
    Mr. Man-wai Chang,

    Thats quite the "Rube Goldberg machine" you have there.

    Whats wrong with doing a dir /s/b/o %FILESPATH% and using that ?

    Also :

    dir /b /o > %FILELIST%

    FILELIST is not defined.

    for /f %%x in ("%LIST%") do (

    That executes exactly *once*. No wonder you need to use ForFiles.

    Suggestion : run the above line, but echo the contents of that "x"
    variable - a variable which you also do not seem to be using ...

    Where does that "I" variable (in the REM %%~I line and the one below it) come from ?

    Bottom line, It looks like the AI you're using is hallucinating.


    Writing programs is easy.

    The fun starts with making sure the program does what you think it should do.
    The second fun thing ? Figuring out why it doesn't do what you want (aka: debugging it).

    Regards,
    Rudy Wieser


    IDK. I think a human did that, while drinking a Dr.Pepper.

    ************************* CoPilot Question ********************************

    A junior programmer wrote this script, to copy a filelist
    of files from a source directory to a destination directory.

    See if you can ascertain the "design intent", creating or correcting
    variable names so that the code would actually do something productive.

    The FILESPATH seems to hint that the Junior Programmer wants to copy
    some MP3 files from that directory, but that is just a guess on my part. Normally, when carrying out tasks like this, the "filelist.txt" is
    already populated (by some means) with the desired files to be transferred
    as the textual content. Yet, the Junior Programmer is just listing
    all the files to be found in some working directory (which is not defined). Perhaps if you add some comments to the code, defining how you would handle
    the problem, the code would not look this bad.

    set LIST=filelist.txt
    set FILESPATH=x:\mp3
    set DEST=y:\target
    md %DEST%
    dir /b /o > %FILELIST%
    for /f %%x in ("%LIST%") do (
    rem "%%~I"
    forfiles /P "%FILESPATH%" /s /C "cmd /Q /C for %%I in (@file) do copy \"%%~I\" %DEST%
    )

    ************************* CoPilot Answer ********************************

    HererCOs the concise takeaway: **the junior programmerrCOs batch file is broken because the
    variable names donrCOt match, the loops donrCOt do what they think they do, and the
    rCLdesign intentrCY is confused.**

    But the *shape* of the script suggests the intent was:

    **Read a list of filenames from `filelist.txt`, then copy matching files from `x:\mp3` into `y:\target`.**

    Below is a cleanedrCaup, commented version that actually performs that job, followed by an explanation of what the junior programmer *thought* they were doing.

    ## Corrected & Commented Version (reflecting the likely design intent)


    @echo off
    rem ============================================================
    rem INTENT (reconstructed):
    rem 1. filelist.txt contains a list of filenames (one per line)
    rem 2. FILESPATH is the directory containing source MP3 files
    rem 3. DEST is the directory where selected files should be copied
    rem ============================================================

    set "LIST=filelist.txt"
    set "FILESPATH=x:\mp3"
    set "DEST=y:\target"

    rem Ensure destination exists
    md "%DEST%" 2>nul

    rem Loop through each filename listed in filelist.txt
    for /f "usebackq delims=" %%F in ("%LIST%") do (
    rem Copy the file if it exists in the source directory
    if exist "%FILESPATH%\%%F" (
    copy "%FILESPATH%\%%F" "%DEST%" >nul
    ) else (
    echo File not found: %%F
    )
    )


    This version does something real:
    **It reads filenames from `filelist.txt` and copies only those files.**

    ---

    ## What the junior programmer *actually wrote* rCo and what it reveals

    LetrCOs walk through their script and decode the intent.

    ### 1. Variable mismatch: LIST vs FILELIST
    They wrote:


    set LIST=filelist.txt

    dir /b /o > %FILELIST%


    There is **no variable named `%FILELIST%`**, so this line produces a file literally named `%FILELIST%`.
    This is a classic beginner mistake: *they intended to populate `filelist.txt` but used the wrong variable name.*

    ### 2. They generate a filelist from the current working directory

    dir /b /o > %FILELIST%


    This contradicts the usual workflow (where `filelist.txt` already contains the desired filenames).
    It suggests they misunderstood the purpose of the list.

    ### 3. The outer for /f loop is wrong

    for /f %%x in ("%LIST%") do (


    This syntax reads **only one token**, not the contents of the file.
    They probably thought this loop iterated through each line of the filelist.
    It does not.

    ### 4. The inner `forfiles` command is misused

    forfiles /P "%FILESPATH%" /s /C "cmd /Q /C for %%I in (@file) do copy \"%%~I\" %DEST%"


    This is a confused attempt to:

    - iterate through files in `%FILESPATH%`
    - copy them to `%DEST%`

    But the syntax is wrong:

    - `for %%I in (@file)` is meaningless
    - `@file` is already the filename; wrapping it in another for loop does nothing
    - the quoting is broken
    - the outer loop variable %%x is never used

    This is the hallmark of someone who discovered `forfiles` on StackOverflow and tried to glue it into a loop without understanding how it works.

    ---

    ## Reconstructed rCLDesign IntentrCY

    Based on the variable names and structure, the junior programmer likely intended:

    1. **`filelist.txt` contains a list of MP3 filenames to copy.**
    (They mistakenly tried to generate it instead.)

    2. **`FILESPATH` is the directory containing the MP3 files.**

    3. **`DEST` is the target directory.**

    4. **Loop through each filename in `filelist.txt` and copy it.**

    This is exactly what the corrected script now does.

    ---

    ## If the *real* intent was instead "copy all MP3 files", hererCOs the clean version


    @echo off
    set "FILESPATH=x:\mp3"
    set "DEST=y:\target"

    md "%DEST%" 2>nul

    forfiles /P "%FILESPATH%" /M *.mp3 /C "cmd /C copy @path \"%DEST%\""


    This avoids filelists entirely.

    ---

    ## If you want, I can also produce:

    - a PowerShell version
    - a robust version with logging and error handling
    - a version that preserves directory structure
    - a version that filters by date, size, or pattern

    Just tell me how you want the workflow to behave.

    ************************* End: CoPilot Answer ********************************

    CoPilot then, thinks the script smacks of "StackOverflow" :-)

    Paul
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 21:06:17 2026
    From Newsgroup: alt.windows7.general

    Paul,

    Bottom line, It looks like the AI you're using is hallucinating.
    ...
    IDK. I think a human did that, while drinking a Dr.Pepper.

    What makes you think I thought anything else ? :-) I didn't want to /say/
    it though.

    Although I didn't mind that you let CoPilot infer the OP's intention, I'd rather seen you trying to /help/ the OP, instead of posting a/the solution. How will he ever learn what those batch commands in his script do and how to use them, when he can just copy-paste someone elses work ?

    And by the way : the "/s" switch to "forfiles" indicates subdirectories too. It looks like Copilot missed it.

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Alan K.@alan@invalid.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 16:38:41 2026
    From Newsgroup: alt.windows7.general

    On 7/1/26 3:06 PM, R.Wieser wrote:
    Paul,

    Bottom line, It looks like the AI you're using is hallucinating.
    ...
    IDK. I think a human did that, while drinking a Dr.Pepper.

    What makes you think I thought anything else ? :-) I didn't want to /say/ it though.

    Although I didn't mind that you let CoPilot infer the OP's intention, I'd rather seen you trying to /help/ the OP, instead of posting a/the solution. How will he ever learn what those batch commands in his script do and how to use them, when he can just copy-paste someone elses work ?

    And by the way : the "/s" switch to "forfiles" indicates subdirectories too. It looks like Copilot missed it.

    Regards,
    Rudy Wieser


    I let copilot do a lot of my small scripts in Linux and find that I usually have to tweak
    it somehow, either telling copilot to do it, or doing it myself.
    --
    Mint 22.3, Thunderbird 140.12.0esr, Firefox 152.0.3
    Alan K.
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Paul@nospam@needed.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 21:17:34 2026
    From Newsgroup: alt.windows7.general

    On Wed, 7/1/2026 4:38 PM, Alan K. wrote:
    On 7/1/26 3:06 PM, R.Wieser wrote:
    Paul,

    Bottom line, It looks like the AI you're using is hallucinating.
    ...
    IDK. I think a human did that, while drinking a Dr.Pepper.

    What makes you think I thought anything else ? :-)-a-a I didn't want to /say/
    it though.

    Although I didn't mind that you let CoPilot infer the OP's intention, I'd
    rather seen you trying to /help/ the OP, instead of posting a/the solution. >> How will he ever learn what those batch commands in his script do and how to >> use them, when he can just copy-paste someone elses work ?

    And by the way : the "/s" switch to "forfiles" indicates subdirectories too. >> It looks like Copilot missed it.

    Regards,
    Rudy Wieser


    I let copilot do a lot of my small scripts in Linux and find that I usually have to tweak it somehow, either telling copilot to do it, or doing it myself.


    One thing I try to do, when I write a script by hand,
    is I try to capture "prototypes" or a sampling of
    my intentions, at the top of the script. This allows
    me to refer back to actual (good or bad) examples of what
    the script is trying to do. Someone can look at my script
    then and say "hmmm, design intent does not match implementation".
    But at least they can see via my straw man examples at
    the top of the page, what my plan was.

    This is why, we couldn't really write a script, without
    a better specification of what the individual is after.
    If you "considered every possibility", it could be a
    hundred thousand lines of code.

    For example, if I tar up a tree, it's got everything in it,
    I have no fear of losing anything. If I don't have a
    specification, such an implementation hasn't lost anything.

    *******

    Writing scripts should not be necessary. The audience
    was probably willing to point this out, but this topic
    has come up before so why bother. Here is why.

    1) Open File Explorer.
    2) Highlight top of source tree x:\mp3
    3) Go to search box, upper right. Enter "ext:mp3" without the double quotes.
    This selects every file with that extension (does not require Search Indexer
    to be programmed or up-to-date).
    4) Now, the search results have a subset of the tree. Control-A to select all.
    Select Copy.
    5) Navigate to destination directory. Select Paste.

    With the right hot-key-combo, you can also knock
    out single entries from the selection or add single
    entries to the selection. If you didn't like my search
    specification, you could select files one by one with
    the right hot-key-combo.

    Maybe a tool like XYExplorer could do this too.

    There's nothing wrong with scripting, as long as
    you select a subset of the entire application
    space for your effort. If you really really want
    an anything goes tool, a commercial tool that
    costs money may be the right answer. Rewriting this
    same code, over and over again... I guess that
    builds character.

    Paul
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Paul@nospam@needed.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 1 23:29:32 2026
    From Newsgroup: alt.windows7.general

    On Wed, 7/1/2026 4:38 PM, Alan K. wrote:
    On 7/1/26 3:06 PM, R.Wieser wrote:
    Paul,

    Bottom line, It looks like the AI you're using is hallucinating.
    ...
    IDK. I think a human did that, while drinking a Dr.Pepper.

    What makes you think I thought anything else ? :-)-a-a I didn't want to /say/
    it though.

    Although I didn't mind that you let CoPilot infer the OP's intention, I'd
    rather seen you trying to /help/ the OP, instead of posting a/the solution. >> How will he ever learn what those batch commands in his script do and how to >> use them, when he can just copy-paste someone elses work ?

    And by the way : the "/s" switch to "forfiles" indicates subdirectories too. >> It looks like Copilot missed it.

    Regards,
    Rudy Wieser


    I let copilot do a lot of my small scripts in Linux and find
    that I usually have to tweak it somehow, either telling copilot
    to do it, or doing it myself.

    The design is intended to burn up tokens.

    At one time, it would do something kinda human. It would
    find a sample code, then add to it. But there have also been
    instances where it got "lazy", with some funny results.

    I don't think I would be particularly happy, if I was paying
    for the tokens.

    I have an LLM-AI file loaded on the other machine,
    but haven't given it programming tasks. So far the evidence
    suggests it is quite limited on context somehow.

    Paul



    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 2 12:27:00 2026
    From Newsgroup: alt.windows7.general

    On 7/2/2026 1:14 AM, R.Wieser wrote:


    Writing programs is easy.

    The fun starts with making sure the program does what you think it should
    do.
    The second fun thing ? Figuring out why it doesn't do what you want (aka: debugging it).

    Master, it's a work-in-progress.
    I am using this newsgroup as a
    notebook.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 2 09:02:24 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang,

    I am using this newsgroup as a
    notebook.

    Well, there is your problem.

    ... besides that you are dumping your "notes" into four newsgroups.

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 2 19:06:57 2026
    From Newsgroup: alt.windows7.general

    On 7/2/2026 3:02 PM, R.Wieser wrote:
    Mr. Man-wai Chang,

    I am using this newsgroup as a
    notebook.

    Well, there is your problem.
    ... besides that you are dumping your "notes" into four newsgroups.

    The script is un-finished...
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Paul@nospam@needed.invalid to alt.msdos.batch,alt.windows7.general,alt.comp.os.windows-10 on Thu Jul 2 08:55:02 2026
    From Newsgroup: alt.windows7.general

    On Thu, 7/2/2026 7:06 AM, Mr. Man-wai Chang wrote:
    On 7/2/2026 3:02 PM, R.Wieser wrote:
    Mr. Man-wai Chang,

    I am using this newsgroup as a
    notebook.

    Well, there is your problem.
    ... besides that you are dumping your "notes" into four newsgroups.

    The script is un-finished...


    To copy files, you don't even need a script.

    To copy files, you can use Robocopy.
    Robocopy is a "directory copy program". Basically, it can
    copy the contents of one directory to another. Using its mirror
    option, is an advanced topic. First, we practice basic copying.

    *******

    You have not given a textual description of the

    intended usage

    of the script. Do you intend to use the script ?

    You could show us the dir listing of the source
    directory, whether it has mixed file extensions or
    uniform files sorted into directories.

    *******

    When you write a script that copies files or deletes files,
    you replace the "copy" or "del" with "echo" so that you
    can see what the command would have done, if you had allowed
    it. This is called "dry run" in some programs. In this example,
    that is /L .

    robocopy x:\mp3 y:\target *.mp3 /S /L /tee /v /log:C:\temp\my-mp3-backup.log

    /S = recursive but not empty folders (/E for recursive plus empty folders)
    /L = dry run
    (The stuff on the end is "plenty verbose" options)

    X:.
    rooroCroCroCmp3
    roLroCroCroCbelow
    roe roe 01.mp3
    roe roe 02.txt
    roe roe 03.txt
    roe roe 04.txt
    roe roe
    roe rooroCroCroCdownbelow
    roe 01.mp3
    roe 02.txt
    roe 03.txt
    roe 04.txt
    roe
    roLroCroCroCno
    roe 01.txt
    roe 02.txt
    roe 03.txt
    roe 04.txt
    roe
    roLroCroCroCsome
    roe 01.mp3
    roe 02.txt
    roe 03.txt
    roe 04.txt
    roe
    rooroCroCroCyes
    01.mp3
    02.mp3
    03.mp3
    04.mp3

    *******

    robocopy x:\mp3 y:\target *.mp3 /S /L

    Log File : C:\temp\my-mp3-backup.log

    New Dir 0 x:\mp3\
    New Dir 1 x:\mp3\below\
    New File 0 01.mp3
    New Dir 1 x:\mp3\below\downbelow\
    New File 0 01.mp3
    New Dir 0 x:\mp3\no\
    New Dir 1 x:\mp3\some\
    New File 0 01.mp3
    New Dir 4 x:\mp3\yes\
    New File 0 01.mp3
    New File 0 02.mp3
    New File 0 03.mp3
    New File 0 04.mp3

    Now, do the command for real, and list the results with "tree /F".
    It does not make the "no" directory, even though the log
    mentions a New Dir. Using /E would create an empty "no" directory.

    robocopy x:\mp3 y:\target *.mp3 /S /tee /v /log:C:\temp\my-mp3-backup.log

    Y:\target>tree /F
    Folder PATH listing for volume DEST
    Volume serial number is 0000005E 1C52:F907
    Y:.
    roLroCroCroCbelow
    roe roe 01.mp3
    roe roe
    roe rooroCroCroCdownbelow
    roe 01.mp3
    roe
    roLroCroCroCsome
    roe 01.mp3
    roe
    rooroCroCroCyes
    01.mp3
    02.mp3
    03.mp3
    04.mp3

    That's plenty of power for a neophyte. If I wanted the artwork
    copied in each folder as well, then just remove the file selector *.mp3 .

    Paul


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.comp.os.windows-10 on Thu Jul 2 22:17:37 2026
    From Newsgroup: alt.windows7.general

    On 7/2/2026 8:55 PM, Paul wrote:

    To copy files, you don't even need a script.

    To copy files, you can use Robocopy.
    Robocopy is a "directory copy program"....


    I wanna shuffle the lines in the file list
    and then copy them. That's why I said the
    script is not yet finished.

    I am now looking for DOS / Windows batch
    script to shuffle lines in a plain-text
    file.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 2 22:05:04 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang,

    I am using this newsgroup as a
    notebook.

    Well, there is your problem.
    ... besides that you are dumping your "notes" into four newsgroups.

    The script is un-finished...

    And that makes a difference... how ? Dump (save) your (un)finished scripts in a folder on your own 'puter. That is why you have one and what all that disk-space is for.

    Also, that script isn't unfinished, its a joke.

    I gave you a few pointers, but I've not seen you respond to it. Thats alright, you just do not want to learn. Which means that I do not need to spend time trying to help you.

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 11:34:24 2026
    From Newsgroup: alt.windows7.general

    On 7/3/2026 4:05 AM, R.Wieser wrote:

    I gave you a few pointers, but I've not seen you respond to it. Thats alright, you just do not want to learn. Which means that I do not need to spend time trying to help you.
    Master, one has the right to remain silent.
    That does NOT always mean one was ignoring.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 08:43:47 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang,

    Master, one has the right to remain silent.

    :-) I suggest you take your own advice.

    That does NOT always mean one was ignoring.

    Only MOST of the time. And seeing that even now you refuse to respond ...

    Good luck with what I offered you (if you have a clue what to do with it, which I doubt).

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 20:53:59 2026
    From Newsgroup: alt.windows7.general

    On 3/07/2026 1:34 pm, Mr. Man-wai Chang wrote:
    On 7/3/2026 4:05 AM, R.Wieser wrote:

    I gave you a few pointers, but I've not seen you respond to it.
    Thats alright, you just do not want to learn. Which means that I
    do not need to spend time trying to help you.

    Master, one has the right to remain silent. That does NOT always mean
    one was ignoring.

    What was the old saying .....

    "You can remain silent and have people THINK you are stupid, or,
    You can open your mouth ... and CONFIRM people's suspicions!!"

    Or something like that.
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 19:35:23 2026
    From Newsgroup: alt.windows7.general

    On 7/3/2026 6:53 PM, Daniel70 wrote:

    What was the old saying .....

    "You can remain silent and have people THINK you are stupid, or,
    You can open your mouth ... and CONFIRM people's suspicions!!"

    Or something like that.


    Ignore. Ignore. Ignore. ;)
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 22:02:56 2026
    From Newsgroup: alt.windows7.general

    On 3/07/2026 9:35 pm, Mr. Man-wai Chang wrote:
    On 7/3/2026 6:53 PM, Daniel70 wrote:

    What was the old saying .....

    "You can remain silent and have people THINK you are stupid, or,
    You can open your mouth ... and CONFIRM people's suspicions!!"

    Or something like that.


    Ignore. Ignore. Ignore. ;)

    YES! We should!
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 20:49:12 2026
    From Newsgroup: alt.windows7.general

    On 7/3/2026 8:02 PM, Daniel70 wrote:
    On 3/07/2026 9:35 pm, Mr. Man-wai Chang wrote:

    Ignore. Ignore. Ignore. ;)

    YES! We should!

    You have the right to remain silent.

    You do NOT need to declare anything.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From gazelle@gazelle@shell.xmission.com (Kenny McCormack) to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 3 17:23:45 2026
    From Newsgroup: alt.windows7.general

    In article <11284ca$3b8td$1@dont-email.me>,
    Daniel70 <daniel47@nomail.afraid.org> wrote:
    On 3/07/2026 1:34 pm, Mr. Man-wai Chang wrote:
    On 7/3/2026 4:05 AM, R.Wieser wrote:

    I gave you a few pointers, but I've not seen you respond to it.
    Thats alright, you just do not want to learn. Which means that I
    do not need to spend time trying to help you.

    Master, one has the right to remain silent. That does NOT always mean
    one was ignoring.

    What was the old saying .....

    "You can remain silent and have people THINK you are stupid, or,
    You can open your mouth ... and CONFIRM people's suspicions!!"

    Or something like that.

    Better to keep quiet and be thought a fool, than to open your mouth and
    remove all doubt.

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.
    --

    First of all, I do not appreciate your playing stupid here at all.

    - Thomas 'PointedEars' Lahn -
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 12:30:30 2026
    From Newsgroup: alt.windows7.general

    On 7/4/2026 1:23 AM, Kenny McCormack wrote:

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.


    What made you think the users here read
    the Holy Bible or holy bible? Would you
    memorize the verse numbers in that book
    for no apparent reasons? :)

    And why should users be excited to do a
    Google Search for "Proverbs 17:28"? To
    promote that website's hits? And you
    will be paid accordingly for making an
    advertisement in Usenet newsgroups for
    Proverbs 17:28? :)
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10,alt.paranormal.spells.hexes.magic,alt.chinese.fengshui on Sat Jul 4 13:14:01 2026
    From Newsgroup: alt.windows7.general

    On 7/4/2026 1:23 AM, Kenny McCormack wrote:

    Better to keep quiet and be thought a fool, than to open your mouth and remove all doubt.

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.


    What made you think the users here read
    the Holy Bible or holy bible? Would you
    memorize the verse numbers in that book
    for no apparent reasons? EfOe

    And why should users be excited to do a
    Google Search for "Proverbs 17:28"? To
    promote that website's hits? And you
    will be paid accordingly for making an
    advertisement in Usenet newsgroups for
    Proverbs 17:28? EfOe
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 13:18:48 2026
    From Newsgroup: alt.windows7.general

    On 7/4/2026 1:23 AM, Kenny McCormack wrote:

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.


    Or ... OR... Or...

    You are trying exorcism? Testing?

    And hunting? Witch Hunt in Usenet?

    SO you ALL just want a bloody Usenet? :)

    Inquisition - Wikipedia
    <https://en.wikipedia.org/wiki/Inquisition>

    Spanish Inquisition - Wikipedia <https://en.wikipedia.org/wiki/Spanish_Inquisition>

    Exorcism - Wikipedia
    <https://en.wikipedia.org/wiki/Exorcism>

    Witch hunt - Wikipedia
    <https://en.wikipedia.org/wiki/Witch_hunt>
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From gazelle@gazelle@shell.xmission.com (Kenny McCormack) to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 12:16:24 2026
    From Newsgroup: alt.windows7.general

    In article <112a298$3sho6$5@toylet.eternal-september.org>,
    Mr. Man-wai Chang <toylet.toylet@gmail.com> wrote:
    On 7/4/2026 1:23 AM, Kenny McCormack wrote:

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.

    ...
    And why should users be excited to do a
    Google Search for "Proverbs 17:28"? To
    promote that website's hits? And you
    will be paid accordingly for making an
    advertisement in Usenet newsgroups for
    Proverbs 17:28? :)

    You're really not very good at this, are you?

    You need to go back to troll school.
    --
    People who want to share their religious views with you
    almost never want you to share yours with them. -- Dave Barry
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Chris@ithinkiam@gmail.com to alt.comp.os.windows-10,alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt on Sat Jul 4 12:57:06 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang <toylet.toylet@gmail.com> wrote:
    On 7/2/2026 1:14 AM, R.Wieser wrote:


    Writing programs is easy.

    The fun starts with making sure the program does what you think it should
    do.
    The second fun thing ? Figuring out why it doesn't do what you want (aka: >> debugging it).

    Master, it's a work-in-progress.
    I am using this newsgroup as a
    notebook.

    Now don't *you* start. There are better ways to do this.


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 23:39:36 2026
    From Newsgroup: alt.windows7.general

    On 4/07/2026 10:16 pm, Kenny McCormack wrote:
    In article <112a298$3sho6$5@toylet.eternal-september.org>,
    Mr. Man-wai Chang <toylet.toylet@gmail.com> wrote:
    On 7/4/2026 1:23 AM, Kenny McCormack wrote:

    Weakly attributed to Mark Twain, but also found in Proverbs 17:28.

    ...
    And why should users be excited to do a
    Google Search for "Proverbs 17:28"? To
    promote that website's hits? And you
    will be paid accordingly for making an
    advertisement in Usenet newsgroups for
    Proverbs 17:28? :)

    You're really not very good at this, are you?

    Is THAT why he is posting soooooo much?? Just trying to improve himself??

    You need to go back to troll school.
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 21:42:15 2026
    From Newsgroup: alt.windows7.general

    On 7/4/2026 9:39 PM, Daniel70 wrote:
    On 4/07/2026 10:16 pm, Kenny McCormack wrote:

    You're really not very good at this, are you?

    Is THAT why he is posting soooooo much?? Just trying to improve himself??


    ... at the same time, upgrade ALL of you! :)

    May the Force and farces be with you! Live long and prosper!!
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.comp.os.windows-10,alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt on Sat Jul 4 21:42:47 2026
    From Newsgroup: alt.windows7.general

    On 7/4/2026 8:57 PM, Chris wrote:

    Master, it's a work-in-progress.
    I am using this newsgroup as a
    notebook.

    Now don't *you* start. There are better ways to do this.

    Let me try my Force first, Master. :)
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 21:33:46 2026
    From Newsgroup: alt.windows7.general

    Do notice that the OP has been altering the x-posted newsgroups. Including
    to some that have got zero to do with batch scripts

    He's not a troll, he's just here to try to cause mayhem.



    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From gazelle@gazelle@shell.xmission.com (Kenny McCormack) to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 20:57:51 2026
    From Newsgroup: alt.windows7.general

    In article <112bn70$dqm4$1@dont-email.me>, R.Wieser <address@is.invalid> wrote: >Do notice that the OP has been altering the x-posted newsgroups. Including >to some that have got zero to do with batch scripts

    He's not a troll, he's just here to try to cause mayhem.

    How is that not a troll?
    --
    They say that Trump is a stupid man's idea of a clever man, a poor man's
    idea of a rich man, and a weak man's idea of a strong man.

    Well, Melania is an unclassy man's idea of classy.
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Hank Rogers@Hank@nospam.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 4 16:34:52 2026
    From Newsgroup: alt.windows7.general

    Kenny McCormack wrote on 7/4/2026 3:57 PM:
    In article <112bn70$dqm4$1@dont-email.me>, R.Wieser <address@is.invalid> wrote:
    Do notice that the OP has been altering the x-posted newsgroups. Including >> to some that have got zero to do with batch scripts

    He's not a troll, he's just here to try to cause mayhem.

    How is that not a troll?


    These days, everyone on usenet seems to be either a troll, or a troll
    hunter.

    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 13:02:41 2026
    From Newsgroup: alt.windows7.general

    On 7/5/2026 5:34 AM, Hank Rogers wrote:
    Kenny McCormack wrote on 7/4/2026 3:57 PM:
    In article <112bn70$dqm4$1@dont-email.me>, R.Wieser <address@is.invalid> wrote:
    Do notice that the OP has been altering the x-posted newsgroups. Including >>> to some that have got zero to do with batch scripts

    He's not a troll, he's just here to try to cause mayhem.

    How is that not a troll?

    These days, everyone on usenet seems to be either a troll, or a troll
    hunter.


    You people should stop trolling trolls.
    Answer their questions, and all trolling
    will stop.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Scott Lurndal@scott@slp53.sl.home to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 07:07:09 2026
    From Newsgroup: alt.windows7.general

    Kenny McCormack writes:
    How is that not a troll?

    Has Kenny McCormack ever posted anything on topic ever in this newsgroup?
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 09:23:20 2026
    From Newsgroup: alt.windows7.general

    Kenny,

    He's not a troll, he's just here to try to cause mayhem.

    How is that not a troll?

    I guess it depends on what you define a troll is.

    Would you call that friend who strings you along just for fun (you can laugh about afterwards) a troll ? Or just a jokester ?

    Would you call all those first-of-april jokers trolls ? Why not ?

    iow, it depends on the intention. To me a troll is not something inherently negative - even when we sometimes get cought out by them.

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From J. P. Gilliver@G6JPG@255soft.uk to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 09:01:50 2026
    From Newsgroup: alt.windows7.general

    On 2026/7/5 8:23:20, R.Wieser wrote:
    Kenny,

    He's not a troll, he's just here to try to cause mayhem.

    How is that not a troll?

    I guess it depends on what you define a troll is.

    Would you call that friend who strings you along just for fun (you can laugh about afterwards) a troll ? Or just a jokester ?

    I would say on the whole yes; my tolerance for "jokesters" is pretty
    low, though I'd _sometimes_ accept them; call me a misery if you like.
    It's not a million miles from assorted forms of (mostly) female abuse in society: "it was only meant as a joke/compliment".

    Would you call all those first-of-april jokers trolls ? Why not ?

    A _good_ one, no. Because it amuses. the spaghetti harvest being of
    course probably the best example.

    iow, it depends on the intention. To me a troll is not something inherently negative - even when we sometimes get cought out by them.

    I'd say a usenet troll is someone who persists well beyond any joke,
    continuing a conversation. Often wasting the time of many
    well-intentioned respondents who genuinely try to help. I don't _really_
    mind being caught out if the originator owns up on the second or at most
    third round.

    Regards,
    Rudy Wieser


    John
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    "The great tragedy of science, the slaying of a beautiful theory by an
    ugly fact. - Thomas Henry Huxley
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From gazelle@gazelle@shell.xmission.com (Kenny McCormack) to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 08:35:45 2026
    From Newsgroup: alt.windows7.general

    In article <112copt$2c6sn$1@news.tcpreset.net>,
    Scott Lurndal <slp53@pacbell.net> wrote:
    Kenny McCormack writes:
    How is that not a troll?

    Has Kenny McCormack ever posted anything on topic ever in this newsgroup?

    And which newsgroup would that be?

    I haven't followed it closely, but the CW is that OP has quietly added newsgroups to this thread over time, to enlarge the scope of his
    merry-making.

    I am reading/responding in alt.msdos.batch.nt - where the original question
    was entirely topical (*) - and, yes, I have posted topically here many times.

    (*) Although misguided.
    --
    "He is exactly as they taught in KGB school: an egoist, a liar, but talented - he
    knows the mind of the wrestling-loving, under-educated, authoritarian-admiring white male populous."
    - Malcolm Nance, p59. -
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 10:55:35 2026
    From Newsgroup: alt.windows7.general

    John,

    It's not a million miles from assorted forms of (mostly) female abuse
    in society: "it was only meant as a joke/compliment".

    As I said it, it depends on the intention. And some jokesters simply
    aren't good at it - causing hurt without meaning to.

    Would you call all those first-of-april jokers trolls ? Why not ?

    A _good_ one, no. Because it amuses.

    And there you have another problem : that something "amuses" is fully
    dependant on the bee holder. Just like there is no cook who can create a
    meal to *everybodies* liking, there is no jokester who can make a joke
    everyone will like. Putting a pair of googely eyes on a statue might amuse most, but could enrage others.

    the spaghetti harvest being of course probably the best example.

    :-) I like that one too. But think of how angry all those (adult!) people where be who believed it and had to hear from others they where taken for a ride ...

    I'd say a usenet troll is someone who persists well beyond any joke, continuing a conversation.

    I would call someone like that a "bad troll", just like I would call a
    jokester taking his joke to far a "bad jokester".

    Often wasting the time of many well-intentioned respondents who
    genuinely try to help.

    Yeah, some people are like that. To me they are not trolls though, just
    people with a (very) bad attritude.

    Worse, some of those people do not consider themselves to be trolling at
    all, but just righteously trying to make others understand their idea of how the world should be working (I still remember Arlen Holder's topic about smartphones that *had to have* micro-sd capabilities).

    I don't _really_ mind being caught out if the originator owns up on the second
    or at most third round.

    And there you have it : a troll who fesses up to stringing you (/me/others?) along for a bit is acceptable to you (/me/us?).

    Bottom line: the word "troll" does not have an inherent negative meaning to
    me - even though its often used as such.

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From J. P. Gilliver@G6JPG@255soft.uk to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 13:20:36 2026
    From Newsgroup: alt.windows7.general

    On 2026/7/5 9:55:35, R.Wieser wrote:
    []
    Bottom line: the word "troll" does not have an inherent negative meaning to me - even though its often used as such.

    Regards,
    Rudy Wieser

    Whether you call them a troll, a jokester, a misogynist, or just an MCP,
    there will always be people who "go too far" - in the opinion of others.
    That opinion varies - and it doesn't help when yet others call them over-sensitive, "snowflake", or whatever: society _on the whole_ _does_
    improve very gradually (look at how certain "jokes" about race,
    religion, gender, and sexual orientation are no longer acceptable), but
    it's _very_ slow, and easily set back (for example, by certain politicians).

    "Be a man", "can't take a joke" (especially preceded by "she"), ...
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Alcohol is way ahead of cocaine as the world's deadliest drug,
    hastening around three million people per year into their graves
    (cocaine and heroin and crystal meth account for around half a million annually). - Revd Richard Coles, RT 2021/7/3-9
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From R.Wieser@address@is.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sun Jul 5 15:31:37 2026
    From Newsgroup: alt.windows7.general

    John,

    Whether you call them a troll, a jokester, a misogynist, or just an
    MCP, there will always be people who "go too far" - in the opinion
    of others.

    Some people will make a problem of /any/ joke - just because they can.

    "Be a man", "can't take a joke" (especially preceded by "she"), ...

    And if you do not make "that kind" of jokes you're not a real man. :-(

    Remarkable that when the joke is on/about them they often can't handle it. <whistle>

    Regards,
    Rudy Wieser


    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Mon Jul 6 20:14:24 2026
    From Newsgroup: alt.windows7.general

    On 5/07/2026 10:20 pm, J. P. Gilliver wrote:

    <Snip>

    "Be a man", "can't take a joke" (especially preceded by "she"), ...

    O.K., this will do!

    Some time ago, we used to have the Titles 'Mrs' and 'Miss' for married
    and singular women respectively .... but these gave an indication of the marital Status of the Women, so the term 'Ms' was introduced.

    Fair enough.

    But, now-a-days, in a multi-sexual situation, even the use of the terms
    'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in a Job Application situation I heard about today, the term 'Mx' has been used
    in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P I suppose, in a fashion, it had to happen!!
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Sailfish@NIXCAPSsailfish@NIXCAPSunforgettable.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Mon Jul 6 18:22:53 2026
    From Newsgroup: alt.windows7.general

    Daniel70 graced us with on 7/6/2026 3:14 AM:
    On 5/07/2026 10:20 pm, J. P. Gilliver wrote:

    <Snip>

    "Be a man", "can't take a joke" (especially preceded by "she"), ...

    O.K., this will do!

    Some time ago, we used to have the Titles 'Mrs' and 'Miss' for married
    and singular women respectively .... but these gave an indication of the marital Status of the Women, so the term 'Ms' was introduced.

    Fair enough.

    But, now-a-days, in a multi-sexual situation, even the use of the terms
    'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in a Job Application situation I heard about today, the term 'Mx' has been used
    in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?
    --
    Sailfish
    CDC Covid19 Trends: https://www.facebook.com/groups/624208354841034
    Rare Mozilla Stuff: http://tinyurl.com/z86x3sg
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Tue Jul 7 19:03:32 2026
    From Newsgroup: alt.windows7.general

    On 7/7/2026 9:22 AM, Sailfish wrote:

    Why not just Xx, Xy, Yy and "X?" ?


    You talking about genetics as in biology?
    And now renamed/called life science? :)
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From J. P. Gilliver@G6JPG@255soft.uk to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Tue Jul 7 21:43:46 2026
    From Newsgroup: alt.windows7.general

    On 2026/7/7 2:22:53, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    []
    But, now-a-days, in a multi-sexual situation, even the use of the terms
    'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in a Job
    Application situation I heard about today, the term 'Mx' has been used
    in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?


    Mx has been around for at least a decade or two - since last century, I
    think. As a suggestion only: I'm not aware of anywhere where it is
    actually used; I suspect it is seem as a step too far (and may even have
    been proposed tongue-in-cheek in the first place?).

    I think "Dear J. Smith" - or just J. Smith on e. g. an envelope - works
    if you want to avoid anything without making a big thing of doing so; it
    does require knowledge of at least one initial though.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Does the pope sh*t in the woods? - John Cleese (2017-4-22 or before)
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 8 07:38:38 2026
    From Newsgroup: alt.windows7.general

    On 7/8/2026 4:43 AM, J. P. Gilliver wrote:

    Mx has been around for at least a decade or two - since last century, I

    The only use of "Mx" as a gender symbol is
    in the spy business, or epsionage. Why did
    people try to hide/blur their gender? What
    were they up to? :)
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From ....winston@winstonmvp@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 8 11:56:26 2026
    From Newsgroup: alt.windows7.general

    On 07/07/2026 7:38 PM, Mr. Man-wai Chang wrote:
    On 7/8/2026 4:43 AM, J. P. Gilliver wrote:

    Mx has been around for at least a decade or two - since last century, I

    The only use of "Mx" as a gender symbol is
    in the spy business, or epsionage. Why did
    people try to hide/blur their gender? What
    were they up to? :)


    More false information.
    -> 'only use of "Mx" as a gender symbol is in the spy business'

    Mx is not a standard term/acronym/jargon used in the intelligence or
    espionage arena.

    Mx has been around since the 1970's and recognized by multiple
    institutions, governments, persons, etc.

    The 'M' from its honorific alpha term Mister, Misses, Miss.
    The 'x' as a variable signifying a placeholder or unknown gender(lower case)

    The only alpha character use of 'm' and 'x' was decades ago(in the past)
    in the global intel or 'spy' community with respect and an alternate
    reference to the silo-launched(L), surface attack(G), guided(M) missile
    known as the LGM-118 Peacekeeper.
    - i.e. 'MX' (Note: 2 capital letters, where the capital letters
    indicated Missile Experimental).

    Other acronyms for that same missile's type - MIRV, ICBM
    - you should be able to get those acronyms correct.

    ..and no, the Peacekeeper was not gender specific or neutral!
    --
    ...w-i|#-o-#-n|#
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Sailfish@NIXCAPSsailfish@NIXCAPSunforgettable.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 8 09:55:01 2026
    From Newsgroup: alt.windows7.general

    Mr. Man-wai Chang graced us with on 7/7/2026 4:03 AM:
    On 7/7/2026 9:22 AM, Sailfish wrote:

    Why not just Xx, Xy, Yy and "X?" ?

    You talking about genetics as in biology?
    And now renamed/called life science? :)

    If they can rename biology to life science then why not also genetic
    titles? I mean, the whole reason they went with Ms was to be rid of Miss
    and Mrs, yes.

    Also, my suggestion has many other positives as well. First, it truly
    reduces titles to First Principles, yes? And "X?" allows those who don't
    wish to be forced into one of two/three boxes ... the ability to break
    away and use the scientific Regular Expressions (RE) of "?" being any
    one character. For those wishing to not be confined to only a single
    character ambiguity, RE can offer much more latitude such as, or "X*" or
    even "X.*"

    Yeah?
    --
    Sailfish
    CDC Covid19 Trends: https://www.facebook.com/groups/624208354841034
    Rare Mozilla Stuff: http://tinyurl.com/z86x3sg
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Carlos E. R.@robin_listas@es.invalid to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Wed Jul 8 20:43:27 2026
    From Newsgroup: alt.windows7.general

    On 2026-07-08 17:56, ....winston wrote:
    On 07/07/2026 7:38 PM, Mr. Man-wai Chang wrote:
    On 7/8/2026 4:43 AM, J. P. Gilliver wrote:

    Mx has been around for at least a decade or two - since last century, I

    The only use of "Mx" as a gender symbol is
    in the spy business, or epsionage. Why did
    people try to hide/blur their gender? What
    were they up to? :)


    More false information.
    'only use of "Mx" as a gender symbol is in the spy business'

    Mx is not a standard term/acronym/jargon used in the intelligence or espionage arena.

    Mx has been around since the 1970's and recognized by multiple
    institutions, governments, persons, etc.

    I have never seen it.
    --
    Cheers,
    Carlos E.R.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Mr. Man-wai Chang@toylet.toylet@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 9 16:40:09 2026
    From Newsgroup: alt.windows7.general

    On 7/9/2026 12:55 AM, Sailfish wrote:

    Also, my suggestion has many other positives as well. First, it truly
    reduces titles to First Principles, yes? And "X?" allows those who don't
    wish to be forced into one of two/three boxes ... the ability to break
    away and use the scientific Regular Expressions (RE) of "?" being any
    one character. For those wishing to not be confined to only a single character ambiguity, RE can offer much more latitude such as, or "X*" or
    even "X.*"

    "Mx" should only mean one thing: the babies
    were born WITHOUT obvious sex organs!

    Result of genetics incest or in-breeding??
    I dunno... I wish not.
    --

    @~@ Simplicity is Beauty! Remain silent! Drink, Blink, Stretch!
    / v \ May the Force and farces be with you! Live long and prosper!!
    /( _ )\ https://sites.google.com/site/changmw/
    ^ ^ https://github.com/changmw/changmw
    The game is afoot... Meow...
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From ....winston@winstonmvp@gmail.com to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Thu Jul 9 10:26:19 2026
    From Newsgroup: alt.windows7.general

    On 07/08/2026 2:43 PM, Carlos E. R. wrote:
    On 2026-07-08 17:56, ....winston wrote:
    On 07/07/2026 7:38 PM, Mr. Man-wai Chang wrote:
    On 7/8/2026 4:43 AM, J. P. Gilliver wrote:

    Mx has been around for at least a decade or two - since last century, I >>>
    The only use of "Mx" as a gender symbol is
    in the spy business, or epsionage. Why did
    people try to hide/blur their gender? What
    were they up to? :)


    More false information.
    -a-a-> 'only use of "Mx" as a gender symbol is in the spy business'

    Mx is not a standard term/acronym/jargon used in the intelligence or
    espionage arena.

    Mx has been around since the 1970's and recognized by multiple
    institutions, governments, persons, etc.

    I have never seen it.



    First documented use in print was in 1977. Gradually(over the next
    two-half decades) adopted/recognized/used in a variety of arenas. UK
    Post Office was the first to adopt as a mail naming prefix. The US Post
    did not need to adopt, it just delivers to the name and/or address.
    --
    ...w-i|#-o-#-n|#
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 10 22:37:20 2026
    From Newsgroup: alt.windows7.general

    On 7/07/2026 11:22 am, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    On 5/07/2026 10:20 pm, J. P. Gilliver wrote:

    <Snip>

    "Be a man", "can't take a joke" (especially preceded by "she"), ...

    O.K., this will do!

    Some time ago, we used to have the Titles 'Mrs' and 'Miss' for married
    and singular women respectively .... but these gave an indication of
    the marital Status of the Women, so the term 'Ms' was introduced.

    Fair enough.

    But, now-a-days, in a multi-sexual situation, even the use of the
    terms 'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in
    a Job Application situation I heard about today, the term 'Mx' has
    been used in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P-a I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?
    Oh, come on, Sailfish, they would, sort of, indicate the sexual/marriage
    status of the persons involved, surely.
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From J. P. Gilliver@G6JPG@255soft.uk to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Fri Jul 10 16:32:45 2026
    From Newsgroup: alt.windows7.general

    On 2026/7/10 13:37:20, Daniel70 wrote:
    On 7/07/2026 11:22 am, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    []
    But, now-a-days, in a multi-sexual situation, even the use of the
    terms 'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in
    a Job Application situation I heard about today, the term 'Mx' has
    been used in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P-a I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?
    Oh, come on, Sailfish, they would, sort of, indicate the sexual/marriage
    status of the persons involved, surely.

    There are few situations where a title is used, in which either status
    is actually relevant.

    I think Mrs. - usually pronounced (and sometimes spelt, though usually humorously if so) Missus - was originally "mistress". A term of respect
    by a servant maybe? I'm less sure about Mr. - Mister - as "Master" was
    used to refer to the son of the head of household, especially when a
    child, with Mister for the adult. (Though the son might still be "Young
    Master Richard" or whatever even when adult, if the father was still
    running the company/household/whatever.) I don't know where "Miss" comes
    from.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    WANTED, Dead AND Alive: Schrodinger's Cat
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.msdos.batch,alt.windows7.general,alt.msdos.batch.nt,alt.comp.os.windows-10 on Sat Jul 11 23:44:11 2026
    From Newsgroup: alt.windows7.general

    On 11/07/2026 1:32 am, J. P. Gilliver wrote:
    On 2026/7/10 13:37:20, Daniel70 wrote:
    On 7/07/2026 11:22 am, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    []
    But, now-a-days, in a multi-sexual situation, even the use of the
    terms 'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in
    a Job Application situation I heard about today, the term 'Mx' has
    been used in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P-a I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?
    Oh, come on, Sailfish, they would, sort of, indicate the sexual/marriage
    status of the persons involved, surely.

    There are few situations where a title is used, in which either status
    is actually relevant.

    I think Mrs. - usually pronounced (and sometimes spelt, though usually humorously if so) Missus - was originally "mistress". A term of respect
    by a servant maybe? I'm less sure about Mr. - Mister - as "Master" was
    used to refer to the son of the head of household, especially when a
    child, with Mister for the adult. (Though the son might still be "Young Master Richard" or whatever even when adult, if the father was still
    running the company/household/whatever.) I don't know where "Miss" comes from.

    And, on the female side, wasn't the eldest Girl in the Smith family
    referred to by 'Miss Smith' whilst the younger girls might have been
    "Miss Barbara Smith', 'Miss Catherine Smith', as appropriate??
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Paul@nospam@needed.invalid to alt.windows7.general,alt.comp.os.windows-10 on Sat Jul 11 12:26:41 2026
    From Newsgroup: alt.windows7.general

    On Sat, 7/11/2026 9:44 AM, Daniel70 wrote:
    On 11/07/2026 1:32 am, J. P. Gilliver wrote:
    On 2026/7/10 13:37:20, Daniel70 wrote:
    On 7/07/2026 11:22 am, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    []
    But, now-a-days, in a multi-sexual situation, even the use of the
    terms 'Mr' and 'Ms' could be considered 'Sexual' or some such, so, in >>>>> a Job Application situation I heard about today, the term 'Mx' has
    been used in place of 'Mr', 'Mrs' and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P-a I suppose, in a fashion, it had to happen!!

    Why not just Xx, Xy, Yy and "X?" ?
    Oh, come on, Sailfish, they would, sort of, indicate the sexual/marriage >>> status of the persons involved, surely.

    There are few situations where a title is used, in which either status
    is actually relevant.

    I think Mrs. - usually pronounced (and sometimes spelt, though usually
    humorously if so) Missus - was originally "mistress". A term of respect
    by a servant maybe? I'm less sure about Mr. - Mister - as "Master" was
    used to refer to the son of the head of household, especially when a
    child, with Mister for the adult. (Though the son might still be "Young
    Master Richard" or whatever even when adult, if the father was still
    running the company/household/whatever.) I don't know where "Miss" comes
    from.

    And, on the female side, wasn't the eldest Girl in the Smith family referred to by 'Miss Smith' whilst the younger girls might have been "Miss Barbara Smith',
    'Miss Catherine Smith', as appropriate??

    You remind me of Social Shirley in the newspaper.

    Shirley could properly name everyone at a Debutante Ball.
    "Attending was Ms.Crustacia Smith in the white dusting frock"
    "The three course meal was served on Costco silverware and fine china"

    That's the job of Shirley, is to let the air out of peoples tyres.

    Paul
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Daniel70@daniel47@nomail.afraid.org to alt.windows7.general,alt.comp.os.windows-10 on Sun Jul 12 19:29:24 2026
    From Newsgroup: alt.windows7.general

    On 12/07/2026 2:26 am, Paul wrote:
    On Sat, 7/11/2026 9:44 AM, Daniel70 wrote:
    On 11/07/2026 1:32 am, J. P. Gilliver wrote:
    On 2026/7/10 13:37:20, Daniel70 wrote:
    On 7/07/2026 11:22 am, Sailfish wrote:
    Daniel70 graced us with on 7/6/2026 3:14 AM:
    []
    But, now-a-days, in a multi-sexual situation, even the use
    of the terms 'Mr' and 'Ms' could be considered 'Sexual' or
    some such, so, in a Job Application situation I heard about
    today, the term 'Mx' has been used in place of 'Mr', 'Mrs'
    and 'Miss' or, even, 'Ms'!!

    'Mx'?? Really!! ;-P I suppose, in a fashion, it had to
    happen!!

    Why not just Xx, Xy, Yy and "X?" ? Oh, come on, Sailfish,
    they would, sort of, indicate the sexual/marriage
    status of the persons involved, surely.

    There are few situations where a title is used, in which either
    status is actually relevant.

    I think Mrs. - usually pronounced (and sometimes spelt, though
    usually humorously if so) Missus - was originally "mistress". A
    term of respect by a servant maybe? I'm less sure about Mr. -
    Mister - as "Master" was used to refer to the son of the head of
    household, especially when a child, with Mister for the adult.
    (Though the son might still be "Young Master Richard" or whatever
    even when adult, if the father was still running the
    company/household/whatever.) I don't know where "Miss" comes
    from.

    And, on the female side, wasn't the eldest Girl in the Smith family
    referred to by 'Miss Smith' whilst the younger girls might have
    been "Miss Barbara Smith', 'Miss Catherine Smith', as
    appropriate??

    You remind me of Social Shirley in the newspaper.

    Shirley could properly name everyone at a Debutante Ball. "Attending
    was Ms.Crustacia Smith in the white dusting frock" "The three course
    meal was served on Costco silverware and fine china"

    Hmm! I must have mislayed my invite!!Oh, No, Costco flog cheap stuff,
    don't they??

    That's the job of Shirley, is to let the air out of peoples tyres.
    --
    Daniel70
    --- Synchronet 3.22a-Linux NewsLink 1.2