Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Gene Heskett
On Tuesday 18 September 2018 15:59:52 MRAB wrote:

> On 2018-09-18 19:43, Gene Heskett wrote:
> > On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote:
> >> how I download and install api-ms-win-crt-runtime-|1-1-0.dll 
> >> when I am downloading by googling it is not installable file.
> >> --
> >> *Chandan Kumar Abhimanyu*
> >> *+91 9876852058*
> >> *Department of Management Studies,*
> >> *Indian Institute of Technology (ISM), Dhanbad, *
> >> *Jharkhand- 826004, India.*
> >
> > I'd delete it and go get it from a more reputable site preferably
> > the M$ site as its a freely distributall part for one of their C++
> > variations.
> >
> > Best fix instructions seems to be at:
> >
> >  >-runtime-l1-1-0dll-error-3676874/>
> >
> > So apparently the | is a legal filename component, to a windows box.
> > Windows never ceases to amaze me. 7 machines running here right now,
> > but not a single windows install.
>
> Either that, or it's a spelling mistake. Which do you think is more
> likely? :-)

I'm fresh out of quarters to flip on that.  The character, as it existed 
all over the net when I did the google thing, was an |, not a lowercase 
l, as you have it, exists 50+ times in the reading of google hits I did 
last night. So you'll have to ask M$ which it is.

-- 
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
Genes Web page 
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread eryk sun
On Tue, Sep 18, 2018 at 1:43 PM, Gene Heskett  wrote:
>
> 
>
> So apparently the | is a legal filename component, to a windows box.

"l1-1-0" starts with "l" (ordinal 0x6c, i.e. lower-case "L"), not "|"
(pipe, 0x7c).

Other than the OS path separator, \ (backslash, 0x5c), the set of
reserved characters is up to the file system. It's recommended to
reserve NUL (0x00), / (slash, 0x2f) and the 5 wildcard characters:
*?"<> (0x2a, 0x3f, 0x22, 0x3c, 0x3e). NTFS additionally reserves :
(colon, 0x3a) as the delimeter for stream names and types, | (pipe,
0x7c) for no good reason, and control characters (0x01 - 0x1F). In
contrast, if you're running Windows as a guest OS in a VirtualBox VM,
its VboxSF file system (for sharing folders with the host OS) actually
allows colon, pipe, and control characters in filenames.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread MRAB

On 2018-09-18 19:43, Gene Heskett wrote:

On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote:


how I download and install api-ms-win-crt-runtime-|1-1-0.dll  when
I am downloading by googling it is not installable file.
--
*Chandan Kumar Abhimanyu*
*+91 9876852058*
*Department of Management Studies,*
*Indian Institute of Technology (ISM), Dhanbad, *
*Jharkhand- 826004, India.*



I'd delete it and go get it from a more reputable site preferably the M$
site as its a freely distributall part for one of their C++ variations.

Best fix instructions seems to be at:



So apparently the | is a legal filename component, to a windows box.
Windows never ceases to amaze me. 7 machines running here right now, but
not a single windows install.

Either that, or it's a spelling mistake. Which do you think is more 
likely? :-)

--
https://mail.python.org/mailman/listinfo/python-list


Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Gene Heskett
On Tuesday 18 September 2018 12:45:38 Chandan Kumar Abhimanyu wrote:

> how I download and install api-ms-win-crt-runtime-|1-1-0.dll  when
> I am downloading by googling it is not installable file.
> --
> *Chandan Kumar Abhimanyu*
> *+91 9876852058*
> *Department of Management Studies,*
> *Indian Institute of Technology (ISM), Dhanbad, *
> *Jharkhand- 826004, India.*


I'd delete it and go get it from a more reputable site preferably the M$ 
site as its a freely distributall part for one of their C++ variations.

Best fix instructions seems to be at:



So apparently the | is a legal filename component, to a windows box. 
Windows never ceases to amaze me. 7 machines running here right now, but 
not a single windows install.

-- 
Cheers, Gene Heskett
--
"There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order."
-Ed Howdershelt (Author)
Genes Web page 
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread Mark Lawrence

On 18/09/18 17:45, Chandan Kumar Abhimanyu wrote:

how I download and install api-ms-win-crt-runtime-|1-1-0.dll  when I am
downloading by googling it is not installable file.



https://www.microsoft.com/en-us/download/details.aspx?id=49984

--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

--
https://mail.python.org/mailman/listinfo/python-list


Re: missing- api-ms-win-crt-runtime-|1-1-0.dll

2018-09-18 Thread eryk sun
On Tue, Sep 18, 2018 at 11:45 AM, Chandan Kumar Abhimanyu
 wrote:
> how I download and install api-ms-win-crt-runtime-|1-1-0.dll  when I am
> downloading by googling it is not installable file.

The Universal C Runtime (CRT) is an OS component for Windows Vista and
later. Make sure Windows Update is enabled and configured to install
optional updates. That said, Python's installer should have installed
the Universal CRT if it wasn't already installed. Maybe your system
just needs to be restarted.
-- 
https://mail.python.org/mailman/listinfo/python-list