Hi,
How to change the default folder options in PB5.0?

Best regards,
Jack Zhao

Re: How to change the default folder options in PB5.0 by Steve

Steve
Mon Jun 27 10:41:20 CDT 2005

What default folder options ?

--
Steve Maillet
EmbeddedFusion
www.EmbeddedFusion.com
smaillet at EmbeddedFusion dot com



Re: How to change the default folder options in PB5.0 by thomas

thomas
Mon Jun 27 14:54:06 CDT 2005

I had this same question. When I run my WINCE 5.0 image (on the emulator, I
haven't got it to run on my MX21 development board yet), all the files (.exe,
.jpg, .wmv, .lnk) I added to the run-time image are hidden when viewing the
My Device -> Windows folder. To see them I have to do a View -> Folder
Options and uncheck "Hide protected operating system files (recommended)".
These "default" folder options also include View -> Large Icons. All of this
should be configurable in the run-time image. How would I change the
"default" to be View -> Details for example? Or View -> Folder Options ->
NOT (unchecked) Hide file extensions?

I also have not yet been successful putting these files (like the shortcuts)
I included in the runtime image to appear initially on the "desktop" when the
image runs. I can manually do this once the image is running. Any tips to
start in a particular (default) configuration state?

--
Thomas Freese
Software Engineer
L3 Communications - Display Systems


"Steve Maillet (eMVP)" wrote:

> What default folder options ?
>
> --
> Steve Maillet
> EmbeddedFusion
> www.EmbeddedFusion.com
> smaillet at EmbeddedFusion dot com
>
>
>

Re: How to change the default folder options in PB5.0 by Bruce

Bruce
Mon Jun 27 16:00:29 CDT 2005

Generally the way is to use the remote registry tool to export the registry,
then make your changes and export the registry again. Diff the two files
and add the changes to your platform or project.reg files.

--
Bruce Eitman (eMVP)
Senior Engineer
beitman AT applieddata DOT net

Applied Data Systems
www.applieddata.net
An ISO 9001:2000 Registered Company
Microsoft WEP Gold-level Member


"Thomas Freese" <thomas.freese@L-3com.com> wrote in message
news:11156AEB-543D-42C4-8767-95E90AE2A31F@microsoft.com...
> I had this same question. When I run my WINCE 5.0 image (on the emulator,
I
> haven't got it to run on my MX21 development board yet), all the files
(.exe,
> .jpg, .wmv, .lnk) I added to the run-time image are hidden when viewing
the
> My Device -> Windows folder. To see them I have to do a View -> Folder
> Options and uncheck "Hide protected operating system files (recommended)".
> These "default" folder options also include View -> Large Icons. All of
this
> should be configurable in the run-time image. How would I change the
> "default" to be View -> Details for example? Or View -> Folder Options ->
> NOT (unchecked) Hide file extensions?
>
> I also have not yet been successful putting these files (like the
shortcuts)
> I included in the runtime image to appear initially on the "desktop" when
the
> image runs. I can manually do this once the image is running. Any tips
to
> start in a particular (default) configuration state?
>
> --
> Thomas Freese
> Software Engineer
> L3 Communications - Display Systems
>
>
> "Steve Maillet (eMVP)" wrote:
>
> > What default folder options ?
> >
> > --
> > Steve Maillet
> > EmbeddedFusion
> > www.EmbeddedFusion.com
> > smaillet at EmbeddedFusion dot com
> >
> >
> >



Re: How to change the default folder options in PB5.0 by thomas

thomas
Mon Jun 27 18:46:02 CDT 2005

Thanks, the idea sounds simple enough. However where is the "remote registry
tool"? I am not familar with this tool.

Is it the tool referred to in
http://msdn.microsoft.com/msdnmag/issues/01/06/PPC/default.aspx as "You can
access this registry through the Windows CE Remote Registry tool available
from the eMbedded Visual C++ IDE. "?

If so I can't get at that until I have built an SDK - without which the
eVC++ won't even come up, which while I have built and run a CE image, I
can't get the SDK to build and have addressed that on other threads on this
site.

--
Thomas Freese
Software Engineer
L3 Communications - Display Systems


"Bruce Eitman (eMVP)" wrote:

> Generally the way is to use the remote registry tool to export the registry,
> then make your changes and export the registry again. Diff the two files
> and add the changes to your platform or project.reg files.
>
> --
> Bruce Eitman (eMVP)
> Senior Engineer
> beitman AT applieddata DOT net
>
> Applied Data Systems
> www.applieddata.net
> An ISO 9001:2000 Registered Company
> Microsoft WEP Gold-level Member
>
>
> "Thomas Freese" <thomas.freese@L-3com.com> wrote in message
> news:11156AEB-543D-42C4-8767-95E90AE2A31F@microsoft.com...
> > I had this same question. When I run my WINCE 5.0 image (on the emulator,
> I
> > haven't got it to run on my MX21 development board yet), all the files
> (.exe,
> > .jpg, .wmv, .lnk) I added to the run-time image are hidden when viewing
> the
> > My Device -> Windows folder. To see them I have to do a View -> Folder
> > Options and uncheck "Hide protected operating system files (recommended)".
> > These "default" folder options also include View -> Large Icons. All of
> this
> > should be configurable in the run-time image. How would I change the
> > "default" to be View -> Details for example? Or View -> Folder Options ->
> > NOT (unchecked) Hide file extensions?
> >
> > I also have not yet been successful putting these files (like the
> shortcuts)
> > I included in the runtime image to appear initially on the "desktop" when
> the
> > image runs. I can manually do this once the image is running. Any tips
> to
> > start in a particular (default) configuration state?
> >
> > --
> > Thomas Freese
> > Software Engineer
> > L3 Communications - Display Systems
> >
> >
> > "Steve Maillet (eMVP)" wrote:
> >
> > > What default folder options ?
> > >
> > > --
> > > Steve Maillet
> > > EmbeddedFusion
> > > www.EmbeddedFusion.com
> > > smaillet at EmbeddedFusion dot com
> > >
> > >
> > >
>
>
>

Re: How to change the default folder options in PB5.0 by jackzhao

jackzhao
Mon Jun 27 22:03:33 CDT 2005

Thanks for your replay!
I use the tools/Remote Registry Editor from PB5.0 IDE, and exported the
registry as a file; then I changed just one folder option, and reexported
the registry as another file. But I found the first is 290KB size, and the
second is 401KB size; When I compared the two file throuth UltraEdit-32, and
found there's lots of difference between them, why?

Best regards,
Jack Zhao

"Bruce Eitman (eMVP)" <beitmannospam@NOSPAM_applieddata.NOSPAM_net> wrote in
message news:%23dHcBt1eFHA.3864@TK2MSFTNGP10.phx.gbl...
> Generally the way is to use the remote registry tool to export the
> registry,
> then make your changes and export the registry again. Diff the two files
> and add the changes to your platform or project.reg files.
>
> --
> Bruce Eitman (eMVP)
> Senior Engineer
> beitman AT applieddata DOT net
>
> Applied Data Systems
> www.applieddata.net
> An ISO 9001:2000 Registered Company
> Microsoft WEP Gold-level Member
>
>
> "Thomas Freese" <thomas.freese@L-3com.com> wrote in message
> news:11156AEB-543D-42C4-8767-95E90AE2A31F@microsoft.com...
>> I had this same question. When I run my WINCE 5.0 image (on the
>> emulator,
> I
>> haven't got it to run on my MX21 development board yet), all the files
> (.exe,
>> .jpg, .wmv, .lnk) I added to the run-time image are hidden when viewing
> the
>> My Device -> Windows folder. To see them I have to do a View -> Folder
>> Options and uncheck "Hide protected operating system files
>> (recommended)".
>> These "default" folder options also include View -> Large Icons. All of
> this
>> should be configurable in the run-time image. How would I change the
>> "default" to be View -> Details for example? Or View -> Folder
>> Options ->
>> NOT (unchecked) Hide file extensions?
>>
>> I also have not yet been successful putting these files (like the
> shortcuts)
>> I included in the runtime image to appear initially on the "desktop" when
> the
>> image runs. I can manually do this once the image is running. Any tips
> to
>> start in a particular (default) configuration state?
>>
>> --
>> Thomas Freese
>> Software Engineer
>> L3 Communications - Display Systems
>>
>>
>> "Steve Maillet (eMVP)" wrote:
>>
>> > What default folder options ?
>> >
>> > --
>> > Steve Maillet
>> > EmbeddedFusion
>> > www.EmbeddedFusion.com
>> > smaillet at EmbeddedFusion dot com
>> >
>> >
>> >
>
>



Re: How to change the default folder options in PB5.0 by Anthony

Anthony
Tue Jun 28 01:17:56 CDT 2005

The sort of the icon in explorer (CE 4.2) is initialized in a static global
variable, with a hard coded value. So when you boot, the sort will always be
the same. The sort is kept as long as you don't shut down your device, and
as long as you have the same instance of explorer, that is always the case.
But for instance, if you kill the explorer.exe process through PB and launch
a new one (in fact, this is done automatically when you shut it down), you
will have the defaults settings for icon sorts but not the one you have
modified.

So the only way to keep the sort would be customizing the public CESHELL
code


--
----------------------------------------------------------------
Anthony Pellerin
ADENEO (ADESET)
Windows Embedded Consultant
<apellerin AT adeneo DOT adetelgroup DOT com>
http://www.adeneo.adetelgroup.com
Tél : +33 (0)4.72.18.57.77
Fax : +33 (0)4.72.18.57.78
----------------------------------------------------------------


"jackzhao" <jackzhao@yeah.net> wrote in message
news:%238FtnpueFHA.3848@TK2MSFTNGP10.phx.gbl...
> Hi,
> How to change the default folder options in PB5.0?
>
> Best regards,
> Jack Zhao
>
>
>



Re: How to change the default folder options in PB5.0 by jackzhao

jackzhao
Tue Jun 28 02:53:35 CDT 2005

Select My Device/View/Options, then the Folder Options Dialog appeares.
In the Folder Options Dialog, there's Advanced Settings, including:
Do not show hidden files and folders
Hide protected operating system files (Recommended)
Hide file extensions

All these options are checked by default, can I set their default value when
making nk.bin?

"Steve Maillet (eMVP)" <nospam1@EntelechyConsulting.com> wrote in message
news:esO5u6yeFHA.2700@tk2msftngp13.phx.gbl...
> What default folder options ?
>
> --
> Steve Maillet
> EmbeddedFusion
> www.EmbeddedFusion.com
> smaillet at EmbeddedFusion dot com
>
>



Re: How to change the default folder options in PB5.0 by Bruce

Bruce
Tue Jun 28 09:10:43 CDT 2005

Have you looked in the **Tools** menu or in PB Help?

--
Bruce Eitman (eMVP)
Senior Engineer
beitman AT applieddata DOT net

Applied Data Systems
www.applieddata.net
An ISO 9001:2000 Registered Company
Microsoft WEP Gold-level Member


"Thomas Freese" <thomas.freese@L-3com.com> wrote in message
news:9FD9E631-3CD3-47DE-B23A-86EB90080811@microsoft.com...
> Thanks, the idea sounds simple enough. However where is the "remote
registry
> tool"? I am not familar with this tool.
>
> Is it the tool referred to in
> http://msdn.microsoft.com/msdnmag/issues/01/06/PPC/default.aspx as "You
can
> access this registry through the Windows CE Remote Registry tool available
> from the eMbedded Visual C++ IDE. "?
>
> If so I can't get at that until I have built an SDK - without which the
> eVC++ won't even come up, which while I have built and run a CE image, I
> can't get the SDK to build and have addressed that on other threads on
this
> site.
>
> --
> Thomas Freese
> Software Engineer
> L3 Communications - Display Systems
>
>
> "Bruce Eitman (eMVP)" wrote:
>
> > Generally the way is to use the remote registry tool to export the
registry,
> > then make your changes and export the registry again. Diff the two
files
> > and add the changes to your platform or project.reg files.
> >
> > --
> > Bruce Eitman (eMVP)
> > Senior Engineer
> > beitman AT applieddata DOT net
> >
> > Applied Data Systems
> > www.applieddata.net
> > An ISO 9001:2000 Registered Company
> > Microsoft WEP Gold-level Member
> >
> >
> > "Thomas Freese" <thomas.freese@L-3com.com> wrote in message
> > news:11156AEB-543D-42C4-8767-95E90AE2A31F@microsoft.com...
> > > I had this same question. When I run my WINCE 5.0 image (on the
emulator,
> > I
> > > haven't got it to run on my MX21 development board yet), all the files
> > (.exe,
> > > .jpg, .wmv, .lnk) I added to the run-time image are hidden when
viewing
> > the
> > > My Device -> Windows folder. To see them I have to do a View ->
Folder
> > > Options and uncheck "Hide protected operating system files
(recommended)".
> > > These "default" folder options also include View -> Large Icons. All
of
> > this
> > > should be configurable in the run-time image. How would I change the
> > > "default" to be View -> Details for example? Or View -> Folder
Options ->
> > > NOT (unchecked) Hide file extensions?
> > >
> > > I also have not yet been successful putting these files (like the
> > shortcuts)
> > > I included in the runtime image to appear initially on the "desktop"
when
> > the
> > > image runs. I can manually do this once the image is running. Any
tips
> > to
> > > start in a particular (default) configuration state?
> > >
> > > --
> > > Thomas Freese
> > > Software Engineer
> > > L3 Communications - Display Systems
> > >
> > >
> > > "Steve Maillet (eMVP)" wrote:
> > >
> > > > What default folder options ?
> > > >
> > > > --
> > > > Steve Maillet
> > > > EmbeddedFusion
> > > > www.EmbeddedFusion.com
> > > > smaillet at EmbeddedFusion dot com
> > > >
> > > >
> > > >
> >
> >
> >



Re: How to change the default folder options in PB5.0 by Bruce

Bruce
Tue Jun 28 09:11:32 CDT 2005

Try it again. I have never seen results like that.

--
Bruce Eitman (eMVP)
Senior Engineer
beitman AT applieddata DOT net

Applied Data Systems
www.applieddata.net
An ISO 9001:2000 Registered Company
Microsoft WEP Gold-level Member


"jackzhao" <jackzhao@yeah.net> wrote in message
news:e0SkG44eFHA.132@TK2MSFTNGP10.phx.gbl...
> Thanks for your replay!
> I use the tools/Remote Registry Editor from PB5.0 IDE, and exported the
> registry as a file; then I changed just one folder option, and reexported
> the registry as another file. But I found the first is 290KB size, and the
> second is 401KB size; When I compared the two file throuth UltraEdit-32,
and
> found there's lots of difference between them, why?
>
> Best regards,
> Jack Zhao
>
> "Bruce Eitman (eMVP)" <beitmannospam@NOSPAM_applieddata.NOSPAM_net> wrote
in
> message news:%23dHcBt1eFHA.3864@TK2MSFTNGP10.phx.gbl...
> > Generally the way is to use the remote registry tool to export the
> > registry,
> > then make your changes and export the registry again. Diff the two
files
> > and add the changes to your platform or project.reg files.
> >
> > --
> > Bruce Eitman (eMVP)
> > Senior Engineer
> > beitman AT applieddata DOT net
> >
> > Applied Data Systems
> > www.applieddata.net
> > An ISO 9001:2000 Registered Company
> > Microsoft WEP Gold-level Member
> >
> >
> > "Thomas Freese" <thomas.freese@L-3com.com> wrote in message
> > news:11156AEB-543D-42C4-8767-95E90AE2A31F@microsoft.com...
> >> I had this same question. When I run my WINCE 5.0 image (on the
> >> emulator,
> > I
> >> haven't got it to run on my MX21 development board yet), all the files
> > (.exe,
> >> .jpg, .wmv, .lnk) I added to the run-time image are hidden when viewing
> > the
> >> My Device -> Windows folder. To see them I have to do a View -> Folder
> >> Options and uncheck "Hide protected operating system files
> >> (recommended)".
> >> These "default" folder options also include View -> Large Icons. All
of
> > this
> >> should be configurable in the run-time image. How would I change the
> >> "default" to be View -> Details for example? Or View -> Folder
> >> Options ->
> >> NOT (unchecked) Hide file extensions?
> >>
> >> I also have not yet been successful putting these files (like the
> > shortcuts)
> >> I included in the runtime image to appear initially on the "desktop"
when
> > the
> >> image runs. I can manually do this once the image is running. Any
tips
> > to
> >> start in a particular (default) configuration state?
> >>
> >> --
> >> Thomas Freese
> >> Software Engineer
> >> L3 Communications - Display Systems
> >>
> >>
> >> "Steve Maillet (eMVP)" wrote:
> >>
> >> > What default folder options ?
> >> >
> >> > --
> >> > Steve Maillet
> >> > EmbeddedFusion
> >> > www.EmbeddedFusion.com
> >> > smaillet at EmbeddedFusion dot com
> >> >
> >> >
> >> >
> >
> >
>
>